diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7756ee9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,43 @@ +root = true + +[*] +charset = utf-8 + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.scm] +indent_style = space +indent_size = 2 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 + +[parser.c] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9d5c5d4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +* text=auto eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +CMakeLists.txt linguist-generated +Package.swift linguist-generated +go.mod linguist-generated diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..2973ec7 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,60 @@ +cmake_minimum_required(VERSION 3.13) + +project(tree-sitter-sway + VERSION "1.0.0" + DESCRIPTION "Sway grammar for tree-sitter" + HOMEPAGE_URL "https://github.com/fuellabs/tree-sitter-sway" + LANGUAGES C) + +option(BUILD_SHARED_LIBS "Build using shared libraries" ON) +option(TREE_SITTER_REUSE_ALLOCATOR "Reuse the library allocator" OFF) + +set(TREE_SITTER_ABI_VERSION 14 CACHE STRING "Tree-sitter ABI version") +if(NOT ${TREE_SITTER_ABI_VERSION} MATCHES "^[0-9]+$") + unset(TREE_SITTER_ABI_VERSION CACHE) + message(FATAL_ERROR "TREE_SITTER_ABI_VERSION must be an integer") +endif() + +find_program(TREE_SITTER_CLI tree-sitter DOC "Tree-sitter CLI") + +add_custom_command(OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" + DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/grammar.json" + COMMAND "${TREE_SITTER_CLI}" generate src/grammar.json + --abi=${TREE_SITTER_ABI_VERSION} + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMENT "Generating parser.c") + +add_library(tree-sitter-sway src/parser.c) +if(EXISTS src/scanner.c) + target_sources(tree-sitter-sway PRIVATE src/scanner.c) +endif() +target_include_directories(tree-sitter-sway PRIVATE src) + +target_compile_definitions(tree-sitter-sway PRIVATE + $<$:TREE_SITTER_REUSE_ALLOCATOR> + $<$:TREE_SITTER_DEBUG>) + +set_target_properties(tree-sitter-sway + PROPERTIES + C_STANDARD 11 + POSITION_INDEPENDENT_CODE ON + SOVERSION "${TREE_SITTER_ABI_VERSION}.${PROJECT_VERSION_MAJOR}" + DEFINE_SYMBOL "") + +configure_file(bindings/c/tree-sitter-sway.pc.in + "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-sway.pc" @ONLY) + +include(GNUInstallDirs) + +install(FILES bindings/c/tree-sitter-sway.h + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-sway.pc" + DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") +install(TARGETS tree-sitter-sway + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") + +add_custom_target(test "${TREE_SITTER_CLI}" test + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMENT "tree-sitter test") + +# vim:ft=cmake: diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..38c03eb --- /dev/null +++ b/Makefile @@ -0,0 +1,94 @@ +ifeq ($(OS),Windows_NT) +$(error Windows is not supported) +endif + +LANGUAGE_NAME := tree-sitter-sway +HOMEPAGE_URL := https://github.com/fuellabs/tree-sitter-sway +VERSION := 1.0.0 + +# repository +SRC_DIR := src + +TS ?= tree-sitter + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) + +# flags +ARFLAGS ?= rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# ABI versioning +SONAME_MAJOR = $(shell sed -n 's/\#define LANGUAGE_VERSION //p' $(PARSER)) +SONAME_MINOR = $(word 1,$(subst ., ,$(VERSION))) + +# OS-specific bits +ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) + LINKSHARED = -dynamiclib -Wl,-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) + SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED = -shared -Wl,-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@PROJECT_VERSION@|$(VERSION)|' \ + -e 's|@CMAKE_INSTALL_LIBDIR@|$(LIBDIR:$(PREFIX)/%=%)|' \ + -e 's|@CMAKE_INSTALL_INCLUDEDIR@|$(INCLUDEDIR:$(PREFIX)/%=%)|' \ + -e 's|@PROJECT_DESCRIPTION@|$(DESCRIPTION)|' \ + -e 's|@PROJECT_HOMEPAGE_URL@|$(HOMEPAGE_URL)|' \ + -e 's|@CMAKE_INSTALL_PREFIX@|$(PREFIX)|' $< > $@ + +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate $^ + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + +.PHONY: all install uninstall clean test diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..b65dbde --- /dev/null +++ b/Package.swift @@ -0,0 +1,37 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterSway", + products: [ + .library(name: "TreeSitterSway", targets: ["TreeSitterSway"]), + ], + dependencies: [ + .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + ], + targets: [ + .target( + name: "TreeSitterSway", + dependencies: [], + path: ".", + sources: [ + "src/parser.c", + // NOTE: if your language has an external scanner, add it here. + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")] + ), + .testTarget( + name: "TreeSitterSwayTests", + dependencies: [ + "SwiftTreeSitter", + "TreeSitterSway", + ], + path: "bindings/swift/TreeSitterSwayTests" + ) + ], + cLanguageStandard: .c11 +) diff --git a/bindings/c/tree-sitter-sway.h b/bindings/c/tree-sitter-sway.h new file mode 100644 index 0000000..3743c79 --- /dev/null +++ b/bindings/c/tree-sitter-sway.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_SWAY_H_ +#define TREE_SITTER_SWAY_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_sway(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_SWAY_H_ diff --git a/bindings/c/tree-sitter-sway.pc.in b/bindings/c/tree-sitter-sway.pc.in new file mode 100644 index 0000000..664d2ba --- /dev/null +++ b/bindings/c/tree-sitter-sway.pc.in @@ -0,0 +1,11 @@ +prefix=@CMAKE_INSTALL_PREFIX@ +libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ +includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ + +Name: tree-sitter-sway +Description: @PROJECT_DESCRIPTION@ +URL: @PROJECT_HOMEPAGE_URL@ +Version: @PROJECT_VERSION@ +Requires: @TS_REQUIRES@ +Libs: -L${libdir} -ltree-sitter-sway +Cflags: -I${includedir} diff --git a/bindings/go/binding.go b/bindings/go/binding.go new file mode 100644 index 0000000..78429d5 --- /dev/null +++ b/bindings/go/binding.go @@ -0,0 +1,13 @@ +package tree_sitter_sway + +// #cgo CFLAGS: -std=c11 -fPIC +// #include "../../src/parser.c" +// // NOTE: if your language has an external scanner, add it here. +import "C" + +import "unsafe" + +// Get the tree-sitter Language for this grammar. +func Language() unsafe.Pointer { + return unsafe.Pointer(C.tree_sitter_sway()) +} diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go new file mode 100644 index 0000000..6e38bed --- /dev/null +++ b/bindings/go/binding_test.go @@ -0,0 +1,15 @@ +package tree_sitter_sway_test + +import ( + "testing" + + tree_sitter "github.com/tree-sitter/go-tree-sitter" + tree_sitter_sway "github.com/fuellabs/tree-sitter-sway/bindings/go" +) + +func TestCanLoadGrammar(t *testing.T) { + language := tree_sitter.NewLanguage(tree_sitter_sway.Language()) + if language == nil { + t.Errorf("Error loading Sway grammar") + } +} 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/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 0000000..efe259e --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py new file mode 100644 index 0000000..be9941f --- /dev/null +++ b/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_sway + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.Language(tree_sitter_sway.language()) + except Exception: + self.fail("Error loading Sway grammar") diff --git a/bindings/python/tree_sitter_sway/__init__.py b/bindings/python/tree_sitter_sway/__init__.py new file mode 100644 index 0000000..5df8683 --- /dev/null +++ b/bindings/python/tree_sitter_sway/__init__.py @@ -0,0 +1,42 @@ +"""Sway grammar for tree-sitter""" + +from importlib.resources import files as _files + +from ._binding import language + + +def _get_query(name, file): + query = _files(f"{__package__}.queries") / file + globals()[name] = query.read_text() + return globals()[name] + + +def __getattr__(name): + # NOTE: uncomment these to include any queries that this grammar contains: + + # if name == "HIGHLIGHTS_QUERY": + # return _get_query("HIGHLIGHTS_QUERY", "highlights.scm") + # if name == "INJECTIONS_QUERY": + # return _get_query("INJECTIONS_QUERY", "injections.scm") + # if name == "LOCALS_QUERY": + # return _get_query("LOCALS_QUERY", "locals.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", + # "LOCALS_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_sway/__init__.pyi b/bindings/python/tree_sitter_sway/__init__.pyi new file mode 100644 index 0000000..abf6633 --- /dev/null +++ b/bindings/python/tree_sitter_sway/__init__.pyi @@ -0,0 +1,10 @@ +from typing import Final + +# NOTE: uncomment these to include any queries that this grammar contains: + +# HIGHLIGHTS_QUERY: Final[str] +# INJECTIONS_QUERY: Final[str] +# LOCALS_QUERY: Final[str] +# TAGS_QUERY: Final[str] + +def language() -> object: ... diff --git a/bindings/python/tree_sitter_sway/binding.c b/bindings/python/tree_sitter_sway/binding.c new file mode 100644 index 0000000..bfa213f --- /dev/null +++ b/bindings/python/tree_sitter_sway/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_sway(void); + +static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { + return PyCapsule_New(tree_sitter_sway(), "tree_sitter.Language", NULL); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_sway/py.typed b/bindings/python/tree_sitter_sway/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/bindings/swift/TreeSitterSway/sway.h b/bindings/swift/TreeSitterSway/sway.h new file mode 100644 index 0000000..3743c79 --- /dev/null +++ b/bindings/swift/TreeSitterSway/sway.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_SWAY_H_ +#define TREE_SITTER_SWAY_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_sway(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_SWAY_H_ diff --git a/bindings/swift/TreeSitterSwayTests/TreeSitterSwayTests.swift b/bindings/swift/TreeSitterSwayTests/TreeSitterSwayTests.swift new file mode 100644 index 0000000..cc22f6a --- /dev/null +++ b/bindings/swift/TreeSitterSwayTests/TreeSitterSwayTests.swift @@ -0,0 +1,12 @@ +import XCTest +import SwiftTreeSitter +import TreeSitterSway + +final class TreeSitterSwayTests: XCTestCase { + func testCanLoadGrammar() throws { + let parser = Parser() + let language = Language(language: tree_sitter_sway()) + XCTAssertNoThrow(try parser.setLanguage(language), + "Error loading Sway grammar") + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1c91fbf --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/fuellabs/tree-sitter-sway + +go 1.22 + +require github.com/tree-sitter/go-tree-sitter v0.23.1 diff --git a/grammar.js b/grammar.js index 60ce2e9..8378349 100644 --- a/grammar.js +++ b/grammar.js @@ -1331,7 +1331,7 @@ module.exports = grammar({ seq('\\', choice( /[^xu]/, /u[0-9a-fA-F]{4}/, - /u{[0-9a-fA-F]+}/, + /u\{[0-9a-fA-F]+\}/, /x[0-9a-fA-F]{2}/, )), /[^\\']/, @@ -1344,7 +1344,7 @@ module.exports = grammar({ choice( /[^xu]/, /u[0-9a-fA-F]{4}/, - /u{[0-9a-fA-F]+}/, + /u\{[0-9a-fA-F]+\}/, /x[0-9a-fA-F]{2}/, ), )), diff --git a/package.json b/package.json index 63cc43f..71c660c 100644 --- a/package.json +++ b/package.json @@ -27,14 +27,5 @@ "eslint": "^9.14.0", "eslint-config-treesitter": "^1.0.2", "tree-sitter-cli": "^0.24.4" - }, - "tree-sitter": [ - { - "scope": "source.sway", - "injection-regex": "sway", - "file-types": [ - "sw" - ] - } - ] + } } diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..858caea --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-sway" +description = "Sway grammar for tree-sitter" +version = "1.0.0" +keywords = ["incremental", "parsing", "tree-sitter", "sway"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [{ name = "Fuel Labs", email = "contact@fuel.sh" }] +requires-python = ">=3.9" +license.text = "Apache-2.0" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/fuellabs/tree-sitter-sway" + +[project.optional-dependencies] +core = ["tree-sitter~=0.22"] + +[tool.cibuildwheel] +build = "cp39-*" +build-frontend = "build" diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8044c4e --- /dev/null +++ b/setup.py @@ -0,0 +1,62 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_sway", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp39", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_sway": ["*.pyi", "py.typed"], + "tree_sitter_sway.queries": ["*.scm"], + }, + ext_package="tree_sitter_sway", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_sway/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=[ + "-std=c11", + "-fvisibility=hidden", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], + define_macros=[ + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/src/grammar.json b/src/grammar.json index 08404e3..9d6193c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "sway", "word": "identifier", "rules": { @@ -3601,6 +3602,10 @@ "type": "SYMBOL", "name": "_type_identifier" }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, { "type": "SYMBOL", "name": "scoped_type_identifier" @@ -7412,7 +7417,7 @@ }, { "type": "PATTERN", - "value": "u{[0-9a-fA-F]+}" + "value": "u\\{[0-9a-fA-F]+\\}" }, { "type": "PATTERN", @@ -7462,7 +7467,7 @@ }, { "type": "PATTERN", - "value": "u{[0-9a-fA-F]+}" + "value": "u\\{[0-9a-fA-F]+\\}" }, { "type": "PATTERN", @@ -7692,4 +7697,3 @@ "_pattern" ] } - diff --git a/src/node-types.json b/src/node-types.json index 16236b1..b7932b1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1925,11 +1925,6 @@ ] } }, - { - "type": "fragment_specifier", - "named": true, - "fields": {} - }, { "type": "function_item", "named": true, @@ -2173,6 +2168,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "identifier", + "named": true + }, { "type": "scoped_identifier", "named": true @@ -3296,6 +3295,7 @@ { "type": "source_file", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -3541,32 +3541,6 @@ ] } }, - { - "type": "token_binding_pattern", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "metavariable", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "fragment_specifier", - "named": true - } - ] - } - } - }, { "type": "token_tree", "named": true, @@ -3583,10 +3557,6 @@ "type": "identifier", "named": true }, - { - "type": "metavariable", - "named": true - }, { "type": "mutable_specifier", "named": true @@ -4508,10 +4478,6 @@ "type": "b256", "named": false }, - { - "type": "block", - "named": false - }, { "type": "block_comment", "named": true @@ -4568,10 +4534,6 @@ "type": "escape_sequence", "named": true }, - { - "type": "expr", - "named": false - }, { "type": "f32", "named": false @@ -4624,10 +4586,6 @@ "type": "i8", "named": false }, - { - "type": "ident", - "named": false - }, { "type": "if", "named": false @@ -4648,10 +4606,6 @@ "type": "isize", "named": false }, - { - "type": "item", - "named": false - }, { "type": "let", "named": false @@ -4664,18 +4618,10 @@ "type": "line_comment", "named": true }, - { - "type": "literal", - "named": false - }, { "type": "match", "named": false }, - { - "type": "meta", - "named": false - }, { "type": "metavariable", "named": true @@ -4692,14 +4638,6 @@ "type": "mutable_specifier", "named": true }, - { - "type": "pat", - "named": false - }, - { - "type": "path", - "named": false - }, { "type": "predicate", "named": false @@ -4732,10 +4670,6 @@ "type": "shorthand_field_identifier", "named": true }, - { - "type": "stmt", - "named": false - }, { "type": "storage", "named": false @@ -4756,14 +4690,6 @@ "type": "true", "named": false }, - { - "type": "tt", - "named": false - }, - { - "type": "ty", - "named": false - }, { "type": "type", "named": false @@ -4804,10 +4730,6 @@ "type": "usize", "named": false }, - { - "type": "vis", - "named": false - }, { "type": "where", "named": false diff --git a/src/parser.c b/src/parser.c index f1fcb91..bf21547 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,22 +1,21 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2198 +#define STATE_COUNT 2202 #define LARGE_STATE_COUNT 490 -#define SYMBOL_COUNT 313 +#define SYMBOL_COUNT 301 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 139 +#define TOKEN_COUNT 127 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 204 +#define PRODUCTION_ID_COUNT 205 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, anon_sym_SEMI = 2, anon_sym_u8 = 3, @@ -45,295 +44,283 @@ enum { anon_sym_script = 26, anon_sym_predicate = 27, anon_sym_library = 28, - anon_sym_ = 29, - anon_sym_COLON = 30, - anon_sym_block = 31, - anon_sym_expr = 32, - anon_sym_ident = 33, - anon_sym_item = 34, - anon_sym_literal = 35, - anon_sym_meta = 36, - anon_sym_pat = 37, - anon_sym_path = 38, - anon_sym_stmt = 39, - anon_sym_tt = 40, - anon_sym_ty = 41, - anon_sym_vis = 42, - anon_sym_LPAREN = 43, - anon_sym_RPAREN = 44, - anon_sym_LBRACE = 45, - anon_sym_RBRACE = 46, - aux_sym__non_special_token_token1 = 47, - anon_sym_SQUOTE = 48, - anon_sym_abi = 49, - anon_sym_as = 50, - anon_sym_break = 51, - anon_sym_configurable = 52, - anon_sym_const = 53, - anon_sym_continue = 54, - anon_sym_default = 55, - anon_sym_mod = 56, - anon_sym_enum = 57, - anon_sym_fn = 58, - anon_sym_for = 59, - anon_sym_if = 60, - anon_sym_impl = 61, - anon_sym_let = 62, - anon_sym_match = 63, - anon_sym_pub = 64, - anon_sym_return = 65, - anon_sym_storage = 66, - anon_sym_struct = 67, - anon_sym_trait = 68, - anon_sym_type = 69, - anon_sym_use = 70, - anon_sym_where = 71, - anon_sym_while = 72, - anon_sym_POUND = 73, - anon_sym_COMMA = 74, - anon_sym_BANG = 75, - anon_sym_EQ = 76, - anon_sym_asm = 77, - anon_sym_DASH_GT = 78, - anon_sym_PLUS = 79, - anon_sym_QMARK = 80, - anon_sym_LT = 81, - anon_sym_GT = 82, - anon_sym_else = 83, - anon_sym_COLON_COLON = 84, - anon_sym_STAR = 85, - anon_sym__ = 86, - anon_sym_AMP = 87, - anon_sym_ref = 88, - anon_sym_DOT_DOT_DOT = 89, - anon_sym_in = 90, - anon_sym_LT2 = 91, - sym_mutable_specifier = 92, - anon_sym_DOLLAR = 93, - anon_sym_DOT_DOT = 94, - anon_sym_DOT_DOT_EQ = 95, - anon_sym_DASH = 96, - anon_sym_AMP_AMP = 97, - anon_sym_PIPE_PIPE = 98, - anon_sym_PIPE = 99, - anon_sym_CARET = 100, - anon_sym_EQ_EQ = 101, - anon_sym_BANG_EQ = 102, - anon_sym_LT_EQ = 103, - anon_sym_GT_EQ = 104, - anon_sym_LT_LT = 105, - anon_sym_GT_GT = 106, - anon_sym_SLASH = 107, - anon_sym_PERCENT = 108, - anon_sym_PLUS_EQ = 109, - anon_sym_DASH_EQ = 110, - anon_sym_STAR_EQ = 111, - anon_sym_SLASH_EQ = 112, - anon_sym_PERCENT_EQ = 113, - anon_sym_AMP_EQ = 114, - anon_sym_PIPE_EQ = 115, - anon_sym_CARET_EQ = 116, - anon_sym_LT_LT_EQ = 117, - anon_sym_GT_GT_EQ = 118, - anon_sym_yield = 119, - anon_sym_EQ_GT = 120, - anon_sym_move = 121, - anon_sym_DOT = 122, - anon_sym_deref = 123, - anon_sym_AT = 124, - sym_integer_literal = 125, - aux_sym_string_literal_token1 = 126, - anon_sym_DQUOTE = 127, - sym_char_literal = 128, - sym_escape_sequence = 129, - anon_sym_true = 130, - anon_sym_false = 131, - sym_line_comment = 132, - sym_self = 133, - sym_metavariable = 134, - sym__string_content = 135, - sym_raw_string_literal = 136, - sym_float_literal = 137, - sym_block_comment = 138, - sym_source_file = 139, - sym__statement = 140, - sym_empty_statement = 141, - sym_primitive_type = 142, - sym_program_type = 143, - sym_expression_statement = 144, - sym_attribute_item = 145, - sym_inner_attribute_item = 146, - sym_attribute = 147, - sym_mod_item = 148, - sym_declaration_list = 149, - sym_struct_item = 150, - sym_enum_item = 151, - sym_enum_variant_list = 152, - sym_enum_variant = 153, - sym_configurable_item = 154, - sym_storage_item = 155, - sym_storage_content_list = 156, - sym_storage_content = 157, - sym_field_declaration_list = 158, - sym_field_declaration = 159, - sym_ordered_field_declaration_list = 160, - sym_const_item = 161, - sym_asm_item = 162, - sym_type_item = 163, - sym_function_item = 164, - sym_function_signature_item = 165, - sym_function_modifiers = 166, - sym_where_clause = 167, - sym_where_predicate = 168, - sym_impl_item = 169, - sym_abi_item = 170, - sym_trait_item = 171, - sym_trait_bounds = 172, - sym_higher_ranked_trait_bound = 173, - sym_removed_trait_bound = 174, - sym_type_parameters = 175, - sym_const_parameter = 176, - sym_constrained_type_parameter = 177, - sym_optional_type_parameter = 178, - sym_let_declaration = 179, - sym_use_declaration = 180, - sym__use_clause = 181, - sym_scoped_use_list = 182, - sym_use_list = 183, - sym_use_as_clause = 184, - sym_use_wildcard = 185, - sym_parameters = 186, - sym_self_parameter = 187, - sym_variadic_parameter = 188, - sym_parameter = 189, - sym_asm_parameters = 190, - sym_asm_parameter = 191, - sym_visibility_modifier = 192, - sym__type = 193, - sym_bracketed_type = 194, - sym_qualified_type = 195, - sym_array_type = 196, - sym_function_type = 197, - sym_tuple_type = 198, - sym_unit_type = 199, - sym_generic_function = 200, - sym_generic_type = 201, - sym_generic_type_with_turbofish = 202, - sym_bounded_type = 203, - sym_type_arguments = 204, - sym_type_binding = 205, - sym_reference_type = 206, - sym_pointer_type = 207, - sym_empty_type = 208, - sym_abstract_type = 209, - sym__expression_except_range = 210, - sym__expression = 211, - sym_delim_token_tree = 212, - sym__delim_tokens = 213, - sym__non_delim_token = 214, - sym_scoped_identifier = 215, - sym_scoped_type_identifier_in_expression_position = 216, - sym_scoped_type_identifier = 217, - sym_range_expression = 218, - sym_unary_expression = 219, - sym_try_expression = 220, - sym_reference_expression = 221, - sym_binary_expression = 222, - sym_assignment_expression = 223, - sym_compound_assignment_expr = 224, - sym_type_cast_expression = 225, - sym_return_expression = 226, - sym_yield_expression = 227, - sym_call_expression = 228, - sym_abi_call_expression = 229, - sym_abi_instance_expression = 230, - sym_arguments = 231, - sym_array_expression = 232, - sym_parenthesized_expression = 233, - sym_tuple_expression = 234, - sym_unit_expression = 235, - sym_struct_expression = 236, - sym_field_initializer_list = 237, - sym_shorthand_field_initializer = 238, - sym_field_initializer = 239, - sym_base_field_initializer = 240, - sym_if_expression = 241, - sym_let_condition = 242, - sym__let_chain = 243, - sym__condition = 244, - sym_else_clause = 245, - sym_match_expression = 246, - sym_match_block = 247, - sym_match_arm = 248, - sym_last_match_arm = 249, - sym_match_pattern = 250, - sym_while_expression = 251, - sym_for_expression = 252, - sym_const_block = 253, - sym_closure_expression = 254, - sym_closure_parameters = 255, - sym_loop_label = 256, - sym_break_expression = 257, - sym_continue_expression = 258, - sym_index_expression = 259, - sym_field_expression = 260, - sym_block = 261, - sym_asm_block = 262, - sym_asm_content = 263, - sym__pattern = 264, - sym_tuple_pattern = 265, - sym_slice_pattern = 266, - sym_tuple_struct_pattern = 267, - sym_struct_pattern = 268, - sym_field_pattern = 269, - sym_remaining_field_pattern = 270, - sym_mut_pattern = 271, - sym_range_pattern = 272, - sym_ref_pattern = 273, - sym_deref_pattern = 274, - sym_captured_pattern = 275, - sym_reference_pattern = 276, - sym_or_pattern = 277, - sym__literal = 278, - sym__literal_pattern = 279, - sym_negative_literal = 280, - sym_string_literal = 281, - sym_boolean_literal = 282, - sym_storage = 283, - aux_sym_source_file_repeat1 = 284, - aux_sym_attribute_item_repeat1 = 285, - aux_sym_declaration_list_repeat1 = 286, - aux_sym_enum_variant_list_repeat1 = 287, - aux_sym_enum_variant_list_repeat2 = 288, - aux_sym_storage_content_list_repeat1 = 289, - aux_sym_field_declaration_list_repeat1 = 290, - aux_sym_ordered_field_declaration_list_repeat1 = 291, - aux_sym_function_modifiers_repeat1 = 292, - aux_sym_where_clause_repeat1 = 293, - aux_sym_trait_bounds_repeat1 = 294, - aux_sym_type_parameters_repeat1 = 295, - aux_sym_use_list_repeat1 = 296, - aux_sym_parameters_repeat1 = 297, - aux_sym_asm_parameters_repeat1 = 298, - aux_sym_tuple_type_repeat1 = 299, - aux_sym_type_arguments_repeat1 = 300, - aux_sym_delim_token_tree_repeat1 = 301, - aux_sym_arguments_repeat1 = 302, - aux_sym_array_expression_repeat1 = 303, - aux_sym_tuple_expression_repeat1 = 304, - aux_sym_field_initializer_list_repeat1 = 305, - aux_sym_match_block_repeat1 = 306, - aux_sym_closure_parameters_repeat1 = 307, - aux_sym_asm_block_repeat1 = 308, - aux_sym_asm_content_repeat1 = 309, - aux_sym_tuple_pattern_repeat1 = 310, - aux_sym_struct_pattern_repeat1 = 311, - aux_sym_string_literal_repeat1 = 312, - alias_sym_asm_expression = 313, - alias_sym_field_identifier = 314, - alias_sym_let_chain = 315, - alias_sym_shorthand_field_identifier = 316, - alias_sym_type_identifier = 317, + anon_sym_SPACE = 29, + aux_sym__non_special_token_token1 = 30, + anon_sym_SQUOTE = 31, + anon_sym_abi = 32, + anon_sym_as = 33, + anon_sym_break = 34, + anon_sym_configurable = 35, + anon_sym_const = 36, + anon_sym_continue = 37, + anon_sym_default = 38, + anon_sym_mod = 39, + anon_sym_enum = 40, + anon_sym_fn = 41, + anon_sym_for = 42, + anon_sym_if = 43, + anon_sym_impl = 44, + anon_sym_let = 45, + anon_sym_match = 46, + anon_sym_pub = 47, + anon_sym_return = 48, + anon_sym_storage = 49, + anon_sym_struct = 50, + anon_sym_trait = 51, + anon_sym_type = 52, + anon_sym_use = 53, + anon_sym_where = 54, + anon_sym_while = 55, + anon_sym_POUND = 56, + anon_sym_COMMA = 57, + anon_sym_BANG = 58, + anon_sym_EQ = 59, + anon_sym_LBRACE = 60, + anon_sym_RBRACE = 61, + anon_sym_COLON = 62, + anon_sym_LPAREN = 63, + anon_sym_RPAREN = 64, + anon_sym_asm = 65, + anon_sym_DASH_GT = 66, + anon_sym_PLUS = 67, + anon_sym_QMARK = 68, + anon_sym_LT = 69, + anon_sym_GT = 70, + anon_sym_else = 71, + anon_sym_COLON_COLON = 72, + anon_sym_STAR = 73, + anon_sym__ = 74, + anon_sym_AMP = 75, + anon_sym_ref = 76, + anon_sym_DOT_DOT_DOT = 77, + anon_sym_in = 78, + anon_sym_LT2 = 79, + sym_mutable_specifier = 80, + anon_sym_DOLLAR = 81, + anon_sym_DOT_DOT = 82, + anon_sym_DOT_DOT_EQ = 83, + anon_sym_DASH = 84, + anon_sym_AMP_AMP = 85, + anon_sym_PIPE_PIPE = 86, + anon_sym_PIPE = 87, + anon_sym_CARET = 88, + anon_sym_EQ_EQ = 89, + anon_sym_BANG_EQ = 90, + anon_sym_LT_EQ = 91, + anon_sym_GT_EQ = 92, + anon_sym_LT_LT = 93, + anon_sym_GT_GT = 94, + anon_sym_SLASH = 95, + anon_sym_PERCENT = 96, + anon_sym_PLUS_EQ = 97, + anon_sym_DASH_EQ = 98, + anon_sym_STAR_EQ = 99, + anon_sym_SLASH_EQ = 100, + anon_sym_PERCENT_EQ = 101, + anon_sym_AMP_EQ = 102, + anon_sym_PIPE_EQ = 103, + anon_sym_CARET_EQ = 104, + anon_sym_LT_LT_EQ = 105, + anon_sym_GT_GT_EQ = 106, + anon_sym_yield = 107, + anon_sym_EQ_GT = 108, + anon_sym_move = 109, + anon_sym_DOT = 110, + anon_sym_deref = 111, + anon_sym_AT = 112, + sym_integer_literal = 113, + aux_sym_string_literal_token1 = 114, + anon_sym_DQUOTE = 115, + sym_char_literal = 116, + sym_escape_sequence = 117, + anon_sym_true = 118, + anon_sym_false = 119, + sym_line_comment = 120, + sym_self = 121, + sym_metavariable = 122, + sym__string_content = 123, + sym_raw_string_literal = 124, + sym_float_literal = 125, + sym_block_comment = 126, + sym_source_file = 127, + sym__statement = 128, + sym_empty_statement = 129, + sym_primitive_type = 130, + sym_program_type = 131, + sym_expression_statement = 132, + sym_attribute_item = 133, + sym_inner_attribute_item = 134, + sym_attribute = 135, + sym_mod_item = 136, + sym_declaration_list = 137, + sym_struct_item = 138, + sym_enum_item = 139, + sym_enum_variant_list = 140, + sym_enum_variant = 141, + sym_configurable_item = 142, + sym_storage_item = 143, + sym_storage_content_list = 144, + sym_storage_content = 145, + sym_field_declaration_list = 146, + sym_field_declaration = 147, + sym_ordered_field_declaration_list = 148, + sym_const_item = 149, + sym_asm_item = 150, + sym_type_item = 151, + sym_function_item = 152, + sym_function_signature_item = 153, + sym_function_modifiers = 154, + sym_where_clause = 155, + sym_where_predicate = 156, + sym_impl_item = 157, + sym_abi_item = 158, + sym_trait_item = 159, + sym_trait_bounds = 160, + sym_higher_ranked_trait_bound = 161, + sym_removed_trait_bound = 162, + sym_type_parameters = 163, + sym_const_parameter = 164, + sym_constrained_type_parameter = 165, + sym_optional_type_parameter = 166, + sym_let_declaration = 167, + sym_use_declaration = 168, + sym__use_clause = 169, + sym_scoped_use_list = 170, + sym_use_list = 171, + sym_use_as_clause = 172, + sym_use_wildcard = 173, + sym_parameters = 174, + sym_self_parameter = 175, + sym_variadic_parameter = 176, + sym_parameter = 177, + sym_asm_parameters = 178, + sym_asm_parameter = 179, + sym_visibility_modifier = 180, + sym__type = 181, + sym_bracketed_type = 182, + sym_qualified_type = 183, + sym_array_type = 184, + sym_function_type = 185, + sym_tuple_type = 186, + sym_unit_type = 187, + sym_generic_function = 188, + sym_generic_type = 189, + sym_generic_type_with_turbofish = 190, + sym_bounded_type = 191, + sym_type_arguments = 192, + sym_type_binding = 193, + sym_reference_type = 194, + sym_pointer_type = 195, + sym_empty_type = 196, + sym_abstract_type = 197, + sym__expression_except_range = 198, + sym__expression = 199, + sym_delim_token_tree = 200, + sym__delim_tokens = 201, + sym__non_delim_token = 202, + sym_scoped_identifier = 203, + sym_scoped_type_identifier_in_expression_position = 204, + sym_scoped_type_identifier = 205, + sym_range_expression = 206, + sym_unary_expression = 207, + sym_try_expression = 208, + sym_reference_expression = 209, + sym_binary_expression = 210, + sym_assignment_expression = 211, + sym_compound_assignment_expr = 212, + sym_type_cast_expression = 213, + sym_return_expression = 214, + sym_yield_expression = 215, + sym_call_expression = 216, + sym_abi_call_expression = 217, + sym_abi_instance_expression = 218, + sym_arguments = 219, + sym_array_expression = 220, + sym_parenthesized_expression = 221, + sym_tuple_expression = 222, + sym_unit_expression = 223, + sym_struct_expression = 224, + sym_field_initializer_list = 225, + sym_shorthand_field_initializer = 226, + sym_field_initializer = 227, + sym_base_field_initializer = 228, + sym_if_expression = 229, + sym_let_condition = 230, + sym__let_chain = 231, + sym__condition = 232, + sym_else_clause = 233, + sym_match_expression = 234, + sym_match_block = 235, + sym_match_arm = 236, + sym_last_match_arm = 237, + sym_match_pattern = 238, + sym_while_expression = 239, + sym_for_expression = 240, + sym_const_block = 241, + sym_closure_expression = 242, + sym_closure_parameters = 243, + sym_loop_label = 244, + sym_break_expression = 245, + sym_continue_expression = 246, + sym_index_expression = 247, + sym_field_expression = 248, + sym_block = 249, + sym_asm_block = 250, + sym_asm_content = 251, + sym__pattern = 252, + sym_tuple_pattern = 253, + sym_slice_pattern = 254, + sym_tuple_struct_pattern = 255, + sym_struct_pattern = 256, + sym_field_pattern = 257, + sym_remaining_field_pattern = 258, + sym_mut_pattern = 259, + sym_range_pattern = 260, + sym_ref_pattern = 261, + sym_deref_pattern = 262, + sym_captured_pattern = 263, + sym_reference_pattern = 264, + sym_or_pattern = 265, + sym__literal = 266, + sym__literal_pattern = 267, + sym_negative_literal = 268, + sym_string_literal = 269, + sym_boolean_literal = 270, + sym_storage = 271, + aux_sym_source_file_repeat1 = 272, + aux_sym_attribute_item_repeat1 = 273, + aux_sym_declaration_list_repeat1 = 274, + aux_sym_enum_variant_list_repeat1 = 275, + aux_sym_enum_variant_list_repeat2 = 276, + aux_sym_storage_content_list_repeat1 = 277, + aux_sym_field_declaration_list_repeat1 = 278, + aux_sym_ordered_field_declaration_list_repeat1 = 279, + aux_sym_function_modifiers_repeat1 = 280, + aux_sym_where_clause_repeat1 = 281, + aux_sym_trait_bounds_repeat1 = 282, + aux_sym_type_parameters_repeat1 = 283, + aux_sym_use_list_repeat1 = 284, + aux_sym_parameters_repeat1 = 285, + aux_sym_asm_parameters_repeat1 = 286, + aux_sym_tuple_type_repeat1 = 287, + aux_sym_type_arguments_repeat1 = 288, + aux_sym_delim_token_tree_repeat1 = 289, + aux_sym_arguments_repeat1 = 290, + aux_sym_array_expression_repeat1 = 291, + aux_sym_tuple_expression_repeat1 = 292, + aux_sym_field_initializer_list_repeat1 = 293, + aux_sym_match_block_repeat1 = 294, + aux_sym_closure_parameters_repeat1 = 295, + aux_sym_asm_block_repeat1 = 296, + aux_sym_asm_content_repeat1 = 297, + aux_sym_tuple_pattern_repeat1 = 298, + aux_sym_struct_pattern_repeat1 = 299, + aux_sym_string_literal_repeat1 = 300, + alias_sym_asm_expression = 301, + alias_sym_field_identifier = 302, + alias_sym_let_chain = 303, + alias_sym_shorthand_field_identifier = 304, + alias_sym_type_identifier = 305, }; static const char * const ts_symbol_names[] = { @@ -366,24 +353,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_script] = "script", [anon_sym_predicate] = "predicate", [anon_sym_library] = "library", - [anon_sym_] = " ", - [anon_sym_COLON] = ":", - [anon_sym_block] = "block", - [anon_sym_expr] = "expr", - [anon_sym_ident] = "ident", - [anon_sym_item] = "item", - [anon_sym_literal] = "literal", - [anon_sym_meta] = "meta", - [anon_sym_pat] = "pat", - [anon_sym_path] = "path", - [anon_sym_stmt] = "stmt", - [anon_sym_tt] = "tt", - [anon_sym_ty] = "ty", - [anon_sym_vis] = "vis", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", + [anon_sym_SPACE] = " ", [aux_sym__non_special_token_token1] = "_non_special_token_token1", [anon_sym_SQUOTE] = "'", [anon_sym_abi] = "abi", @@ -414,6 +384,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_COMMA] = ",", [anon_sym_BANG] = "!", [anon_sym_EQ] = "=", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_COLON] = ":", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", [anon_sym_asm] = "asm", [anon_sym_DASH_GT] = "->", [anon_sym_PLUS] = "+", @@ -687,24 +662,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_script] = anon_sym_script, [anon_sym_predicate] = anon_sym_predicate, [anon_sym_library] = anon_sym_library, - [anon_sym_] = anon_sym_, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_block] = anon_sym_block, - [anon_sym_expr] = anon_sym_expr, - [anon_sym_ident] = anon_sym_ident, - [anon_sym_item] = anon_sym_item, - [anon_sym_literal] = anon_sym_literal, - [anon_sym_meta] = anon_sym_meta, - [anon_sym_pat] = anon_sym_pat, - [anon_sym_path] = anon_sym_path, - [anon_sym_stmt] = anon_sym_stmt, - [anon_sym_tt] = anon_sym_tt, - [anon_sym_ty] = anon_sym_ty, - [anon_sym_vis] = anon_sym_vis, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_SPACE] = anon_sym_SPACE, [aux_sym__non_special_token_token1] = aux_sym__non_special_token_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_abi] = anon_sym_abi, @@ -735,6 +693,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_asm] = anon_sym_asm, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_PLUS] = anon_sym_PLUS, @@ -1095,75 +1058,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_block] = { - .visible = true, - .named = false, - }, - [anon_sym_expr] = { - .visible = true, - .named = false, - }, - [anon_sym_ident] = { - .visible = true, - .named = false, - }, - [anon_sym_item] = { - .visible = true, - .named = false, - }, - [anon_sym_literal] = { - .visible = true, - .named = false, - }, - [anon_sym_meta] = { - .visible = true, - .named = false, - }, - [anon_sym_pat] = { - .visible = true, - .named = false, - }, - [anon_sym_path] = { - .visible = true, - .named = false, - }, - [anon_sym_stmt] = { - .visible = true, - .named = false, - }, - [anon_sym_tt] = { - .visible = true, - .named = false, - }, - [anon_sym_ty] = { - .visible = true, - .named = false, - }, - [anon_sym_vis] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { + [anon_sym_SPACE] = { .visible = true, .named = false, }, @@ -1287,6 +1182,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_asm] = { .visible = true, .named = false, @@ -2258,7 +2173,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -2336,187 +2251,188 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [16] = {.index = 12, .length = 2}, [17] = {.index = 14, .length = 2}, [18] = {.index = 14, .length = 2}, - [19] = {.index = 16, .length = 2}, - [20] = {.index = 18, .length = 1}, - [21] = {.index = 19, .length = 1}, + [19] = {.index = 14, .length = 2}, + [20] = {.index = 16, .length = 2}, + [21] = {.index = 18, .length = 1}, [22] = {.index = 19, .length = 1}, - [23] = {.index = 20, .length = 1}, - [24] = {.index = 21, .length = 2}, - [25] = {.index = 23, .length = 2}, - [26] = {.index = 21, .length = 2}, - [27] = {.index = 25, .length = 1}, - [28] = {.index = 26, .length = 2}, - [29] = {.index = 28, .length = 1}, - [30] = {.index = 29, .length = 1}, - [31] = {.index = 30, .length = 2}, - [32] = {.index = 32, .length = 1}, - [33] = {.index = 33, .length = 2}, - [34] = {.index = 35, .length = 1}, - [35] = {.index = 12, .length = 2}, + [23] = {.index = 19, .length = 1}, + [24] = {.index = 20, .length = 1}, + [25] = {.index = 21, .length = 2}, + [26] = {.index = 23, .length = 2}, + [27] = {.index = 21, .length = 2}, + [28] = {.index = 25, .length = 1}, + [29] = {.index = 26, .length = 2}, + [30] = {.index = 28, .length = 1}, + [31] = {.index = 29, .length = 1}, + [32] = {.index = 30, .length = 2}, + [33] = {.index = 32, .length = 1}, + [34] = {.index = 33, .length = 2}, + [35] = {.index = 35, .length = 1}, [36] = {.index = 12, .length = 2}, - [37] = {.index = 36, .length = 2}, - [38] = {.index = 38, .length = 2}, - [39] = {.index = 12, .length = 2}, + [37] = {.index = 12, .length = 2}, + [38] = {.index = 36, .length = 2}, + [39] = {.index = 38, .length = 2}, [40] = {.index = 12, .length = 2}, - [41] = {.index = 40, .length = 2}, - [42] = {.index = 42, .length = 2}, - [43] = {.index = 44, .length = 3}, - [44] = {.index = 47, .length = 2}, + [41] = {.index = 12, .length = 2}, + [42] = {.index = 40, .length = 2}, + [43] = {.index = 42, .length = 2}, + [44] = {.index = 44, .length = 3}, [45] = {.index = 47, .length = 2}, - [46] = {.index = 38, .length = 2}, - [47] = {.index = 49, .length = 3}, - [48] = {.index = 52, .length = 1}, - [49] = {.index = 53, .length = 3}, - [50] = {.index = 56, .length = 1}, - [51] = {.index = 57, .length = 2}, - [52] = {.index = 59, .length = 3}, - [53] = {.index = 62, .length = 2}, - [54] = {.index = 64, .length = 3}, - [56] = {.index = 67, .length = 1}, + [46] = {.index = 47, .length = 2}, + [47] = {.index = 38, .length = 2}, + [48] = {.index = 49, .length = 3}, + [49] = {.index = 52, .length = 1}, + [50] = {.index = 53, .length = 3}, + [51] = {.index = 56, .length = 1}, + [52] = {.index = 57, .length = 2}, + [53] = {.index = 59, .length = 3}, + [54] = {.index = 62, .length = 2}, + [55] = {.index = 64, .length = 3}, [57] = {.index = 67, .length = 1}, [58] = {.index = 56, .length = 1}, - [60] = {.index = 68, .length = 3}, - [61] = {.index = 71, .length = 1}, - [63] = {.index = 72, .length = 2}, - [64] = {.index = 74, .length = 1}, - [65] = {.index = 75, .length = 1}, - [66] = {.index = 76, .length = 2}, - [67] = {.index = 78, .length = 3}, - [68] = {.index = 81, .length = 2}, - [69] = {.index = 83, .length = 1}, - [70] = {.index = 84, .length = 2}, - [71] = {.index = 86, .length = 2}, - [72] = {.index = 88, .length = 2}, - [73] = {.index = 86, .length = 2}, - [74] = {.index = 88, .length = 2}, - [75] = {.index = 0, .length = 1}, - [76] = {.index = 90, .length = 1}, - [77] = {.index = 91, .length = 2}, - [78] = {.index = 93, .length = 2}, - [79] = {.index = 95, .length = 2}, - [80] = {.index = 52, .length = 1}, - [81] = {.index = 97, .length = 1}, - [82] = {.index = 98, .length = 3}, - [83] = {.index = 101, .length = 1}, - [84] = {.index = 102, .length = 2}, - [85] = {.index = 104, .length = 2}, - [86] = {.index = 106, .length = 2}, - [87] = {.index = 72, .length = 2}, - [88] = {.index = 108, .length = 3}, - [89] = {.index = 111, .length = 3}, - [90] = {.index = 114, .length = 4}, - [91] = {.index = 118, .length = 3}, - [92] = {.index = 2, .length = 1}, - [93] = {.index = 121, .length = 3}, - [94] = {.index = 124, .length = 2}, - [95] = {.index = 126, .length = 2}, - [96] = {.index = 128, .length = 2}, + [59] = {.index = 67, .length = 1}, + [61] = {.index = 68, .length = 3}, + [62] = {.index = 71, .length = 1}, + [64] = {.index = 72, .length = 2}, + [65] = {.index = 74, .length = 1}, + [66] = {.index = 75, .length = 1}, + [67] = {.index = 76, .length = 2}, + [68] = {.index = 78, .length = 3}, + [69] = {.index = 81, .length = 2}, + [70] = {.index = 83, .length = 1}, + [71] = {.index = 84, .length = 2}, + [72] = {.index = 86, .length = 2}, + [73] = {.index = 88, .length = 2}, + [74] = {.index = 86, .length = 2}, + [75] = {.index = 88, .length = 2}, + [76] = {.index = 0, .length = 1}, + [77] = {.index = 90, .length = 1}, + [78] = {.index = 91, .length = 2}, + [79] = {.index = 93, .length = 2}, + [80] = {.index = 95, .length = 2}, + [81] = {.index = 52, .length = 1}, + [82] = {.index = 97, .length = 1}, + [83] = {.index = 98, .length = 3}, + [84] = {.index = 101, .length = 1}, + [85] = {.index = 102, .length = 2}, + [86] = {.index = 104, .length = 2}, + [87] = {.index = 106, .length = 2}, + [88] = {.index = 72, .length = 2}, + [89] = {.index = 108, .length = 3}, + [90] = {.index = 111, .length = 3}, + [91] = {.index = 114, .length = 4}, + [92] = {.index = 118, .length = 3}, + [93] = {.index = 2, .length = 1}, + [94] = {.index = 121, .length = 3}, + [95] = {.index = 124, .length = 2}, + [96] = {.index = 126, .length = 2}, [97] = {.index = 128, .length = 2}, - [98] = {.index = 130, .length = 2}, - [99] = {.index = 132, .length = 3}, - [100] = {.index = 135, .length = 3}, - [101] = {.index = 138, .length = 3}, - [102] = {.index = 130, .length = 2}, - [103] = {.index = 132, .length = 3}, - [104] = {.index = 135, .length = 3}, - [105] = {.index = 141, .length = 2}, - [106] = {.index = 143, .length = 2}, - [108] = {.index = 145, .length = 3}, - [109] = {.index = 148, .length = 4}, - [110] = {.index = 104, .length = 2}, - [111] = {.index = 35, .length = 1}, - [112] = {.index = 152, .length = 1}, - [113] = {.index = 153, .length = 2}, - [114] = {.index = 155, .length = 3}, - [115] = {.index = 158, .length = 2}, - [116] = {.index = 160, .length = 2}, - [117] = {.index = 162, .length = 3}, - [118] = {.index = 165, .length = 2}, - [119] = {.index = 167, .length = 3}, - [120] = {.index = 170, .length = 2}, - [121] = {.index = 172, .length = 3}, - [122] = {.index = 175, .length = 2}, - [123] = {.index = 177, .length = 1}, - [124] = {.index = 104, .length = 2}, - [125] = {.index = 178, .length = 1}, - [126] = {.index = 158, .length = 2}, - [127] = {.index = 179, .length = 4}, - [128] = {.index = 183, .length = 3}, - [129] = {.index = 186, .length = 4}, - [130] = {.index = 52, .length = 1}, - [131] = {.index = 190, .length = 2}, - [132] = {.index = 102, .length = 2}, - [133] = {.index = 192, .length = 2}, - [134] = {.index = 194, .length = 3}, - [135] = {.index = 197, .length = 2}, - [136] = {.index = 199, .length = 3}, - [137] = {.index = 202, .length = 4}, - [138] = {.index = 199, .length = 3}, - [139] = {.index = 202, .length = 4}, - [140] = {.index = 194, .length = 3}, - [141] = {.index = 206, .length = 2}, - [142] = {.index = 208, .length = 2}, - [143] = {.index = 210, .length = 2}, - [144] = {.index = 212, .length = 2}, - [145] = {.index = 214, .length = 1}, - [146] = {.index = 215, .length = 2}, - [147] = {.index = 217, .length = 2}, - [148] = {.index = 219, .length = 4}, - [149] = {.index = 223, .length = 3}, - [150] = {.index = 106, .length = 2}, - [151] = {.index = 226, .length = 3}, - [152] = {.index = 229, .length = 4}, - [153] = {.index = 233, .length = 3}, - [154] = {.index = 236, .length = 2}, - [155] = {.index = 238, .length = 2}, - [156] = {.index = 240, .length = 3}, - [157] = {.index = 243, .length = 3}, - [158] = {.index = 246, .length = 4}, - [159] = {.index = 236, .length = 2}, - [160] = {.index = 250, .length = 2}, - [161] = {.index = 252, .length = 3}, - [162] = {.index = 255, .length = 3}, - [163] = {.index = 258, .length = 4}, - [164] = {.index = 262, .length = 5}, - [165] = {.index = 267, .length = 4}, - [166] = {.index = 271, .length = 2}, - [167] = {.index = 273, .length = 3}, - [168] = {.index = 276, .length = 4}, + [98] = {.index = 128, .length = 2}, + [99] = {.index = 130, .length = 2}, + [100] = {.index = 132, .length = 3}, + [101] = {.index = 135, .length = 3}, + [102] = {.index = 138, .length = 3}, + [103] = {.index = 130, .length = 2}, + [104] = {.index = 132, .length = 3}, + [105] = {.index = 135, .length = 3}, + [106] = {.index = 141, .length = 2}, + [107] = {.index = 143, .length = 2}, + [109] = {.index = 145, .length = 3}, + [110] = {.index = 148, .length = 4}, + [111] = {.index = 106, .length = 2}, + [112] = {.index = 35, .length = 1}, + [113] = {.index = 152, .length = 1}, + [114] = {.index = 153, .length = 2}, + [115] = {.index = 155, .length = 3}, + [116] = {.index = 158, .length = 2}, + [117] = {.index = 160, .length = 2}, + [118] = {.index = 162, .length = 3}, + [119] = {.index = 165, .length = 2}, + [120] = {.index = 167, .length = 3}, + [121] = {.index = 170, .length = 2}, + [122] = {.index = 172, .length = 3}, + [123] = {.index = 175, .length = 2}, + [124] = {.index = 177, .length = 1}, + [125] = {.index = 106, .length = 2}, + [126] = {.index = 178, .length = 1}, + [127] = {.index = 158, .length = 2}, + [128] = {.index = 179, .length = 4}, + [129] = {.index = 183, .length = 3}, + [130] = {.index = 186, .length = 4}, + [131] = {.index = 102, .length = 2}, + [132] = {.index = 52, .length = 1}, + [133] = {.index = 190, .length = 2}, + [134] = {.index = 192, .length = 2}, + [135] = {.index = 194, .length = 3}, + [136] = {.index = 197, .length = 2}, + [137] = {.index = 199, .length = 3}, + [138] = {.index = 202, .length = 4}, + [139] = {.index = 199, .length = 3}, + [140] = {.index = 202, .length = 4}, + [141] = {.index = 194, .length = 3}, + [142] = {.index = 206, .length = 2}, + [143] = {.index = 208, .length = 2}, + [144] = {.index = 210, .length = 2}, + [145] = {.index = 212, .length = 2}, + [146] = {.index = 214, .length = 1}, + [147] = {.index = 215, .length = 2}, + [148] = {.index = 217, .length = 2}, + [149] = {.index = 219, .length = 4}, + [150] = {.index = 223, .length = 3}, + [151] = {.index = 104, .length = 2}, + [152] = {.index = 226, .length = 3}, + [153] = {.index = 229, .length = 4}, + [154] = {.index = 233, .length = 3}, + [155] = {.index = 236, .length = 2}, + [156] = {.index = 238, .length = 2}, + [157] = {.index = 240, .length = 3}, + [158] = {.index = 243, .length = 3}, + [159] = {.index = 246, .length = 4}, + [160] = {.index = 238, .length = 2}, + [161] = {.index = 250, .length = 2}, + [162] = {.index = 252, .length = 3}, + [163] = {.index = 255, .length = 3}, + [164] = {.index = 258, .length = 4}, + [165] = {.index = 262, .length = 5}, + [166] = {.index = 267, .length = 4}, + [167] = {.index = 271, .length = 3}, + [168] = {.index = 274, .length = 2}, [169] = {.index = 276, .length = 4}, - [170] = {.index = 280, .length = 3}, - [171] = {.index = 283, .length = 3}, - [172] = {.index = 286, .length = 3}, - [173] = {.index = 289, .length = 2}, - [174] = {.index = 291, .length = 1}, - [175] = {.index = 292, .length = 4}, - [176] = {.index = 296, .length = 3}, - [177] = {.index = 299, .length = 4}, - [178] = {.index = 303, .length = 4}, - [179] = {.index = 307, .length = 3}, - [180] = {.index = 310, .length = 3}, - [181] = {.index = 313, .length = 4}, - [182] = {.index = 317, .length = 3}, - [183] = {.index = 320, .length = 3}, - [184] = {.index = 323, .length = 5}, - [185] = {.index = 328, .length = 2}, - [186] = {.index = 330, .length = 3}, - [187] = {.index = 333, .length = 3}, - [188] = {.index = 336, .length = 3}, - [189] = {.index = 339, .length = 2}, - [190] = {.index = 341, .length = 4}, - [191] = {.index = 345, .length = 5}, - [192] = {.index = 350, .length = 4}, - [193] = {.index = 354, .length = 3}, - [194] = {.index = 357, .length = 4}, - [195] = {.index = 361, .length = 3}, - [196] = {.index = 364, .length = 4}, - [197] = {.index = 368, .length = 4}, - [198] = {.index = 372, .length = 5}, - [199] = {.index = 377, .length = 4}, - [200] = {.index = 381, .length = 5}, - [201] = {.index = 386, .length = 4}, - [202] = {.index = 390, .length = 4}, - [203] = {.index = 394, .length = 5}, + [170] = {.index = 276, .length = 4}, + [171] = {.index = 280, .length = 3}, + [172] = {.index = 283, .length = 3}, + [173] = {.index = 286, .length = 3}, + [174] = {.index = 289, .length = 2}, + [175] = {.index = 291, .length = 1}, + [176] = {.index = 292, .length = 4}, + [177] = {.index = 296, .length = 3}, + [178] = {.index = 299, .length = 4}, + [179] = {.index = 303, .length = 4}, + [180] = {.index = 307, .length = 3}, + [181] = {.index = 310, .length = 3}, + [182] = {.index = 313, .length = 4}, + [183] = {.index = 317, .length = 3}, + [184] = {.index = 320, .length = 3}, + [185] = {.index = 323, .length = 5}, + [186] = {.index = 328, .length = 2}, + [187] = {.index = 330, .length = 3}, + [188] = {.index = 333, .length = 3}, + [189] = {.index = 336, .length = 3}, + [190] = {.index = 339, .length = 2}, + [191] = {.index = 341, .length = 4}, + [192] = {.index = 345, .length = 5}, + [193] = {.index = 350, .length = 4}, + [194] = {.index = 354, .length = 3}, + [195] = {.index = 357, .length = 4}, + [196] = {.index = 361, .length = 3}, + [197] = {.index = 364, .length = 4}, + [198] = {.index = 368, .length = 4}, + [199] = {.index = 372, .length = 5}, + [200] = {.index = 377, .length = 4}, + [201] = {.index = 381, .length = 5}, + [202] = {.index = 386, .length = 4}, + [203] = {.index = 390, .length = 4}, + [204] = {.index = 394, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2685,10 +2601,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 2}, [104] = {field_name, 1}, - {field_type, 3}, + {field_value, 3}, [106] = {field_name, 1}, - {field_value, 3}, + {field_type, 3}, [108] = {field_body, 4}, {field_name, 1}, @@ -2827,10 +2743,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 1}, [206] = {field_pattern, 2}, - {field_type, 4}, + {field_value, 4}, [208] = {field_pattern, 2}, - {field_value, 4}, + {field_type, 4}, [210] = {field_alternative, 4}, {field_pattern, 2}, @@ -2869,10 +2785,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 3}, [236] = {field_name, 2}, - {field_type, 4}, + {field_value, 4}, [238] = {field_name, 2}, - {field_value, 4}, + {field_type, 4}, [240] = {field_body, 5}, {field_name, 2}, @@ -2914,29 +2830,29 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 2}, {field_return_type, 4}, [271] = - {field_name, 1}, - {field_pattern, 3}, - [273] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, + [274] = + {field_name, 1}, + {field_pattern, 3}, [276] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, [280] = + {field_alternative, 5}, {field_pattern, 1}, - {field_type, 3}, - {field_value, 5}, + {field_value, 3}, [283] = - {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, + {field_value, 5}, [286] = {field_alternative, 5}, {field_pattern, 1}, - {field_value, 3}, + {field_type, 3}, [289] = {field_type, 2}, {field_type, 3, .inherited = true}, @@ -2992,17 +2908,17 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_pattern, 4}, [330] = + {field_alternative, 6}, {field_pattern, 2}, - {field_type, 4}, - {field_value, 6}, + {field_value, 4}, [333] = - {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, + {field_value, 6}, [336] = {field_alternative, 6}, {field_pattern, 2}, - {field_value, 4}, + {field_type, 4}, [339] = {field_type, 3}, {field_type, 4, .inherited = true}, @@ -3111,40 +3027,43 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [17] = { + [0] = sym_identifier, + }, + [18] = { [0] = alias_sym_type_identifier, }, - [21] = { + [22] = { [1] = alias_sym_type_identifier, }, - [24] = { + [25] = { [0] = alias_sym_type_identifier, }, - [36] = { + [37] = { [2] = alias_sym_type_identifier, }, - [38] = { + [39] = { [0] = alias_sym_type_identifier, }, - [39] = { + [40] = { [0] = sym_generic_type, }, - [40] = { + [41] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [45] = { + [46] = { [2] = alias_sym_field_identifier, }, - [49] = { + [50] = { [1] = alias_sym_type_identifier, }, - [51] = { + [52] = { [1] = alias_sym_type_identifier, }, - [52] = { + [53] = { [1] = alias_sym_type_identifier, }, - [55] = { + [56] = { [0] = sym_identifier, [2] = sym_identifier, }, @@ -3154,59 +3073,56 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [58] = { [0] = alias_sym_shorthand_field_identifier, }, - [59] = { + [60] = { [2] = sym_identifier, }, - [62] = { + [63] = { [1] = alias_sym_type_identifier, }, - [63] = { + [64] = { [0] = alias_sym_type_identifier, }, - [70] = { + [71] = { [1] = alias_sym_type_identifier, }, - [71] = { + [72] = { [0] = sym_identifier, }, - [72] = { + [73] = { [0] = sym_identifier, }, - [75] = { + [76] = { [0] = sym_identifier, }, - [79] = { + [80] = { [2] = alias_sym_type_identifier, }, - [80] = { + [81] = { [2] = alias_sym_type_identifier, }, - [84] = { + [85] = { [0] = alias_sym_field_identifier, }, - [88] = { + [89] = { [1] = alias_sym_type_identifier, }, - [92] = { + [93] = { [1] = alias_sym_shorthand_field_identifier, }, - [96] = { + [97] = { [0] = alias_sym_type_identifier, }, - [98] = { - [1] = alias_sym_type_identifier, - }, [99] = { [1] = alias_sym_type_identifier, }, [100] = { - [0] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, - [107] = { - [3] = sym_identifier, + [101] = { + [0] = alias_sym_type_identifier, }, [108] = { - [1] = alias_sym_type_identifier, + [3] = sym_identifier, }, [109] = { [1] = alias_sym_type_identifier, @@ -3215,14 +3131,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_type_identifier, }, [111] = { + [1] = alias_sym_type_identifier, + }, + [112] = { [0] = sym_identifier, }, - [115] = { + [116] = { [0] = alias_sym_field_identifier, }, - [118] = { - [2] = alias_sym_type_identifier, - }, [119] = { [2] = alias_sym_type_identifier, }, @@ -3232,38 +3148,38 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [121] = { [2] = alias_sym_type_identifier, }, - [124] = { - [1] = alias_sym_field_identifier, + [122] = { + [2] = alias_sym_type_identifier, }, - [130] = { - [2] = alias_sym_shorthand_field_identifier, + [125] = { + [1] = alias_sym_field_identifier, }, [131] = { - [0] = alias_sym_field_identifier, + [0] = alias_sym_type_identifier, }, [132] = { - [0] = alias_sym_type_identifier, + [2] = alias_sym_shorthand_field_identifier, }, - [134] = { - [1] = alias_sym_type_identifier, + [133] = { + [0] = alias_sym_field_identifier, }, - [136] = { - [2] = alias_sym_type_identifier, + [135] = { + [1] = alias_sym_type_identifier, }, [137] = { [2] = alias_sym_type_identifier, }, - [148] = { - [1] = alias_sym_type_identifier, + [138] = { + [2] = alias_sym_type_identifier, }, [149] = { [1] = alias_sym_type_identifier, }, [150] = { - [1] = alias_sym_field_identifier, + [1] = alias_sym_type_identifier, }, - [156] = { - [2] = alias_sym_type_identifier, + [151] = { + [1] = alias_sym_field_identifier, }, [157] = { [2] = alias_sym_type_identifier, @@ -3274,22 +3190,25 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [159] = { [2] = alias_sym_type_identifier, }, - [166] = { - [1] = alias_sym_field_identifier, + [160] = { + [2] = alias_sym_type_identifier, }, [167] = { [0] = alias_sym_type_identifier, }, [168] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, - [178] = { + [169] = { [2] = alias_sym_type_identifier, }, [179] = { [2] = alias_sym_type_identifier, }, - [185] = { + [180] = { + [2] = alias_sym_type_identifier, + }, + [186] = { [2] = alias_sym_field_identifier, }, }; @@ -3316,32 +3235,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 2, [4] = 4, - [5] = 2, - [6] = 4, - [7] = 7, - [8] = 8, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 8, - [13] = 2, + [5] = 5, + [6] = 6, + [7] = 6, + [8] = 4, + [9] = 2, + [10] = 6, + [11] = 6, + [12] = 2, + [13] = 6, [14] = 2, [15] = 15, [16] = 16, [17] = 17, [18] = 18, - [19] = 17, - [20] = 20, + [19] = 19, + [20] = 16, [21] = 21, - [22] = 21, + [22] = 19, [23] = 15, - [24] = 21, - [25] = 18, - [26] = 21, - [27] = 20, + [24] = 18, + [25] = 21, + [26] = 17, + [27] = 16, [28] = 16, - [29] = 17, - [30] = 17, + [29] = 19, + [30] = 19, [31] = 31, [32] = 32, [33] = 32, @@ -3368,40 +3287,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [54] = 54, [55] = 55, [56] = 56, - [57] = 53, - [58] = 53, + [57] = 57, + [58] = 58, [59] = 59, [60] = 60, [61] = 61, [62] = 62, [63] = 63, - [64] = 63, + [64] = 64, [65] = 65, [66] = 66, [67] = 67, - [68] = 63, - [69] = 60, + [68] = 68, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, - [73] = 73, - [74] = 74, - [75] = 60, - [76] = 76, - [77] = 77, - [78] = 78, + [73] = 60, + [74] = 59, + [75] = 72, + [76] = 60, + [77] = 59, + [78] = 72, [79] = 79, [80] = 80, - [81] = 52, + [81] = 81, [82] = 82, - [83] = 83, + [83] = 63, [84] = 84, [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 87, [89] = 89, - [90] = 87, + [90] = 90, [91] = 85, [92] = 92, [93] = 93, @@ -3409,12 +3328,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 98, - [99] = 94, - [100] = 100, - [101] = 95, - [102] = 102, - [103] = 98, + [98] = 94, + [99] = 99, + [100] = 96, + [101] = 101, + [102] = 99, + [103] = 103, [104] = 104, [105] = 105, [106] = 106, @@ -3423,120 +3342,120 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 109, [110] = 110, [111] = 111, - [112] = 104, + [112] = 112, [113] = 113, [114] = 114, [115] = 115, [116] = 116, - [117] = 111, + [117] = 117, [118] = 118, - [119] = 116, - [120] = 106, - [121] = 114, - [122] = 122, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 119, [123] = 123, [124] = 124, [125] = 125, [126] = 126, - [127] = 125, - [128] = 118, + [127] = 127, + [128] = 128, [129] = 129, [130] = 130, [131] = 131, [132] = 132, [133] = 133, [134] = 134, - [135] = 126, - [136] = 129, - [137] = 105, - [138] = 122, - [139] = 139, - [140] = 116, - [141] = 141, + [135] = 107, + [136] = 116, + [137] = 137, + [138] = 138, + [139] = 114, + [140] = 140, + [141] = 129, [142] = 142, [143] = 143, - [144] = 144, - [145] = 130, + [144] = 124, + [145] = 129, [146] = 146, - [147] = 147, + [147] = 125, [148] = 148, [149] = 149, - [150] = 107, - [151] = 151, - [152] = 122, - [153] = 153, + [150] = 126, + [151] = 127, + [152] = 152, + [153] = 104, [154] = 154, - [155] = 153, - [156] = 149, - [157] = 108, - [158] = 116, - [159] = 142, - [160] = 160, - [161] = 149, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 105, - [166] = 110, - [167] = 133, - [168] = 160, - [169] = 113, - [170] = 170, - [171] = 124, - [172] = 148, + [155] = 128, + [156] = 129, + [157] = 130, + [158] = 115, + [159] = 138, + [160] = 146, + [161] = 131, + [162] = 132, + [163] = 117, + [164] = 118, + [165] = 142, + [166] = 149, + [167] = 152, + [168] = 105, + [169] = 109, + [170] = 111, + [171] = 130, + [172] = 172, [173] = 146, - [174] = 115, - [175] = 123, - [176] = 139, + [174] = 133, + [175] = 105, + [176] = 134, [177] = 177, [178] = 178, [179] = 179, [180] = 179, - [181] = 179, - [182] = 182, - [183] = 182, + [181] = 181, + [182] = 181, + [183] = 181, [184] = 184, [185] = 185, [186] = 186, - [187] = 186, - [188] = 184, - [189] = 185, + [187] = 184, + [188] = 185, + [189] = 186, [190] = 190, [191] = 191, [192] = 192, - [193] = 191, + [193] = 192, [194] = 194, [195] = 195, - [196] = 195, - [197] = 195, + [196] = 194, + [197] = 194, [198] = 198, [199] = 199, [200] = 200, [201] = 200, - [202] = 202, - [203] = 203, - [204] = 203, - [205] = 202, - [206] = 199, - [207] = 199, - [208] = 200, + [202] = 200, + [203] = 199, + [204] = 204, + [205] = 204, + [206] = 206, + [207] = 206, + [208] = 204, [209] = 42, - [210] = 43, - [211] = 48, - [212] = 47, - [213] = 77, - [214] = 56, - [215] = 59, - [216] = 71, - [217] = 50, - [218] = 78, - [219] = 67, - [220] = 220, - [221] = 74, - [222] = 54, - [223] = 62, - [224] = 224, - [225] = 76, + [210] = 46, + [211] = 44, + [212] = 49, + [213] = 54, + [214] = 67, + [215] = 215, + [216] = 56, + [217] = 217, + [218] = 58, + [219] = 69, + [220] = 79, + [221] = 50, + [222] = 68, + [223] = 52, + [224] = 64, + [225] = 66, [226] = 226, [227] = 227, [228] = 228, @@ -3592,7 +3511,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [278] = 278, [279] = 279, [280] = 280, - [281] = 229, + [281] = 281, [282] = 282, [283] = 283, [284] = 284, @@ -3655,7 +3574,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 229, + [344] = 344, [345] = 345, [346] = 346, [347] = 347, @@ -3666,39 +3585,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [352] = 352, [353] = 353, [354] = 354, - [355] = 48, + [355] = 355, [356] = 356, [357] = 357, - [358] = 43, + [358] = 358, [359] = 359, [360] = 360, [361] = 361, [362] = 362, - [363] = 47, + [363] = 363, [364] = 364, [365] = 365, [366] = 366, [367] = 367, [368] = 368, [369] = 369, - [370] = 370, + [370] = 44, [371] = 371, [372] = 372, - [373] = 373, - [374] = 374, + [373] = 49, + [374] = 46, [375] = 375, [376] = 376, [377] = 377, [378] = 378, [379] = 379, - [380] = 380, + [380] = 366, [381] = 381, [382] = 382, [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 387, + [387] = 366, [388] = 388, [389] = 389, [390] = 390, @@ -3730,21 +3649,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 417, + [419] = 419, [420] = 420, - [421] = 418, + [421] = 421, [422] = 422, - [423] = 423, - [424] = 420, - [425] = 425, - [426] = 426, + [423] = 418, + [424] = 424, + [425] = 419, + [426] = 417, [427] = 427, [428] = 428, [429] = 429, - [430] = 430, - [431] = 416, - [432] = 430, - [433] = 426, + [430] = 421, + [431] = 420, + [432] = 416, + [433] = 433, [434] = 434, [435] = 435, [436] = 436, @@ -3757,48 +3676,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [443] = 443, [444] = 444, [445] = 445, - [446] = 444, + [446] = 446, [447] = 447, [448] = 448, [449] = 449, [450] = 450, [451] = 451, [452] = 452, - [453] = 444, + [453] = 453, [454] = 454, [455] = 455, - [456] = 443, + [456] = 453, [457] = 457, - [458] = 458, - [459] = 459, + [458] = 446, + [459] = 449, [460] = 460, - [461] = 448, + [461] = 461, [462] = 462, [463] = 463, [464] = 464, - [465] = 451, - [466] = 466, - [467] = 458, - [468] = 451, + [465] = 464, + [466] = 447, + [467] = 464, + [468] = 447, [469] = 469, [470] = 470, [471] = 471, [472] = 470, [473] = 471, [474] = 474, - [475] = 474, + [475] = 475, [476] = 476, - [477] = 477, - [478] = 280, + [477] = 476, + [478] = 478, [479] = 479, - [480] = 480, - [481] = 481, + [480] = 385, + [481] = 406, [482] = 482, [483] = 483, - [484] = 336, - [485] = 485, + [484] = 484, + [485] = 355, [486] = 486, - [487] = 227, + [487] = 487, [488] = 488, [489] = 489, [490] = 490, @@ -3818,28 +3737,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [504] = 504, [505] = 505, [506] = 506, - [507] = 507, - [508] = 505, - [509] = 506, - [510] = 507, + [507] = 506, + [508] = 508, + [509] = 505, + [510] = 508, [511] = 511, [512] = 512, [513] = 513, [514] = 514, - [515] = 513, - [516] = 514, + [515] = 515, + [516] = 516, [517] = 512, - [518] = 518, - [519] = 518, - [520] = 520, - [521] = 513, - [522] = 522, - [523] = 520, + [518] = 512, + [519] = 516, + [520] = 512, + [521] = 521, + [522] = 514, + [523] = 521, [524] = 513, [525] = 525, [526] = 526, [527] = 527, - [528] = 527, + [528] = 528, [529] = 529, [530] = 530, [531] = 531, @@ -3849,93 +3768,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [535] = 535, [536] = 536, [537] = 537, - [538] = 525, - [539] = 539, - [540] = 540, + [538] = 538, + [539] = 532, + [540] = 528, [541] = 541, [542] = 542, [543] = 543, - [544] = 544, + [544] = 525, [545] = 545, [546] = 546, [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, + [548] = 545, + [549] = 534, + [550] = 541, + [551] = 537, [552] = 552, - [553] = 529, + [553] = 553, [554] = 554, - [555] = 554, - [556] = 551, - [557] = 530, - [558] = 558, - [559] = 541, + [555] = 555, + [556] = 537, + [557] = 538, + [558] = 542, + [559] = 543, [560] = 560, [561] = 561, - [562] = 562, + [562] = 534, [563] = 563, - [564] = 552, + [564] = 564, [565] = 565, [566] = 566, - [567] = 560, - [568] = 566, - [569] = 546, + [567] = 567, + [568] = 568, + [569] = 569, [570] = 570, - [571] = 540, - [572] = 560, - [573] = 566, - [574] = 574, - [575] = 575, - [576] = 531, + [571] = 537, + [572] = 538, + [573] = 546, + [574] = 538, + [575] = 546, + [576] = 576, [577] = 577, - [578] = 542, - [579] = 579, - [580] = 526, - [581] = 560, - [582] = 566, - [583] = 535, - [584] = 584, - [585] = 550, + [578] = 578, + [579] = 542, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 543, + [585] = 585, [586] = 586, [587] = 587, [588] = 588, [589] = 589, - [590] = 545, - [591] = 591, - [592] = 575, - [593] = 537, - [594] = 544, - [595] = 549, - [596] = 548, - [597] = 597, - [598] = 539, - [599] = 574, - [600] = 547, - [601] = 543, - [602] = 602, - [603] = 574, - [604] = 588, - [605] = 587, - [606] = 606, - [607] = 525, - [608] = 587, - [609] = 609, - [610] = 579, - [611] = 588, - [612] = 612, - [613] = 536, - [614] = 614, - [615] = 526, - [616] = 489, - [617] = 617, + [590] = 525, + [591] = 563, + [592] = 578, + [593] = 587, + [594] = 594, + [595] = 576, + [596] = 535, + [597] = 547, + [598] = 567, + [599] = 599, + [600] = 585, + [601] = 589, + [602] = 594, + [603] = 560, + [604] = 604, + [605] = 565, + [606] = 568, + [607] = 530, + [608] = 608, + [609] = 564, + [610] = 570, + [611] = 611, + [612] = 566, + [613] = 553, + [614] = 608, + [615] = 599, + [616] = 616, + [617] = 488, [618] = 618, - [619] = 485, - [620] = 480, - [621] = 227, - [622] = 280, - [623] = 336, - [624] = 624, + [619] = 489, + [620] = 484, + [621] = 385, + [622] = 406, + [623] = 623, + [624] = 355, [625] = 625, [626] = 626, [627] = 627, @@ -3958,7 +3877,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [644] = 644, [645] = 645, [646] = 646, - [647] = 42, + [647] = 647, [648] = 648, [649] = 649, [650] = 650, @@ -3968,84 +3887,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 42, [658] = 658, - [659] = 659, + [659] = 178, [660] = 660, [661] = 661, [662] = 662, [663] = 663, [664] = 664, [665] = 665, - [666] = 178, + [666] = 666, [667] = 667, - [668] = 62, - [669] = 70, - [670] = 483, + [668] = 668, + [669] = 669, + [670] = 670, [671] = 671, - [672] = 660, - [673] = 76, - [674] = 50, - [675] = 675, + [672] = 672, + [673] = 478, + [674] = 674, + [675] = 50, [676] = 676, - [677] = 677, + [677] = 636, [678] = 678, [679] = 679, [680] = 680, [681] = 681, - [682] = 59, - [683] = 683, + [682] = 53, + [683] = 54, [684] = 684, - [685] = 481, + [685] = 64, [686] = 686, - [687] = 48, - [688] = 660, - [689] = 66, - [690] = 72, + [687] = 44, + [688] = 483, + [689] = 689, + [690] = 66, [691] = 691, - [692] = 482, + [692] = 692, [693] = 693, [694] = 694, [695] = 695, - [696] = 78, + [696] = 696, [697] = 697, [698] = 698, [699] = 699, - [700] = 54, + [700] = 700, [701] = 701, [702] = 702, [703] = 703, [704] = 704, - [705] = 705, + [705] = 56, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 47, - [711] = 479, + [710] = 58, + [711] = 711, [712] = 712, - [713] = 71, + [713] = 713, [714] = 714, - [715] = 56, + [715] = 487, [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, [721] = 721, - [722] = 722, - [723] = 723, - [724] = 724, + [722] = 67, + [723] = 68, + [724] = 69, [725] = 725, - [726] = 726, - [727] = 727, + [726] = 49, + [727] = 71, [728] = 728, [729] = 729, [730] = 730, [731] = 731, [732] = 732, - [733] = 733, - [734] = 734, + [733] = 636, + [734] = 79, [735] = 735, [736] = 736, [737] = 737, @@ -4054,17 +3973,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [740] = 740, [741] = 741, [742] = 742, - [743] = 743, + [743] = 52, [744] = 744, - [745] = 745, - [746] = 67, + [745] = 46, + [746] = 57, [747] = 747, - [748] = 43, - [749] = 77, + [748] = 748, + [749] = 749, [750] = 750, - [751] = 74, - [752] = 752, - [753] = 753, + [751] = 751, + [752] = 486, + [753] = 633, [754] = 754, [755] = 755, [756] = 756, @@ -4091,441 +4010,441 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [777] = 777, [778] = 778, [779] = 779, - [780] = 780, + [780] = 633, [781] = 781, - [782] = 759, + [782] = 782, [783] = 783, - [784] = 781, - [785] = 776, - [786] = 777, - [787] = 777, - [788] = 778, - [789] = 789, - [790] = 781, - [791] = 776, - [792] = 778, - [793] = 629, + [784] = 784, + [785] = 785, + [786] = 784, + [787] = 778, + [788] = 779, + [789] = 783, + [790] = 632, + [791] = 778, + [792] = 783, + [793] = 793, [794] = 794, - [795] = 759, - [796] = 642, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 629, - [801] = 801, + [795] = 779, + [796] = 784, + [797] = 632, + [798] = 632, + [799] = 643, + [800] = 800, + [801] = 652, [802] = 802, - [803] = 665, + [803] = 803, [804] = 804, - [805] = 629, - [806] = 802, - [807] = 798, - [808] = 808, - [809] = 797, - [810] = 810, - [811] = 802, - [812] = 799, - [813] = 813, - [814] = 814, - [815] = 798, - [816] = 630, - [817] = 631, - [818] = 665, - [819] = 813, - [820] = 820, - [821] = 729, - [822] = 667, - [823] = 671, - [824] = 676, - [825] = 639, - [826] = 740, - [827] = 650, - [828] = 642, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 629, + [809] = 802, + [810] = 804, + [811] = 627, + [812] = 812, + [813] = 804, + [814] = 802, + [815] = 803, + [816] = 816, + [817] = 806, + [818] = 818, + [819] = 819, + [820] = 807, + [821] = 642, + [822] = 664, + [823] = 807, + [824] = 747, + [825] = 643, + [826] = 645, + [827] = 712, + [828] = 725, [829] = 829, - [830] = 813, - [831] = 831, - [832] = 832, - [833] = 655, - [834] = 834, - [835] = 769, - [836] = 476, - [837] = 799, + [830] = 830, + [831] = 749, + [832] = 662, + [833] = 833, + [834] = 652, + [835] = 835, + [836] = 836, + [837] = 837, [838] = 838, - [839] = 766, + [839] = 839, [840] = 840, - [841] = 841, - [842] = 770, - [843] = 772, + [841] = 840, + [842] = 839, + [843] = 843, [844] = 844, [845] = 845, - [846] = 764, - [847] = 771, - [848] = 848, + [846] = 846, + [847] = 847, + [848] = 775, [849] = 849, [850] = 850, - [851] = 753, - [852] = 755, - [853] = 775, - [854] = 854, + [851] = 838, + [852] = 843, + [853] = 853, + [854] = 846, [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 859, - [862] = 862, + [856] = 843, + [857] = 839, + [858] = 846, + [859] = 846, + [860] = 773, + [861] = 861, + [862] = 764, [863] = 863, - [864] = 864, - [865] = 855, + [864] = 847, + [865] = 865, [866] = 866, - [867] = 762, - [868] = 858, - [869] = 838, - [870] = 870, - [871] = 758, - [872] = 850, - [873] = 857, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 866, + [871] = 759, + [872] = 872, + [873] = 838, [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, + [875] = 771, + [876] = 837, + [877] = 760, [878] = 878, - [879] = 838, - [880] = 761, - [881] = 877, - [882] = 882, - [883] = 883, + [879] = 763, + [880] = 847, + [881] = 765, + [882] = 766, + [883] = 767, [884] = 884, - [885] = 850, - [886] = 760, - [887] = 765, - [888] = 838, - [889] = 889, - [890] = 756, - [891] = 850, - [892] = 757, - [893] = 862, - [894] = 894, + [885] = 768, + [886] = 886, + [887] = 770, + [888] = 846, + [889] = 774, + [890] = 761, + [891] = 843, + [892] = 843, + [893] = 769, + [894] = 872, [895] = 895, - [896] = 857, - [897] = 897, - [898] = 862, - [899] = 838, - [900] = 768, - [901] = 858, - [902] = 754, - [903] = 850, - [904] = 773, - [905] = 848, - [906] = 797, - [907] = 763, - [908] = 908, + [896] = 896, + [897] = 776, + [898] = 803, + [899] = 899, + [900] = 772, + [901] = 777, + [902] = 806, + [903] = 474, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 756, + [908] = 757, [909] = 909, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, + [915] = 914, [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 920, + [920] = 917, [921] = 921, - [922] = 922, - [923] = 911, - [924] = 922, - [925] = 919, - [926] = 926, - [927] = 927, - [928] = 908, + [922] = 914, + [923] = 909, + [924] = 910, + [925] = 925, + [926] = 921, + [927] = 916, + [928] = 919, [929] = 929, - [930] = 915, - [931] = 910, - [932] = 927, - [933] = 933, - [934] = 912, + [930] = 911, + [931] = 931, + [932] = 932, + [933] = 913, + [934] = 931, [935] = 935, - [936] = 929, - [937] = 922, - [938] = 909, - [939] = 933, - [940] = 227, - [941] = 336, - [942] = 942, - [943] = 280, - [944] = 944, + [936] = 936, + [937] = 937, + [938] = 912, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 385, + [943] = 355, + [944] = 406, [945] = 945, [946] = 946, - [947] = 946, - [948] = 944, - [949] = 949, + [947] = 947, + [948] = 947, + [949] = 945, [950] = 950, [951] = 951, [952] = 952, [953] = 953, - [954] = 953, - [955] = 953, - [956] = 953, - [957] = 953, - [958] = 958, - [959] = 958, + [954] = 954, + [955] = 954, + [956] = 954, + [957] = 954, + [958] = 954, + [959] = 959, [960] = 960, - [961] = 961, - [962] = 961, - [963] = 47, - [964] = 48, - [965] = 43, - [966] = 966, - [967] = 628, - [968] = 485, - [969] = 627, - [970] = 629, - [971] = 626, - [972] = 635, - [973] = 629, - [974] = 628, - [975] = 480, - [976] = 626, - [977] = 489, - [978] = 627, - [979] = 654, - [980] = 980, - [981] = 981, - [982] = 280, - [983] = 662, - [984] = 336, - [985] = 985, - [986] = 618, - [987] = 652, - [988] = 227, - [989] = 651, - [990] = 617, - [991] = 646, - [992] = 349, - [993] = 404, - [994] = 354, - [995] = 373, - [996] = 402, - [997] = 403, - [998] = 271, - [999] = 269, - [1000] = 265, - [1001] = 270, - [1002] = 369, - [1003] = 389, - [1004] = 339, - [1005] = 261, - [1006] = 340, - [1007] = 653, - [1008] = 259, - [1009] = 405, - [1010] = 352, - [1011] = 260, - [1012] = 262, - [1013] = 338, - [1014] = 337, - [1015] = 356, - [1016] = 392, - [1017] = 272, - [1018] = 235, - [1019] = 372, - [1020] = 332, - [1021] = 331, - [1022] = 362, - [1023] = 268, - [1024] = 326, - [1025] = 391, - [1026] = 645, - [1027] = 307, - [1028] = 399, - [1029] = 246, - [1030] = 329, - [1031] = 361, - [1032] = 390, - [1033] = 643, - [1034] = 388, - [1035] = 624, - [1036] = 258, - [1037] = 327, - [1038] = 385, - [1039] = 359, - [1040] = 636, - [1041] = 263, - [1042] = 383, - [1043] = 305, - [1044] = 325, - [1045] = 302, - [1046] = 267, - [1047] = 279, - [1048] = 290, - [1049] = 382, - [1050] = 243, - [1051] = 312, - [1052] = 375, - [1053] = 406, - [1054] = 380, - [1055] = 301, - [1056] = 379, - [1057] = 236, - [1058] = 384, - [1059] = 238, - [1060] = 407, - [1061] = 249, - [1062] = 275, - [1063] = 401, - [1064] = 274, - [1065] = 366, - [1066] = 300, - [1067] = 364, - [1068] = 360, - [1069] = 357, - [1070] = 70, - [1071] = 251, - [1072] = 345, - [1073] = 353, - [1074] = 294, - [1075] = 232, - [1076] = 348, - [1077] = 634, - [1078] = 250, - [1079] = 398, - [1080] = 324, - [1081] = 228, - [1082] = 638, - [1083] = 241, - [1084] = 297, - [1085] = 295, - [1086] = 293, - [1087] = 278, - [1088] = 248, - [1089] = 266, - [1090] = 264, - [1091] = 346, - [1092] = 343, - [1093] = 234, - [1094] = 231, - [1095] = 400, - [1096] = 233, - [1097] = 334, - [1098] = 230, - [1099] = 292, - [1100] = 347, - [1101] = 368, - [1102] = 367, - [1103] = 240, - [1104] = 335, - [1105] = 663, - [1106] = 371, - [1107] = 273, - [1108] = 386, - [1109] = 658, - [1110] = 656, - [1111] = 381, - [1112] = 625, - [1113] = 365, - [1114] = 323, - [1115] = 254, - [1116] = 387, - [1117] = 657, - [1118] = 322, - [1119] = 291, - [1120] = 320, - [1121] = 318, - [1122] = 397, - [1123] = 289, - [1124] = 394, - [1125] = 393, - [1126] = 1126, - [1127] = 317, - [1128] = 374, - [1129] = 66, - [1130] = 239, - [1131] = 659, - [1132] = 333, - [1133] = 350, - [1134] = 244, - [1135] = 633, - [1136] = 257, - [1137] = 342, - [1138] = 341, - [1139] = 242, - [1140] = 316, - [1141] = 245, - [1142] = 310, - [1143] = 378, - [1144] = 315, - [1145] = 287, - [1146] = 247, - [1147] = 314, - [1148] = 313, - [1149] = 311, - [1150] = 319, - [1151] = 276, - [1152] = 298, - [1153] = 303, - [1154] = 226, - [1155] = 328, - [1156] = 377, - [1157] = 308, - [1158] = 309, - [1159] = 330, - [1160] = 351, - [1161] = 306, - [1162] = 376, - [1163] = 288, - [1164] = 304, - [1165] = 252, - [1166] = 286, - [1167] = 296, - [1168] = 285, - [1169] = 283, - [1170] = 256, - [1171] = 72, - [1172] = 722, - [1173] = 482, - [1174] = 1174, - [1175] = 686, - [1176] = 716, - [1177] = 742, - [1178] = 736, - [1179] = 735, - [1180] = 730, - [1181] = 709, - [1182] = 681, - [1183] = 483, - [1184] = 752, - [1185] = 714, - [1186] = 750, - [1187] = 695, - [1188] = 725, - [1189] = 705, - [1190] = 479, - [1191] = 732, - [1192] = 734, - [1193] = 1193, - [1194] = 1194, - [1195] = 1194, - [1196] = 1194, + [961] = 959, + [962] = 962, + [963] = 962, + [964] = 49, + [965] = 44, + [966] = 46, + [967] = 967, + [968] = 632, + [969] = 631, + [970] = 630, + [971] = 488, + [972] = 628, + [973] = 489, + [974] = 630, + [975] = 484, + [976] = 667, + [977] = 628, + [978] = 632, + [979] = 631, + [980] = 655, + [981] = 640, + [982] = 654, + [983] = 656, + [984] = 635, + [985] = 616, + [986] = 986, + [987] = 385, + [988] = 355, + [989] = 406, + [990] = 638, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 618, + [995] = 270, + [996] = 372, + [997] = 377, + [998] = 378, + [999] = 379, + [1000] = 660, + [1001] = 625, + [1002] = 239, + [1003] = 245, + [1004] = 246, + [1005] = 247, + [1006] = 289, + [1007] = 290, + [1008] = 665, + [1009] = 342, + [1010] = 343, + [1011] = 344, + [1012] = 345, + [1013] = 346, + [1014] = 347, + [1015] = 348, + [1016] = 349, + [1017] = 350, + [1018] = 351, + [1019] = 352, + [1020] = 353, + [1021] = 354, + [1022] = 356, + [1023] = 358, + [1024] = 359, + [1025] = 360, + [1026] = 361, + [1027] = 362, + [1028] = 363, + [1029] = 367, + [1030] = 369, + [1031] = 371, + [1032] = 375, + [1033] = 376, + [1034] = 648, + [1035] = 381, + [1036] = 382, + [1037] = 383, + [1038] = 384, + [1039] = 386, + [1040] = 388, + [1041] = 389, + [1042] = 390, + [1043] = 391, + [1044] = 392, + [1045] = 393, + [1046] = 394, + [1047] = 396, + [1048] = 398, + [1049] = 399, + [1050] = 400, + [1051] = 401, + [1052] = 402, + [1053] = 403, + [1054] = 404, + [1055] = 405, + [1056] = 227, + [1057] = 229, + [1058] = 230, + [1059] = 231, + [1060] = 232, + [1061] = 233, + [1062] = 234, + [1063] = 235, + [1064] = 236, + [1065] = 237, + [1066] = 407, + [1067] = 238, + [1068] = 244, + [1069] = 248, + [1070] = 249, + [1071] = 250, + [1072] = 251, + [1073] = 252, + [1074] = 253, + [1075] = 254, + [1076] = 255, + [1077] = 256, + [1078] = 257, + [1079] = 258, + [1080] = 259, + [1081] = 260, + [1082] = 261, + [1083] = 263, + [1084] = 266, + [1085] = 267, + [1086] = 268, + [1087] = 269, + [1088] = 669, + [1089] = 271, + [1090] = 272, + [1091] = 641, + [1092] = 274, + [1093] = 275, + [1094] = 277, + [1095] = 278, + [1096] = 279, + [1097] = 280, + [1098] = 281, + [1099] = 282, + [1100] = 226, + [1101] = 284, + [1102] = 285, + [1103] = 286, + [1104] = 287, + [1105] = 288, + [1106] = 291, + [1107] = 292, + [1108] = 293, + [1109] = 294, + [1110] = 295, + [1111] = 296, + [1112] = 297, + [1113] = 298, + [1114] = 299, + [1115] = 300, + [1116] = 301, + [1117] = 302, + [1118] = 303, + [1119] = 304, + [1120] = 305, + [1121] = 306, + [1122] = 307, + [1123] = 308, + [1124] = 309, + [1125] = 310, + [1126] = 311, + [1127] = 312, + [1128] = 313, + [1129] = 315, + [1130] = 666, + [1131] = 316, + [1132] = 317, + [1133] = 318, + [1134] = 319, + [1135] = 320, + [1136] = 322, + [1137] = 323, + [1138] = 324, + [1139] = 325, + [1140] = 326, + [1141] = 327, + [1142] = 328, + [1143] = 329, + [1144] = 330, + [1145] = 331, + [1146] = 332, + [1147] = 333, + [1148] = 334, + [1149] = 335, + [1150] = 336, + [1151] = 337, + [1152] = 338, + [1153] = 339, + [1154] = 340, + [1155] = 341, + [1156] = 646, + [1157] = 668, + [1158] = 634, + [1159] = 71, + [1160] = 647, + [1161] = 57, + [1162] = 265, + [1163] = 53, + [1164] = 637, + [1165] = 314, + [1166] = 321, + [1167] = 283, + [1168] = 357, + [1169] = 364, + [1170] = 623, + [1171] = 1171, + [1172] = 639, + [1173] = 365, + [1174] = 273, + [1175] = 693, + [1176] = 1176, + [1177] = 708, + [1178] = 676, + [1179] = 684, + [1180] = 713, + [1181] = 478, + [1182] = 711, + [1183] = 487, + [1184] = 735, + [1185] = 737, + [1186] = 732, + [1187] = 486, + [1188] = 671, + [1189] = 672, + [1190] = 692, + [1191] = 694, + [1192] = 740, + [1193] = 716, + [1194] = 719, + [1195] = 709, + [1196] = 1196, [1197] = 1197, - [1198] = 1198, + [1198] = 1196, [1199] = 1199, [1200] = 1200, - [1201] = 637, - [1202] = 644, - [1203] = 640, - [1204] = 641, - [1205] = 648, + [1201] = 1196, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, [1206] = 1206, [1207] = 1207, - [1208] = 1208, - [1209] = 1209, + [1208] = 663, + [1209] = 658, [1210] = 1210, - [1211] = 1211, - [1212] = 1212, + [1211] = 649, + [1212] = 661, [1213] = 1213, - [1214] = 1214, + [1214] = 644, [1215] = 1215, [1216] = 1216, [1217] = 1217, @@ -4537,7 +4456,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1223] = 1223, [1224] = 1224, [1225] = 1225, - [1226] = 1226, + [1226] = 50, [1227] = 1227, [1228] = 1228, [1229] = 1229, @@ -4554,253 +4473,253 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 71, + [1243] = 1243, [1244] = 1244, - [1245] = 628, - [1246] = 626, - [1247] = 629, - [1248] = 628, - [1249] = 1249, - [1250] = 626, - [1251] = 952, - [1252] = 627, - [1253] = 629, - [1254] = 618, - [1255] = 627, - [1256] = 617, - [1257] = 626, - [1258] = 629, - [1259] = 1249, - [1260] = 627, - [1261] = 628, - [1262] = 625, - [1263] = 624, - [1264] = 949, - [1265] = 1265, - [1266] = 1266, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 618, + [1250] = 631, + [1251] = 628, + [1252] = 630, + [1253] = 632, + [1254] = 631, + [1255] = 628, + [1256] = 616, + [1257] = 1257, + [1258] = 1248, + [1259] = 628, + [1260] = 630, + [1261] = 632, + [1262] = 631, + [1263] = 951, + [1264] = 630, + [1265] = 1257, + [1266] = 632, [1267] = 1267, - [1268] = 1265, - [1269] = 1269, - [1270] = 1269, - [1271] = 951, - [1272] = 950, + [1268] = 1268, + [1269] = 1268, + [1270] = 950, + [1271] = 952, + [1272] = 953, [1273] = 1273, [1274] = 1274, - [1275] = 1275, + [1275] = 625, [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, + [1277] = 1248, + [1278] = 623, + [1279] = 1274, [1280] = 1280, - [1281] = 1273, + [1281] = 1280, [1282] = 1282, - [1283] = 1279, - [1284] = 1280, - [1285] = 1276, + [1283] = 1283, + [1284] = 1283, + [1285] = 1285, [1286] = 1286, - [1287] = 1286, - [1288] = 1288, + [1287] = 1287, + [1288] = 1286, [1289] = 1289, [1290] = 1290, [1291] = 1291, [1292] = 1292, - [1293] = 1292, - [1294] = 1288, - [1295] = 1295, + [1293] = 1293, + [1294] = 1294, + [1295] = 1293, [1296] = 1296, - [1297] = 1126, - [1298] = 1298, - [1299] = 1296, + [1297] = 1292, + [1298] = 1289, + [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, - [1306] = 1306, - [1307] = 1303, - [1308] = 1273, + [1306] = 1305, + [1307] = 1307, + [1308] = 1301, [1309] = 1309, - [1310] = 1295, - [1311] = 1300, - [1312] = 1304, + [1310] = 1309, + [1311] = 1302, + [1312] = 1312, [1313] = 1313, - [1314] = 1298, + [1314] = 1314, [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1315, + [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1304, - [1322] = 1322, - [1323] = 1322, - [1324] = 1302, - [1325] = 1325, + [1321] = 1313, + [1322] = 1312, + [1323] = 1300, + [1324] = 1171, + [1325] = 1313, [1326] = 1326, - [1327] = 644, - [1328] = 637, + [1327] = 1304, + [1328] = 1307, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 1333, + [1334] = 1334, [1335] = 1335, [1336] = 1336, [1337] = 1337, [1338] = 1338, [1339] = 1339, - [1340] = 1340, - [1341] = 1339, - [1342] = 1342, - [1343] = 1336, + [1340] = 658, + [1341] = 1341, + [1342] = 661, + [1343] = 663, [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 640, - [1350] = 1346, - [1351] = 1126, - [1352] = 1345, - [1353] = 1347, + [1345] = 1344, + [1346] = 1338, + [1347] = 1339, + [1348] = 649, + [1349] = 1330, + [1350] = 1350, + [1351] = 1331, + [1352] = 1332, + [1353] = 1353, [1354] = 1354, - [1355] = 1348, - [1356] = 641, - [1357] = 1335, + [1355] = 1341, + [1356] = 1353, + [1357] = 1357, [1358] = 1358, - [1359] = 1359, + [1359] = 1171, [1360] = 1360, [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1126, + [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1363, + [1369] = 1369, [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1362, - [1374] = 1371, - [1375] = 1363, + [1373] = 1373, + [1374] = 1374, + [1375] = 1372, [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1361, + [1380] = 1372, [1381] = 1381, - [1382] = 1377, - [1383] = 1368, + [1382] = 1382, + [1383] = 1383, [1384] = 1384, - [1385] = 1385, + [1385] = 1362, [1386] = 1386, [1387] = 1387, - [1388] = 1370, - [1389] = 1387, - [1390] = 1359, + [1388] = 1388, + [1389] = 1389, + [1390] = 1389, [1391] = 1391, [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, + [1393] = 1387, + [1394] = 1382, + [1395] = 1391, [1396] = 1396, - [1397] = 1397, + [1397] = 1361, [1398] = 1398, - [1399] = 1358, - [1400] = 1384, - [1401] = 1401, - [1402] = 1367, - [1403] = 1394, - [1404] = 1401, - [1405] = 1405, - [1406] = 1406, - [1407] = 1406, + [1399] = 1399, + [1400] = 1374, + [1401] = 1379, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1366, + [1406] = 1376, + [1407] = 1378, [1408] = 1408, - [1409] = 1396, + [1409] = 1409, [1410] = 1410, [1411] = 1411, - [1412] = 1408, - [1413] = 1365, - [1414] = 1378, - [1415] = 1411, - [1416] = 1408, - [1417] = 1395, - [1418] = 1361, - [1419] = 1419, - [1420] = 1394, - [1421] = 1385, - [1422] = 1386, - [1423] = 1376, + [1412] = 1365, + [1413] = 1404, + [1414] = 1403, + [1415] = 1408, + [1416] = 1384, + [1417] = 1417, + [1418] = 1171, + [1419] = 1409, + [1420] = 1370, + [1421] = 1373, + [1422] = 1367, + [1423] = 1369, [1424] = 1398, - [1425] = 1381, - [1426] = 1410, - [1427] = 1427, - [1428] = 1393, - [1429] = 1429, - [1430] = 1405, - [1431] = 1431, - [1432] = 1427, - [1433] = 1397, + [1425] = 1388, + [1426] = 1373, + [1427] = 1371, + [1428] = 1381, + [1429] = 1396, + [1430] = 1430, + [1431] = 1392, + [1432] = 1369, + [1433] = 1371, [1434] = 1434, - [1435] = 1435, - [1436] = 1436, + [1435] = 1430, + [1436] = 1364, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, + [1438] = 1411, + [1439] = 1377, [1440] = 1440, - [1441] = 1391, - [1442] = 1392, + [1441] = 1441, + [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1436, - [1446] = 1446, + [1445] = 1445, + [1446] = 1445, [1447] = 1447, [1448] = 1448, - [1449] = 1431, - [1450] = 1450, + [1449] = 1449, + [1450] = 1437, [1451] = 1451, - [1452] = 1439, - [1453] = 1453, - [1454] = 1440, + [1452] = 1452, + [1453] = 1368, + [1454] = 1454, [1455] = 1455, - [1456] = 1436, + [1456] = 1455, [1457] = 1457, - [1458] = 1444, - [1459] = 1455, - [1460] = 1460, - [1461] = 1446, - [1462] = 1460, - [1463] = 1434, - [1464] = 1446, - [1465] = 1450, - [1466] = 1460, - [1467] = 1467, + [1458] = 1458, + [1459] = 1447, + [1460] = 1454, + [1461] = 1461, + [1462] = 1443, + [1463] = 1448, + [1464] = 1464, + [1465] = 1461, + [1466] = 1452, + [1467] = 1457, [1468] = 1443, - [1469] = 1444, - [1470] = 1443, - [1471] = 1447, + [1469] = 474, + [1470] = 1445, + [1471] = 1461, [1472] = 1455, - [1473] = 1473, - [1474] = 476, - [1475] = 663, - [1476] = 1476, + [1473] = 1434, + [1474] = 1448, + [1475] = 1363, + [1476] = 1464, [1477] = 1477, - [1478] = 1478, + [1478] = 1452, [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 663, + [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1487, + [1487] = 1485, [1488] = 1488, - [1489] = 663, + [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, @@ -4808,75 +4727,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1492, + [1497] = 1494, [1498] = 1498, [1499] = 1499, - [1500] = 1488, + [1500] = 1500, [1501] = 1501, - [1502] = 1502, + [1502] = 1493, [1503] = 1503, - [1504] = 1504, - [1505] = 1477, - [1506] = 1501, + [1504] = 1491, + [1505] = 1505, + [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, + [1509] = 1489, [1510] = 1510, - [1511] = 1495, - [1512] = 1512, - [1513] = 1498, - [1514] = 1490, + [1511] = 648, + [1512] = 1495, + [1513] = 1513, + [1514] = 1514, [1515] = 1515, - [1516] = 1501, - [1517] = 1517, + [1516] = 1516, + [1517] = 1510, [1518] = 1518, - [1519] = 1490, - [1520] = 1494, - [1521] = 1480, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, + [1519] = 1481, + [1520] = 1520, + [1521] = 1521, + [1522] = 1514, + [1523] = 1493, + [1524] = 1508, [1525] = 1525, - [1526] = 1518, - [1527] = 1486, + [1526] = 1496, + [1527] = 1482, [1528] = 1528, [1529] = 1529, [1530] = 1530, - [1531] = 1525, - [1532] = 1532, - [1533] = 1508, - [1534] = 1477, - [1535] = 1535, + [1531] = 1531, + [1532] = 1491, + [1533] = 1520, + [1534] = 1534, + [1535] = 1483, [1536] = 1536, - [1537] = 1503, - [1538] = 1538, - [1539] = 1539, + [1537] = 1537, + [1538] = 1530, + [1539] = 1496, [1540] = 1540, - [1541] = 1504, + [1541] = 1541, [1542] = 1542, - [1543] = 1478, - [1544] = 1529, - [1545] = 1523, - [1546] = 1515, - [1547] = 1547, - [1548] = 1479, - [1549] = 1549, + [1543] = 648, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1541, + [1548] = 1513, + [1549] = 648, [1550] = 1550, - [1551] = 1510, - [1552] = 1552, - [1553] = 1553, + [1551] = 1551, + [1552] = 1531, + [1553] = 1480, [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 1506, [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 841, - [1565] = 894, + [1564] = 1564, + [1565] = 1565, [1566] = 1566, [1567] = 1567, [1568] = 1568, @@ -4903,10 +4822,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1589] = 1589, [1590] = 1590, [1591] = 1591, - [1592] = 1592, + [1592] = 1566, [1593] = 1593, [1594] = 1594, - [1595] = 1595, + [1595] = 1561, [1596] = 1596, [1597] = 1597, [1598] = 1598, @@ -4921,47 +4840,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1607] = 1607, [1608] = 1608, [1609] = 1609, - [1610] = 1610, - [1611] = 1611, + [1610] = 1601, + [1611] = 861, [1612] = 1612, [1613] = 1613, [1614] = 1614, [1615] = 1615, - [1616] = 1579, - [1617] = 1617, + [1616] = 835, + [1617] = 1574, [1618] = 1618, [1619] = 1619, - [1620] = 1599, + [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 874, + [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 860, + [1627] = 1596, [1628] = 1628, [1629] = 1629, - [1630] = 1485, - [1631] = 1599, + [1630] = 1630, + [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, - [1635] = 1635, + [1635] = 1582, [1636] = 1636, [1637] = 1637, - [1638] = 1579, + [1638] = 1638, [1639] = 1639, - [1640] = 1640, + [1640] = 1614, [1641] = 1641, - [1642] = 1642, + [1642] = 1599, [1643] = 1643, [1644] = 1644, [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1640, + [1646] = 853, + [1647] = 1594, + [1648] = 1567, + [1649] = 1600, + [1650] = 855, [1651] = 1651, [1652] = 1652, [1653] = 1653, @@ -4970,152 +4889,152 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 1659, + [1659] = 1654, [1660] = 1660, [1661] = 1661, [1662] = 1662, - [1663] = 1663, - [1664] = 1664, - [1665] = 1665, - [1666] = 1662, - [1667] = 1665, + [1663] = 1628, + [1664] = 1656, + [1665] = 1564, + [1666] = 1657, + [1667] = 1629, [1668] = 1668, [1669] = 1669, - [1670] = 1656, - [1671] = 1671, + [1670] = 1628, + [1671] = 1629, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1579, + [1675] = 1675, [1676] = 1676, - [1677] = 1646, - [1678] = 1678, - [1679] = 1661, - [1680] = 1680, - [1681] = 1643, + [1677] = 1656, + [1678] = 1657, + [1679] = 1654, + [1680] = 1630, + [1681] = 1564, [1682] = 1682, - [1683] = 1641, - [1684] = 1584, + [1683] = 1575, + [1684] = 1684, [1685] = 1685, - [1686] = 1639, - [1687] = 1687, - [1688] = 1688, - [1689] = 1579, - [1690] = 1614, - [1691] = 1599, - [1692] = 1692, - [1693] = 1693, - [1694] = 1694, - [1695] = 1637, - [1696] = 1617, - [1697] = 1697, - [1698] = 1605, - [1699] = 1640, + [1686] = 1656, + [1687] = 1657, + [1688] = 1654, + [1689] = 1689, + [1690] = 1564, + [1691] = 1651, + [1692] = 1657, + [1693] = 1656, + [1694] = 1657, + [1695] = 1695, + [1696] = 1696, + [1697] = 1644, + [1698] = 1698, + [1699] = 1641, [1700] = 1700, [1701] = 1701, - [1702] = 1583, + [1702] = 1620, [1703] = 1703, [1704] = 1704, [1705] = 1705, - [1706] = 1659, - [1707] = 1599, + [1706] = 1706, + [1707] = 1700, [1708] = 1708, [1709] = 1709, - [1710] = 1710, - [1711] = 1663, - [1712] = 1712, - [1713] = 1606, - [1714] = 1574, - [1715] = 1715, - [1716] = 1694, - [1717] = 1599, - [1718] = 1718, - [1719] = 1575, - [1720] = 1720, - [1721] = 1721, - [1722] = 1715, - [1723] = 1568, - [1724] = 1563, - [1725] = 1725, - [1726] = 1612, + [1710] = 1564, + [1711] = 1593, + [1712] = 1633, + [1713] = 1705, + [1714] = 1714, + [1715] = 1657, + [1716] = 1674, + [1717] = 1717, + [1718] = 1584, + [1719] = 1719, + [1720] = 1625, + [1721] = 1615, + [1722] = 1654, + [1723] = 1536, + [1724] = 844, + [1725] = 845, + [1726] = 1726, [1727] = 1727, - [1728] = 1728, - [1729] = 1579, + [1728] = 1559, + [1729] = 1729, [1730] = 1730, - [1731] = 1661, + [1731] = 1731, [1732] = 1732, - [1733] = 1733, - [1734] = 1598, + [1733] = 1714, + [1734] = 1607, [1735] = 1735, - [1736] = 1653, - [1737] = 1579, - [1738] = 1738, - [1739] = 1739, - [1740] = 1642, - [1741] = 1599, - [1742] = 1661, - [1743] = 1710, - [1744] = 866, - [1745] = 1596, - [1746] = 1632, - [1747] = 864, - [1748] = 1593, - [1749] = 1749, + [1736] = 1736, + [1737] = 1737, + [1738] = 1578, + [1739] = 1656, + [1740] = 1740, + [1741] = 1637, + [1742] = 1742, + [1743] = 1624, + [1744] = 1744, + [1745] = 1745, + [1746] = 1645, + [1747] = 1747, + [1748] = 1748, + [1749] = 1560, [1750] = 1750, - [1751] = 1589, + [1751] = 1735, [1752] = 1752, - [1753] = 1678, - [1754] = 1646, + [1753] = 1652, + [1754] = 1754, [1755] = 1755, - [1756] = 1582, + [1756] = 1756, [1757] = 1757, - [1758] = 1687, - [1759] = 1668, + [1758] = 1758, + [1759] = 1759, [1760] = 1760, [1761] = 1761, - [1762] = 1728, + [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1640, - [1766] = 1766, - [1767] = 1721, - [1768] = 1596, - [1769] = 1618, - [1770] = 1658, - [1771] = 1576, - [1772] = 1685, - [1773] = 1773, - [1774] = 1774, - [1775] = 1591, - [1776] = 1669, - [1777] = 1646, - [1778] = 1634, - [1779] = 1611, - [1780] = 1597, - [1781] = 1593, - [1782] = 1782, - [1783] = 1594, - [1784] = 1784, - [1785] = 1557, - [1786] = 1786, - [1787] = 1633, - [1788] = 1562, - [1789] = 1561, - [1790] = 1661, - [1791] = 1577, - [1792] = 1586, - [1793] = 1793, - [1794] = 1566, - [1795] = 1640, - [1796] = 1628, - [1797] = 1797, + [1765] = 1752, + [1766] = 1586, + [1767] = 1767, + [1768] = 1768, + [1769] = 1619, + [1770] = 1770, + [1771] = 1655, + [1772] = 1772, + [1773] = 1700, + [1774] = 1708, + [1775] = 1775, + [1776] = 1668, + [1777] = 1597, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1703, + [1782] = 1729, + [1783] = 1783, + [1784] = 1609, + [1785] = 1785, + [1786] = 1700, + [1787] = 1787, + [1788] = 1788, + [1789] = 1571, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1779, + [1794] = 1587, + [1795] = 1709, + [1796] = 1787, + [1797] = 1565, [1798] = 1798, - [1799] = 1613, - [1800] = 1648, - [1801] = 1801, + [1799] = 1621, + [1800] = 1568, + [1801] = 1643, [1802] = 1802, - [1803] = 1803, - [1804] = 1804, + [1803] = 1605, + [1804] = 1656, [1805] = 1805, [1806] = 1806, [1807] = 1807, @@ -5123,15 +5042,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 1808, - [1813] = 1813, + [1812] = 1812, + [1813] = 1809, [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 1817, + [1817] = 1810, [1818] = 1818, - [1819] = 1819, - [1820] = 1820, + [1819] = 1811, + [1820] = 1812, [1821] = 1821, [1822] = 1822, [1823] = 1823, @@ -5139,7 +5058,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 1809, + [1828] = 1828, [1829] = 1829, [1830] = 1830, [1831] = 1831, @@ -5150,4806 +5069,557 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1827, - [1840] = 1811, - [1841] = 1801, + [1839] = 1839, + [1840] = 1814, + [1841] = 1841, [1842] = 1842, - [1843] = 1843, - [1844] = 1843, - [1845] = 1845, - [1846] = 1846, + [1843] = 1815, + [1844] = 1844, + [1845] = 1816, + [1846] = 1818, [1847] = 1847, [1848] = 1848, [1849] = 1849, - [1850] = 481, + [1850] = 1850, [1851] = 1851, [1852] = 1852, - [1853] = 1853, - [1854] = 1831, + [1853] = 671, + [1854] = 672, [1855] = 1855, [1856] = 1856, [1857] = 1857, - [1858] = 1858, - [1859] = 1857, - [1860] = 1860, - [1861] = 1861, + [1858] = 1823, + [1859] = 1832, + [1860] = 1834, + [1861] = 1835, [1862] = 1862, - [1863] = 1818, + [1863] = 1836, [1864] = 1864, - [1865] = 1819, + [1865] = 1865, [1866] = 1866, [1867] = 1867, [1868] = 1868, [1869] = 1869, - [1870] = 1864, + [1870] = 1870, [1871] = 1871, [1872] = 1872, - [1873] = 486, - [1874] = 1874, - [1875] = 1875, + [1873] = 1873, + [1874] = 1807, + [1875] = 1808, [1876] = 1876, [1877] = 1877, [1878] = 1878, - [1879] = 1829, + [1879] = 1879, [1880] = 1880, [1881] = 1881, [1882] = 1882, - [1883] = 1866, - [1884] = 1826, - [1885] = 1824, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1878, + [1887] = 1833, + [1888] = 1867, [1889] = 1889, [1890] = 1890, [1891] = 1891, - [1892] = 1892, + [1892] = 1856, [1893] = 1893, [1894] = 1894, [1895] = 1895, [1896] = 1896, - [1897] = 1868, + [1897] = 1897, [1898] = 1898, - [1899] = 1809, - [1900] = 1869, + [1899] = 1828, + [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 725, - [1905] = 1804, + [1904] = 1904, + [1905] = 1905, [1906] = 1906, - [1907] = 1817, + [1907] = 1907, [1908] = 1908, [1909] = 1909, - [1910] = 1910, - [1911] = 1804, - [1912] = 1882, - [1913] = 1893, - [1914] = 1811, - [1915] = 1829, - [1916] = 1862, - [1917] = 1891, - [1918] = 1890, - [1919] = 1861, - [1920] = 1920, - [1921] = 1849, - [1922] = 1848, - [1923] = 1810, - [1924] = 1807, - [1925] = 1889, - [1926] = 1871, - [1927] = 1856, - [1928] = 1928, - [1929] = 1855, - [1930] = 1886, - [1931] = 1931, - [1932] = 1932, - [1933] = 1860, - [1934] = 1934, - [1935] = 1935, + [1910] = 1822, + [1911] = 1878, + [1912] = 1912, + [1913] = 1913, + [1914] = 1830, + [1915] = 1841, + [1916] = 1900, + [1917] = 1831, + [1918] = 1833, + [1919] = 483, + [1920] = 1844, + [1921] = 1921, + [1922] = 1922, + [1923] = 1867, + [1924] = 1924, + [1925] = 1824, + [1926] = 1926, + [1927] = 1844, + [1928] = 1867, + [1929] = 1929, + [1930] = 1905, + [1931] = 1889, + [1932] = 1826, + [1933] = 1333, + [1934] = 1856, + [1935] = 1929, [1936] = 1936, - [1937] = 1937, - [1938] = 1855, - [1939] = 1856, - [1940] = 1836, - [1941] = 1896, - [1942] = 1866, - [1943] = 1860, - [1944] = 1855, - [1945] = 1852, - [1946] = 1851, - [1947] = 1830, - [1948] = 1813, - [1949] = 1814, - [1950] = 1815, - [1951] = 1816, - [1952] = 1952, - [1953] = 1821, - [1954] = 1801, - [1955] = 1822, - [1956] = 1823, - [1957] = 1825, - [1958] = 1958, - [1959] = 1959, - [1960] = 1326, - [1961] = 1851, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1894, - [1966] = 1852, - [1967] = 1833, - [1968] = 1838, - [1969] = 1808, + [1937] = 1881, + [1938] = 1850, + [1939] = 1902, + [1940] = 1940, + [1941] = 1851, + [1942] = 1913, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1839, + [1947] = 1947, + [1948] = 1901, + [1949] = 479, + [1950] = 1805, + [1951] = 1906, + [1952] = 1828, + [1953] = 1953, + [1954] = 1881, + [1955] = 1955, + [1956] = 1956, + [1957] = 1903, + [1958] = 1943, + [1959] = 482, + [1960] = 1837, + [1961] = 1924, + [1962] = 1922, + [1963] = 1936, + [1964] = 1926, + [1965] = 1849, + [1966] = 1966, + [1967] = 1890, + [1968] = 1900, + [1969] = 1943, [1970] = 1970, - [1971] = 1971, - [1972] = 1880, - [1973] = 1878, - [1974] = 695, - [1975] = 705, - [1976] = 1858, - [1977] = 1857, - [1978] = 1978, + [1971] = 1825, + [1972] = 1855, + [1973] = 1973, + [1974] = 1974, + [1975] = 1974, + [1976] = 1976, + [1977] = 1908, + [1978] = 1847, [1979] = 1979, - [1980] = 1934, - [1981] = 1874, - [1982] = 1875, - [1983] = 1983, - [1984] = 488, - [1985] = 1985, - [1986] = 1986, - [1987] = 1987, - [1988] = 1988, + [1980] = 1909, + [1981] = 1981, + [1982] = 1880, + [1983] = 1805, + [1984] = 732, + [1985] = 1974, + [1986] = 1847, + [1987] = 1889, + [1988] = 1956, [1989] = 1989, [1990] = 1990, [1991] = 1991, [1992] = 1992, [1993] = 1993, - [1994] = 1991, - [1995] = 1993, - [1996] = 1989, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, [1997] = 1997, [1998] = 1998, [1999] = 1999, [2000] = 2000, [2001] = 2001, - [2002] = 1989, + [2002] = 2002, [2003] = 2003, - [2004] = 2004, - [2005] = 1992, + [2004] = 1991, + [2005] = 2005, [2006] = 2006, - [2007] = 1991, - [2008] = 1993, + [2007] = 2007, + [2008] = 1995, [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 1989, - [2013] = 1992, + [2010] = 1997, + [2011] = 1998, + [2012] = 2012, + [2013] = 2013, [2014] = 2014, - [2015] = 1991, - [2016] = 1993, - [2017] = 2017, + [2015] = 2015, + [2016] = 1991, + [2017] = 1995, [2018] = 2018, - [2019] = 1991, - [2020] = 2020, - [2021] = 1991, - [2022] = 1991, - [2023] = 2023, + [2019] = 1997, + [2020] = 1998, + [2021] = 2021, + [2022] = 2022, + [2023] = 1997, [2024] = 2024, - [2025] = 2025, - [2026] = 2014, + [2025] = 1997, + [2026] = 1997, [2027] = 2027, - [2028] = 2028, + [2028] = 1994, [2029] = 2029, [2030] = 2030, [2031] = 2031, - [2032] = 2028, + [2032] = 1991, [2033] = 2033, [2034] = 2034, [2035] = 2035, - [2036] = 1985, + [2036] = 2036, [2037] = 2037, [2038] = 2038, - [2039] = 2039, + [2039] = 2003, [2040] = 2040, - [2041] = 2041, + [2041] = 2000, [2042] = 2042, [2043] = 2043, - [2044] = 2044, + [2044] = 2015, [2045] = 2045, [2046] = 2046, [2047] = 2047, [2048] = 2048, - [2049] = 1992, + [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2052, + [2052] = 2045, [2053] = 2053, - [2054] = 2000, + [2054] = 2054, [2055] = 2055, - [2056] = 2034, - [2057] = 2052, - [2058] = 2058, - [2059] = 2059, + [2056] = 2056, + [2057] = 1989, + [2058] = 2021, + [2059] = 1989, [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2001, - [2064] = 2064, - [2065] = 2048, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, + [2061] = 2031, + [2062] = 2054, + [2063] = 2063, + [2064] = 1993, + [2065] = 2053, + [2066] = 2022, + [2067] = 2035, + [2068] = 2055, [2069] = 2069, - [2070] = 2070, + [2070] = 1999, [2071] = 2071, [2072] = 2072, - [2073] = 2073, + [2073] = 2036, [2074] = 2074, [2075] = 2075, - [2076] = 2076, + [2076] = 2069, [2077] = 2077, - [2078] = 2047, - [2079] = 2044, - [2080] = 2080, - [2081] = 2046, - [2082] = 2041, + [2078] = 2078, + [2079] = 2079, + [2080] = 2006, + [2081] = 2081, + [2082] = 2082, [2083] = 2083, - [2084] = 2045, + [2084] = 2078, [2085] = 2085, [2086] = 2086, [2087] = 2087, - [2088] = 2068, + [2088] = 2088, [2089] = 2089, - [2090] = 2090, - [2091] = 1985, - [2092] = 2064, + [2090] = 1991, + [2091] = 2091, + [2092] = 2092, [2093] = 2093, - [2094] = 2089, - [2095] = 1989, - [2096] = 2096, - [2097] = 2087, - [2098] = 2098, - [2099] = 2099, + [2094] = 2094, + [2095] = 1995, + [2096] = 1996, + [2097] = 1997, + [2098] = 2081, + [2099] = 1998, [2100] = 2100, - [2101] = 2086, + [2101] = 2046, [2102] = 2102, [2103] = 2103, - [2104] = 2104, + [2104] = 2075, [2105] = 2105, - [2106] = 2106, - [2107] = 2042, + [2106] = 1991, + [2107] = 2107, [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2006, - [2112] = 2112, - [2113] = 2035, - [2114] = 2034, - [2115] = 2040, + [2111] = 2111, + [2112] = 1998, + [2113] = 2113, + [2114] = 1995, + [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 2118, - [2119] = 2038, - [2120] = 2120, - [2121] = 2121, - [2122] = 2041, - [2123] = 2037, - [2124] = 2124, - [2125] = 2028, - [2126] = 2044, - [2127] = 2127, - [2128] = 2128, - [2129] = 2047, - [2130] = 2020, - [2131] = 2099, - [2132] = 2098, - [2133] = 2124, - [2134] = 1989, + [2118] = 2082, + [2119] = 2119, + [2120] = 2005, + [2121] = 2089, + [2122] = 2083, + [2123] = 2087, + [2124] = 1995, + [2125] = 2125, + [2126] = 2105, + [2127] = 1997, + [2128] = 1998, + [2129] = 2129, + [2130] = 2033, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, [2135] = 2135, - [2136] = 2136, - [2137] = 2040, - [2138] = 2042, - [2139] = 2073, - [2140] = 2045, + [2136] = 2038, + [2137] = 2034, + [2138] = 2138, + [2139] = 2135, + [2140] = 2015, [2141] = 2046, - [2142] = 2075, - [2143] = 2143, - [2144] = 2052, - [2145] = 2145, - [2146] = 2030, - [2147] = 1993, - [2148] = 2148, - [2149] = 2029, - [2150] = 2150, - [2151] = 1997, - [2152] = 2031, - [2153] = 2069, - [2154] = 2024, - [2155] = 2042, - [2156] = 2067, - [2157] = 2045, - [2158] = 2051, + [2142] = 2043, + [2143] = 2049, + [2144] = 2050, + [2145] = 2049, + [2146] = 2146, + [2147] = 2060, + [2148] = 2050, + [2149] = 2071, + [2150] = 2040, + [2151] = 2042, + [2152] = 2152, + [2153] = 2153, + [2154] = 2091, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2046, [2159] = 2159, - [2160] = 2045, - [2161] = 2045, - [2162] = 2045, - [2163] = 2045, - [2164] = 2045, - [2165] = 2071, - [2166] = 1991, - [2167] = 2066, - [2168] = 2035, - [2169] = 2000, - [2170] = 1992, - [2171] = 1991, - [2172] = 2148, - [2173] = 1999, - [2174] = 1993, - [2175] = 1988, - [2176] = 2112, - [2177] = 2055, - [2178] = 1992, - [2179] = 2110, - [2180] = 2018, - [2181] = 2004, - [2182] = 2010, - [2183] = 2011, - [2184] = 2023, - [2185] = 2014, - [2186] = 2025, + [2160] = 2049, + [2161] = 2115, + [2162] = 2060, + [2163] = 2049, + [2164] = 2049, + [2165] = 2049, + [2166] = 2049, + [2167] = 2049, + [2168] = 2087, + [2169] = 2135, + [2170] = 2170, + [2171] = 2056, + [2172] = 2048, + [2173] = 2173, + [2174] = 2029, + [2175] = 2063, + [2176] = 2176, + [2177] = 2177, + [2178] = 2003, + [2179] = 2179, + [2180] = 1997, + [2181] = 2091, + [2182] = 2094, + [2183] = 2037, + [2184] = 1993, + [2185] = 2088, + [2186] = 2038, [2187] = 2187, - [2188] = 2070, - [2189] = 2145, - [2190] = 2127, - [2191] = 2118, - [2192] = 2059, - [2193] = 2062, - [2194] = 2077, - [2195] = 2195, - [2196] = 2118, - [2197] = 2120, + [2188] = 2040, + [2189] = 2042, + [2190] = 2030, + [2191] = 2157, + [2192] = 2156, + [2193] = 2187, + [2194] = 2108, + [2195] = 2079, + [2196] = 2116, + [2197] = 2012, + [2198] = 2027, + [2199] = 2108, + [2200] = 2176, + [2201] = 2014, }; -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= '_') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 - ? (c < 1376 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43642 - ? (c < 3792 - ? (c < 2763 - ? (c < 2112 - ? (c < 1162 - ? (c < 748 - ? (c < 186 - ? (c < 170 - ? (c < 'a' - ? (c >= '0' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 183 - ? c == 181 - : c <= 183))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))) - : (c <= 748 || (c < 902 - ? (c < 886 - ? (c < 768 - ? c == 750 - : c <= 884) - : (c <= 887 || (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895))) - : (c <= 906 || (c < 931 - ? (c < 910 - ? c == 908 - : c <= 929) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1568 - ? (c < 1473 - ? (c < 1376 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369) - : (c <= 1416 || (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471))) - : (c <= 1474 || (c < 1488 - ? (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479) - : (c <= 1514 || (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562))))) - : (c <= 1641 || (c < 1808 - ? (c < 1759 - ? (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756) - : (c <= 1768 || (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791))) - : (c <= 1866 || (c < 2042 - ? (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037) - : (c <= 2042 || (c < 2048 - ? c == 2045 - : c <= 2093))))))))) - : (c <= 2139 || (c < 2565 - ? (c < 2482 - ? (c < 2406 - ? (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c < 2275 - ? (c >= 2200 && c <= 2273) - : c <= 2403))) - : (c <= 2415 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444) - : (c <= 2448 || (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480))))) - : (c <= 2482 || (c < 2524 - ? (c < 2503 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500) - : (c <= 2504 || (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519))) - : (c <= 2525 || (c < 2556 - ? (c < 2534 - ? (c >= 2527 && c <= 2531) - : c <= 2545) - : (c <= 2556 || (c < 2561 - ? c == 2558 - : c <= 2563))))))) - : (c <= 2570 || (c < 2649 - ? (c < 2616 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))) - : (c <= 2617 || (c < 2631 - ? (c < 2622 - ? c == 2620 - : c <= 2626) - : (c <= 2632 || (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641))))) - : (c <= 2652 || (c < 2707 - ? (c < 2689 - ? (c < 2662 - ? c == 2654 - : c <= 2677) - : (c <= 2691 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))) - : (c <= 2728 || (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761))))))))))) - : (c <= 2765 || (c < 3200 - ? (c < 2969 - ? (c < 2876 - ? (c < 2821 - ? (c < 2790 - ? (c < 2784 - ? c == 2768 - : c <= 2787) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873))))) - : (c <= 2884 || (c < 2918 - ? (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915))) - : (c <= 2927 || (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))))))) - : (c <= 2970 || (c < 3072 - ? (c < 3006 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3010 || (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))))) - : (c <= 3084 || (c < 3146 - ? (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))) - : (c <= 3149 || (c < 3165 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3165 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))))))))) - : (c <= 3203 || (c < 3461 - ? (c < 3302 - ? (c < 3260 - ? (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))) - : (c <= 3268 || (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3402 - ? (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400))) - : (c <= 3406 || (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))))))) - : (c <= 3478 || (c < 3648 - ? (c < 3535 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))) - : (c <= 3540 || (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))))) - : (c <= 3662 || (c < 3749 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747))) - : (c <= 3749 || (c < 3782 - ? (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780) - : (c <= 3782 || (c >= 3784 && c <= 3789))))))))))))) - : (c <= 3801 || (c < 8027 - ? (c < 5952 - ? (c < 4698 - ? (c < 3993 - ? (c < 3895 - ? (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))) - : (c <= 3895 || (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))))) - : (c <= 4028 || (c < 4301 - ? (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4682 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680) - : (c <= 4685 || (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696))))))) - : (c <= 4701 || (c < 4957 - ? (c < 4800 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954))))) - : (c <= 4959 || (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4969 && c <= 4977) - : c <= 5007) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c < 5919 - ? (c >= 5888 && c <= 5909) - : c <= 5940))))))))) - : (c <= 5971 || (c < 6783 - ? (c < 6320 - ? (c < 6108 - ? (c < 6002 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6159 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157) - : (c <= 6169 || (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314))))) - : (c <= 6389 || (c < 6528 - ? (c < 6448 - ? (c < 6432 - ? (c >= 6400 && c <= 6430) - : c <= 6443) - : (c <= 6459 || (c < 6512 - ? (c >= 6470 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6656 - ? (c < 6608 - ? (c >= 6576 && c <= 6601) - : c <= 6618) - : (c <= 6683 || (c < 6752 - ? (c >= 6688 && c <= 6750) - : c <= 6780))))))) - : (c <= 6793 || (c < 7296 - ? (c < 6992 - ? (c < 6832 - ? (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823) - : (c <= 6845 || (c < 6912 - ? (c >= 6847 && c <= 6862) - : c <= 6988))) - : (c <= 7001 || (c < 7168 - ? (c < 7040 - ? (c >= 7019 && c <= 7027) - : c <= 7155) - : (c <= 7223 || (c < 7245 - ? (c >= 7232 && c <= 7241) - : c <= 7293))))) - : (c <= 7304 || (c < 7960 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || c == 8025)))))))))) - : (c <= 8027 || (c < 11728 - ? (c < 8469 - ? (c < 8182 - ? (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))) - : (c <= 8188 || (c < 8400 - ? (c < 8305 - ? (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8412 || (c < 8450 - ? (c < 8421 - ? c == 8417 - : c <= 8432) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))))))) - : (c <= 8469 || (c < 11520 - ? (c < 8508 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8505))) - : (c <= 8511 || (c < 8544 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526) - : (c <= 8584 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11507))))) - : (c <= 11557 || (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))))))) - : (c <= 11734 || (c < 42775 - ? (c < 12549 - ? (c < 12344 - ? (c < 12293 - ? (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775) - : (c <= 12295 || (c < 12337 - ? (c >= 12321 && c <= 12335) - : c <= 12341))) - : (c <= 12348 || (c < 12445 - ? (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))))) - : (c <= 12591 || (c < 42192 - ? (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124))) - : (c <= 42237 || (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))))))) - : (c <= 42783 || (c < 43259 - ? (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43047 || (c < 43136 - ? (c < 43072 - ? c == 43052 - : c <= 43123) - : (c <= 43205 || (c < 43232 - ? (c >= 43216 && c <= 43225) - : c <= 43255))))) - : (c <= 43259 || (c < 43488 - ? (c < 43360 - ? (c < 43312 - ? (c >= 43261 && c <= 43309) - : c <= 43347) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : c <= 43481))) - : (c <= 43518 || (c < 43600 - ? (c < 43584 - ? (c >= 43520 && c <= 43574) - : c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43714 || (c < 71472 - ? (c < 67644 - ? (c < 65382 - ? (c < 64318 - ? (c < 44012 - ? (c < 43793 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759) - : (c <= 43766 || (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790))) - : (c <= 43798 || (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))))) - : (c <= 44013 || (c < 64112 - ? (c < 55216 - ? (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))) - : (c <= 64217 || (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))))))) - : (c <= 64318 || (c < 65101 - ? (c < 64848 - ? (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829))) - : (c <= 64911 || (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))))) - : (c <= 65103 || (c < 65149 - ? (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65313 - ? (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))))))))) - : (c <= 65470 || (c < 66560 - ? (c < 65856 - ? (c < 65549 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))) - : (c <= 65574 || (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66349 - ? (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))) - : (c <= 66378 || (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))))))) - : (c <= 66717 || (c < 66995 - ? (c < 66928 - ? (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))) - : (c <= 66938 || (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))))) - : (c <= 67001 || (c < 67463 - ? (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))) - : (c <= 67504 || (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))))))))))) - : (c <= 67644 || (c < 69968 - ? (c < 68480 - ? (c < 68108 - ? (c < 67840 - ? (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))) - : (c <= 67861 || (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68101 - ? (c >= 68096 && c <= 68099) - : c <= 68102))))) - : (c <= 68115 || (c < 68224 - ? (c < 68152 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68154 || (c < 68192 - ? c == 68159 - : c <= 68220))) - : (c <= 68252 || (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326) - : (c <= 68405 || (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466))))))) - : (c <= 68497 || (c < 69488 - ? (c < 69248 - ? (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921))) - : (c <= 69289 || (c < 69376 - ? (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69456))))) - : (c <= 69509 || (c < 69826 - ? (c < 69632 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69888 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : c <= 69881) - : (c <= 69940 || (c < 69956 - ? (c >= 69942 && c <= 69951) - : c <= 69959))))))))) - : (c <= 70003 || (c < 70471 - ? (c < 70287 - ? (c < 70144 - ? (c < 70089 - ? (c < 70016 - ? c == 70006 - : c <= 70084) - : (c <= 70092 || (c < 70108 - ? (c >= 70094 && c <= 70106) - : c <= 70108))) - : (c <= 70161 || (c < 70272 - ? (c < 70206 - ? (c >= 70163 && c <= 70199) - : c <= 70206) - : (c <= 70278 || (c < 70282 - ? c == 70280 - : c <= 70285))))) - : (c <= 70301 || (c < 70415 - ? (c < 70384 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378) - : (c <= 70393 || (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412))) - : (c <= 70416 || (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468))))))) - : (c <= 70472 || (c < 70864 - ? (c < 70512 - ? (c < 70487 - ? (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480) - : (c <= 70487 || (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508))) - : (c <= 70516 || (c < 70750 - ? (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745) - : (c <= 70753 || (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855))))) - : (c <= 70873 || (c < 71248 - ? (c < 71128 - ? (c < 71096 - ? (c >= 71040 && c <= 71093) - : c <= 71104) - : (c <= 71133 || (c < 71236 - ? (c >= 71168 && c <= 71232) - : c <= 71236))) - : (c <= 71257 || (c < 71424 - ? (c < 71360 - ? (c >= 71296 && c <= 71352) - : c <= 71369) - : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) - : (c <= 71481 || (c < 119973 - ? (c < 82944 - ? (c < 72784 - ? (c < 72096 - ? (c < 71948 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71738) - : (c <= 71913 || (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945))) - : (c <= 71955 || (c < 71991 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71989) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))))) - : (c <= 72103 || (c < 72272 - ? (c < 72163 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72704 - ? (c < 72368 - ? c == 72349 - : c <= 72440) - : (c <= 72712 || (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768))))))) - : (c <= 72793 || (c < 73063 - ? (c < 72971 - ? (c < 72873 - ? (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871) - : (c <= 72886 || (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969))) - : (c <= 73014 || (c < 73023 - ? (c < 73020 - ? c == 73018 - : c <= 73021) - : (c <= 73031 || (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061))))) - : (c <= 73064 || (c < 73648 - ? (c < 73107 - ? (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105) - : (c <= 73112 || (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))))) - : (c <= 83526 || (c < 110581 - ? (c < 93053 - ? (c < 92880 - ? (c < 92768 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))) - : (c <= 92909 || (c < 92992 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : c <= 92982) - : (c <= 92995 || (c < 93027 - ? (c >= 93008 && c <= 93017) - : c <= 93047))))) - : (c <= 93071 || (c < 94179 - ? (c < 94031 - ? (c < 93952 - ? (c >= 93760 && c <= 93823) - : c <= 94026) - : (c <= 94087 || (c < 94176 - ? (c >= 94095 && c <= 94111) - : c <= 94177))) - : (c <= 94180 || (c < 100352 - ? (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))))))) - : (c <= 110587 || (c < 118576 - ? (c < 113664 - ? (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c < 118528 - ? (c >= 113821 && c <= 113822) - : c <= 118573))))) - : (c <= 118598 || (c < 119362 - ? (c < 119163 - ? (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154) - : (c <= 119170 || (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213))) - : (c <= 119364 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, + {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, + {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, + {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, + {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, + {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, + {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, + {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, + {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, + {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {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}, {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 inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_3[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, + {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, + {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, + {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, + {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, + {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, + {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, + {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, + {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, + {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, + {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, + {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, + {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, + {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, + {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, + {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, + {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, + {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, + {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, + {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, + {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, + {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, + {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 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}, {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}, + {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, + {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, + {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, + {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, + {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, + {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, + {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, + {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, + {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, + {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, + {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, + {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, + {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {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, 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}, + {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, + {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, + {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, + {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, + {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 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) { START_LEXER(); @@ -9957,307 +5627,305 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(56); - if (lookahead == '!') ADVANCE(76); - if (lookahead == '"') ADVANCE(143); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(95); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(72); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '@') ADVANCE(129); - if (lookahead == '[') ADVANCE(58); - if (lookahead == '\\') ADVANCE(34); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) + ADVANCE_MAP( + '!', 70, + '"', 143, + '#', 67, + '$', 95, + '%', 116, + '&', 92, + '\'', 66, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 102, + '.', 128, + '/', 115, + '0', 137, + ':', 77, + ';', 57, + '<', 94, + '=', 72, + '>', 87, + '?', 83, + '@', 129, + '[', 58, + '\\', 34, + ']', 59, + '^', 108, + 'b', 147, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 1: if (lookahead == ' ') ADVANCE(60); if (lookahead == '/') ADVANCE(18); if (lookahead == ';') ADVANCE(57); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') SKIP(1) + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(1); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(75); - if (lookahead == '"') ADVANCE(143); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(51); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '+') ADVANCE(81); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(17); - if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == '\\') ADVANCE(34); - if (lookahead == ']') ADVANCE(59); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) + ADVANCE_MAP( + '!', 69, + '"', 143, + '#', 67, + '$', 51, + '&', 91, + '(', 78, + ')', 79, + '*', 89, + '+', 81, + ',', 68, + '-', 31, + '.', 17, + '/', 18, + '0', 137, + ':', 77, + ';', 57, + '<', 84, + '=', 73, + '>', 86, + '?', 83, + '[', 58, + '\\', 34, + ']', 59, + 'r', 148, + '{', 74, + '|', 106, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(75); - if (lookahead == '"') ADVANCE(142); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(51); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(12); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(89); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(100); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(29); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '[') ADVANCE(58); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) + ADVANCE_MAP( + '!', 69, + '"', 142, + '#', 67, + '$', 51, + '&', 91, + '\'', 12, + '(', 78, + ')', 79, + '*', 89, + ',', 68, + '-', 100, + '.', 16, + '/', 18, + '0', 137, + ':', 29, + '<', 84, + '[', 58, + 'b', 147, + 'r', 148, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(75); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(51); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '+') ADVANCE(81); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(17); - if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) + ADVANCE_MAP( + '!', 69, + '#', 67, + '$', 51, + '&', 91, + '(', 78, + ')', 79, + '*', 89, + '+', 81, + ',', 68, + '-', 31, + '.', 17, + '/', 18, + '0', 137, + ':', 77, + ';', 57, + '<', 84, + '=', 73, + '>', 86, + '?', 83, + '[', 58, + ']', 59, + 'r', 148, + '{', 74, + '|', 106, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(71); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '!', 30, + '%', 116, + '&', 92, + '\'', 65, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 102, + '.', 128, + '/', 115, + ':', 77, + ';', 57, + '<', 85, + '=', 72, + '>', 87, + '?', 83, + '[', 58, + ']', 59, + '^', 108, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '!', 30, + '%', 116, + '&', 92, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 102, + '.', 128, + '/', 115, + ':', 76, + ';', 57, + '<', 85, + '=', 72, + '>', 87, + '?', 83, + '[', 58, + ']', 59, + '^', 108, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(30); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '!', 30, + '%', 116, + '&', 92, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 101, + '.', 128, + '/', 115, + ':', 77, + ';', 57, + '<', 94, + '=', 72, + '>', 87, + '?', 83, + '[', 58, + ']', 59, + '^', 108, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(7); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(142); - if (lookahead == '$') ADVANCE(95); - if (lookahead == '\'') ADVANCE(72); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '/') ADVANCE(67); - if (lookahead == '0') ADVANCE(137); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '_') ADVANCE(68); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) + ADVANCE_MAP( + '"', 142, + '$', 95, + '\'', 66, + '(', 78, + ')', 79, + '/', 61, + '0', 137, + '[', 58, + ']', 59, + '_', 62, + 'b', 147, + 'r', 148, + '{', 74, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(8); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(69); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(149); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(63); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 9: - if (lookahead == '#') ADVANCE(73); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '+') ADVANCE(81); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '.') ADVANCE(17); - if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(86); - if (lookahead == ']') ADVANCE(59); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '#', 67, + '(', 78, + ')', 79, + '+', 81, + ',', 68, + '-', 31, + '.', 17, + '/', 18, + ':', 76, + ';', 57, + '<', 94, + '=', 73, + '>', 86, + ']', 59, + 'r', 148, + '{', 74, + '|', 106, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 10: - if (lookahead == '#') ADVANCE(73); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(61); - if (lookahead == '<') ADVANCE(84); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '#', 67, + ',', 68, + '.', 15, + '/', 18, + ':', 76, + '<', 84, + 'r', 148, + '{', 74, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(10); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 11: if (lookahead == '\'') ADVANCE(144); @@ -10268,28 +5936,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(11); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '+') ADVANCE(81); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '.') ADVANCE(17); - if (lookahead == '/') ADVANCE(18); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(129); - if (lookahead == ']') ADVANCE(59); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + ADVANCE_MAP( + '(', 78, + ')', 79, + '+', 81, + ',', 68, + '.', 17, + '/', 18, + ':', 77, + ';', 57, + '<', 94, + '=', 73, + '>', 86, + '@', 129, + ']', 59, + 'r', 148, + '{', 74, + '|', 106, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 14: if (lookahead == '.') ADVANCE(93); @@ -10455,122 +6123,122 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); END_STATE(); case 52: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 53: if (eof) ADVANCE(56); - if (lookahead == '!') ADVANCE(76); - if (lookahead == '"') ADVANCE(142); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(95); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(72); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '@') ADVANCE(129); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) + ADVANCE_MAP( + '!', 70, + '"', 142, + '#', 67, + '$', 95, + '%', 116, + '&', 92, + '\'', 66, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 102, + '.', 128, + '/', 115, + '0', 137, + ':', 77, + ';', 57, + '<', 94, + '=', 72, + '>', 87, + '?', 83, + '@', 129, + '[', 58, + ']', 59, + '^', 108, + 'b', 147, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 54: if (eof) ADVANCE(56); - if (lookahead == '!') ADVANCE(76); - if (lookahead == '"') ADVANCE(142); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(51); - if (lookahead == '%') ADVANCE(116); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(72); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(62); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(83); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == '^') ADVANCE(108); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) + ADVANCE_MAP( + '!', 70, + '"', 142, + '#', 67, + '$', 51, + '%', 116, + '&', 92, + '\'', 66, + '(', 78, + ')', 79, + '*', 90, + '+', 82, + ',', 68, + '-', 101, + '.', 128, + '/', 115, + '0', 137, + ':', 77, + ';', 57, + '<', 85, + '=', 72, + '>', 87, + '?', 83, + '[', 58, + ']', 59, + '^', 108, + 'b', 147, + 'r', 148, + '{', 74, + '|', 107, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 55: if (eof) ADVANCE(56); - if (lookahead == '!') ADVANCE(75); - if (lookahead == '"') ADVANCE(142); - if (lookahead == '#') ADVANCE(73); - if (lookahead == '$') ADVANCE(51); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(72); - if (lookahead == '(') ADVANCE(63); - if (lookahead == ')') ADVANCE(64); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '+') ADVANCE(81); - if (lookahead == ',') ADVANCE(74); - if (lookahead == '-') ADVANCE(103); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(137); - if (lookahead == ':') ADVANCE(29); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '=') ADVANCE(77); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '[') ADVANCE(58); - if (lookahead == ']') ADVANCE(59); - if (lookahead == 'b') ADVANCE(147); - if (lookahead == 'r') ADVANCE(148); - if (lookahead == '{') ADVANCE(65); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) + ADVANCE_MAP( + '!', 69, + '"', 142, + '#', 67, + '$', 51, + '&', 91, + '\'', 66, + '(', 78, + ')', 79, + '*', 89, + '+', 81, + ',', 68, + '-', 103, + '.', 15, + '/', 18, + '0', 137, + ':', 29, + ';', 57, + '<', 84, + '=', 71, + '>', 86, + '[', 58, + ']', 59, + 'b', 147, + 'r', 148, + '{', 74, + '|', 106, + '}', 75, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(149); END_STATE(); case 56: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -10585,31 +6253,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_); + ACCEPT_TOKEN(anon_sym_SPACE); if (lookahead == ' ') ADVANCE(60); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(88); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 67: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(70); + if (lookahead == '/') ADVANCE(64); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10619,11 +6268,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(69); + lookahead == '~') ADVANCE(63); END_STATE(); - case 68: + case 62: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(68); + if (lookahead == '_') ADVANCE(62); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10632,10 +6281,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(69); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(149); + lookahead == '~') ADVANCE(63); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(149); END_STATE(); - case 69: + case 63: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10646,9 +6295,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(69); + lookahead == '~') ADVANCE(63); END_STATE(); - case 70: + case 64: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10659,44 +6308,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(70); + lookahead == '~') ADVANCE(64); if (lookahead != 0 && lookahead != '\n') ADVANCE(146); END_STATE(); - case 71: + case 65: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 72: + case 66: ACCEPT_TOKEN(anon_sym_SQUOTE); if (lookahead == '\'') ADVANCE(144); if (lookahead == '\\') ADVANCE(35); if (lookahead != 0) ADVANCE(11); END_STATE(); - case 73: + case 67: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 74: + case 68: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 75: + case 69: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 76: + case 70: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(110); END_STATE(); - case 77: + case 71: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 78: + case 72: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(109); if (lookahead == '>') ADVANCE(127); END_STATE(); - case 79: + case 73: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '>') ADVANCE(127); END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(88); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); @@ -11018,16 +6686,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(142); if (lookahead == '\'') ADVANCE(12); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(149); END_STATE(); case 148: ACCEPT_TOKEN(sym_identifier); if (lookahead == '#') ADVANCE(52); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(149); END_STATE(); case 149: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(149); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(149); END_STATE(); case 150: ACCEPT_TOKEN(sym_metavariable); @@ -11046,750 +6714,647 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == 'y') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) + ADVANCE_MAP( + '_', 1, + 'a', 2, + 'b', 3, + 'c', 4, + 'd', 5, + 'e', 6, + 'f', 7, + 'i', 8, + 'l', 9, + 'm', 10, + 'p', 11, + 'r', 12, + 's', 13, + 't', 14, + 'u', 15, + 'w', 16, + 'y', 17, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); END_STATE(); case 1: ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 'b') ADVANCE(19); - if (lookahead == 's') ADVANCE(20); + if (lookahead == 'b') ADVANCE(18); + if (lookahead == 's') ADVANCE(19); END_STATE(); case 3: - if (lookahead == '2') ADVANCE(21); - if (lookahead == 'l') ADVANCE(22); - if (lookahead == 'o') ADVANCE(23); - if (lookahead == 'r') ADVANCE(24); + if (lookahead == '2') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'h') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(27); + if (lookahead == 'e') ADVANCE(25); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(28); - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'x') ADVANCE(30); + if (lookahead == 'l') ADVANCE(26); + if (lookahead == 'n') ADVANCE(27); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(31); - if (lookahead == '6') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); + if (lookahead == '3') ADVANCE(28); + if (lookahead == '6') ADVANCE(29); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'n') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 8: - if (lookahead == '1') ADVANCE(36); - if (lookahead == '2') ADVANCE(37); - if (lookahead == '3') ADVANCE(38); - if (lookahead == '6') ADVANCE(39); - if (lookahead == '8') ADVANCE(40); - if (lookahead == 'd') ADVANCE(41); - if (lookahead == 'f') ADVANCE(42); - if (lookahead == 'm') ADVANCE(43); - if (lookahead == 'n') ADVANCE(44); - if (lookahead == 's') ADVANCE(45); - if (lookahead == 't') ADVANCE(46); + ADVANCE_MAP( + '1', 33, + '2', 34, + '3', 35, + '6', 36, + '8', 37, + 'f', 38, + 'm', 39, + 'n', 40, + 's', 41, + ); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'i') ADVANCE(48); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'i') ADVANCE(43); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(49); - if (lookahead == 'e') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'u') ADVANCE(52); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'o') ADVANCE(45); + if (lookahead == 'u') ADVANCE(46); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(53); - if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'r') ADVANCE(47); + if (lookahead == 'u') ADVANCE(48); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'e') ADVANCE(49); END_STATE(); case 13: - if (lookahead == 'c') ADVANCE(57); - if (lookahead == 'e') ADVANCE(58); - if (lookahead == 't') ADVANCE(59); + if (lookahead == 'c') ADVANCE(50); + if (lookahead == 'e') ADVANCE(51); + if (lookahead == 't') ADVANCE(52); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'r') ADVANCE(53); + if (lookahead == 'y') ADVANCE(54); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(63); - if (lookahead == '2') ADVANCE(64); - if (lookahead == '3') ADVANCE(65); - if (lookahead == '6') ADVANCE(66); - if (lookahead == '8') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == '1') ADVANCE(55); + if (lookahead == '2') ADVANCE(56); + if (lookahead == '3') ADVANCE(57); + if (lookahead == '6') ADVANCE(58); + if (lookahead == '8') ADVANCE(59); + if (lookahead == 's') ADVANCE(60); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'h') ADVANCE(61); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'i') ADVANCE(62); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(63); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(72); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'm') ADVANCE(64); END_STATE(); case 20: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'm') ADVANCE(73); + if (lookahead == '5') ADVANCE(65); END_STATE(); case 21: - if (lookahead == '5') ADVANCE(74); + if (lookahead == 'o') ADVANCE(66); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(76); + if (lookahead == 'a') ADVANCE(68); END_STATE(); case 24: - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'n') ADVANCE(69); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(78); + if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 's') ADVANCE(72); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(80); - if (lookahead == 'r') ADVANCE(81); + if (lookahead == 'u') ADVANCE(73); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(82); + if (lookahead == '2') ADVANCE(74); END_STATE(); case 29: - if (lookahead == 'u') ADVANCE(83); + if (lookahead == '4') ADVANCE(75); END_STATE(); case 30: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 'l') ADVANCE(76); END_STATE(); case 31: - if (lookahead == '2') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 32: - if (lookahead == '4') ADVANCE(86); + if (lookahead == 'r') ADVANCE(77); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(87); + if (lookahead == '2') ADVANCE(78); + if (lookahead == '6') ADVANCE(79); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == '5') ADVANCE(80); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(88); + if (lookahead == '2') ADVANCE(81); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(89); - if (lookahead == '6') ADVANCE(90); + if (lookahead == '4') ADVANCE(82); END_STATE(); case 37: - if (lookahead == '5') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(93); + if (lookahead == 'p') ADVANCE(83); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_i8); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'b') ADVANCE(86); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'd') ADVANCE(88); + if (lookahead == 'v') ADVANCE(89); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 't') ADVANCE(90); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 48: - if (lookahead == 'b') ADVANCE(99); - if (lookahead == 't') ADVANCE(100); + if (lookahead == 'b') ADVANCE(92); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'f') ADVANCE(93); + if (lookahead == 't') ADVANCE(94); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'r') ADVANCE(95); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(103); - if (lookahead == 'v') ADVANCE(104); + if (lookahead == 'l') ADVANCE(96); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'o') ADVANCE(97); + if (lookahead == 'r') ADVANCE(98); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 'a') ADVANCE(99); + if (lookahead == 'u') ADVANCE(100); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'p') ADVANCE(101); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == '2') ADVANCE(102); + if (lookahead == '6') ADVANCE(103); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(109); - if (lookahead == 't') ADVANCE(110); + if (lookahead == '5') ADVANCE(104); END_STATE(); case 57: - if (lookahead == 'r') ADVANCE(111); + if (lookahead == '2') ADVANCE(105); END_STATE(); case 58: - if (lookahead == 'l') ADVANCE(112); + if (lookahead == '4') ADVANCE(106); END_STATE(); case 59: - if (lookahead == 'm') ADVANCE(113); - if (lookahead == 'o') ADVANCE(114); - if (lookahead == 'r') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'u') ADVANCE(117); + if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'i') ADVANCE(108); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'i') ADVANCE(110); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(118); + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(119); - if (lookahead == '6') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_abi); END_STATE(); case 64: - if (lookahead == '5') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 65: - if (lookahead == '2') ADVANCE(122); + if (lookahead == '6') ADVANCE(112); END_STATE(); case 66: - if (lookahead == '4') ADVANCE(123); + if (lookahead == 'l') ADVANCE(113); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == 'a') ADVANCE(114); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(124); - if (lookahead == 'i') ADVANCE(125); + if (lookahead == 'r') ADVANCE(115); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(126); + if (lookahead == 'f') ADVANCE(116); + if (lookahead == 's') ADVANCE(117); + if (lookahead == 't') ADVANCE(118); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(127); - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'a') ADVANCE(119); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'e') ADVANCE(120); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_abi); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'm') ADVANCE(122); END_STATE(); case 74: - if (lookahead == '6') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 76: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 's') ADVANCE(123); END_STATE(); case 77: - if (lookahead == 'a') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 78: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == '8') ADVANCE(124); END_STATE(); case 79: - if (lookahead == 'f') ADVANCE(135); - if (lookahead == 's') ADVANCE(136); - if (lookahead == 't') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(138); + if (lookahead == '6') ADVANCE(125); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 83: - if (lookahead == 'm') ADVANCE(141); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'z') ADVANCE(127); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_f32); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'r') ADVANCE(128); END_STATE(); case 87: - if (lookahead == 's') ADVANCE(143); + if (lookahead == 'c') ADVANCE(129); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 89: - if (lookahead == '8') ADVANCE(144); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_i16); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 91: - if (lookahead == '6') ADVANCE(145); + if (lookahead == 'd') ADVANCE(131); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'u') ADVANCE(132); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(147); + if (lookahead == 'i') ADVANCE(133); END_STATE(); case 96: - if (lookahead == 'z') ADVANCE(148); + if (lookahead == 'f') ADVANCE(134); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(149); + if (lookahead == 'r') ADVANCE(135); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(136); END_STATE(); case 99: - if (lookahead == 'r') ADVANCE(150); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'e') ADVANCE(138); END_STATE(); case 101: - if (lookahead == 'c') ADVANCE(152); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 102: - if (lookahead == 'a') ADVANCE(153); + if (lookahead == '8') ADVANCE(140); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == '6') ADVANCE(141); END_STATE(); case 105: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 107: - if (lookahead == 'd') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_pub); + if (lookahead == 'z') ADVANCE(142); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'r') ADVANCE(143); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(157); + if (lookahead == 'l') ADVANCE(144); END_STATE(); case 111: - if (lookahead == 'i') ADVANCE(158); + if (lookahead == 'l') ADVANCE(145); END_STATE(); case 112: - if (lookahead == 'f') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_b256); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 114: - if (lookahead == 'r') ADVANCE(161); + if (lookahead == 'k') ADVANCE(146); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(163); + if (lookahead == 'i') ADVANCE(147); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'i') ADVANCE(149); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 119: - if (lookahead == '8') ADVANCE(166); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'f') ADVANCE(152); END_STATE(); case 121: - if (lookahead == '6') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 125: - if (lookahead == 'z') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_i256); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 127: - if (lookahead == 'r') ADVANCE(169); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 128: - if (lookahead == 'l') ADVANCE(170); + if (lookahead == 'a') ADVANCE(155); END_STATE(); case 129: - if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'h') ADVANCE(156); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_b256); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 131: - if (lookahead == 'k') ADVANCE(172); + if (lookahead == 'i') ADVANCE(157); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'r') ADVANCE(158); END_STATE(); case 133: - if (lookahead == 'k') ADVANCE(173); + if (lookahead == 'p') ADVANCE(159); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(sym_self); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(174); + if (lookahead == 'a') ADVANCE(160); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(175); + if (lookahead == 'c') ADVANCE(161); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(176); - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 't') ADVANCE(162); END_STATE(); case 138: - if (lookahead == 'u') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 139: - if (lookahead == 'f') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_u256); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_i256); + if (lookahead == 'd') ADVANCE(166); END_STATE(); case 146: - if (lookahead == 't') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'g') ADVANCE(167); END_STATE(); case 148: - if (lookahead == 'e') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 150: - if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'a') ADVANCE(169); END_STATE(); case 151: - if (lookahead == 'r') ADVANCE(184); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 152: - if (lookahead == 'h') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_deref); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 156: - if (lookahead == 'i') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 157: - if (lookahead == 'r') ADVANCE(187); + if (lookahead == 'c') ADVANCE(172); END_STATE(); case 158: - if (lookahead == 'p') ADVANCE(188); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 159: - ACCEPT_TOKEN(sym_self); + if (lookahead == 't') ADVANCE(174); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'g') ADVANCE(175); END_STATE(); case 161: - if (lookahead == 'a') ADVANCE(189); + if (lookahead == 't') ADVANCE(176); END_STATE(); case 162: - if (lookahead == 'c') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 163: - if (lookahead == 't') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_u256); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 168: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'u') ADVANCE(178); END_STATE(); case 169: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'c') ADVANCE(179); END_STATE(); case 170: - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 171: - if (lookahead == 'd') ADVANCE(195); + if (lookahead == 'y') ADVANCE(181); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'a') ADVANCE(182); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 174: - if (lookahead == 'g') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_script); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 177: - if (lookahead == 'a') ADVANCE(198); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 178: - if (lookahead == 'l') ADVANCE(199); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_deref); + if (lookahead == 't') ADVANCE(186); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_ident); + ACCEPT_TOKEN(anon_sym_library); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 183: - if (lookahead == 'r') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_storage); END_STATE(); case 184: - if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'a') ADVANCE(188); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 186: - if (lookahead == 'c') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_contract); END_STATE(); case 187: - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(204); + if (lookahead == 'b') ADVANCE(190); END_STATE(); case 189: - if (lookahead == 'g') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_predicate); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(206); + if (lookahead == 'l') ADVANCE(191); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_usize); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_yield); - END_STATE(); - case 196: - if (lookahead == 'u') ADVANCE(207); - END_STATE(); - case 197: - if (lookahead == 'u') ADVANCE(208); - END_STATE(); - case 198: - if (lookahead == 'c') ADVANCE(209); - END_STATE(); - case 199: - if (lookahead == 't') ADVANCE(210); - END_STATE(); - case 200: - if (lookahead == 'y') ADVANCE(211); - END_STATE(); - case 201: - if (lookahead == 'l') ADVANCE(212); - END_STATE(); - case 202: - if (lookahead == 'a') ADVANCE(213); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_script); - END_STATE(); - case 205: - if (lookahead == 'e') ADVANCE(214); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 207: - if (lookahead == 'r') ADVANCE(215); - END_STATE(); - case 208: - if (lookahead == 'e') ADVANCE(216); - END_STATE(); - case 209: - if (lookahead == 't') ADVANCE(217); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_library); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_literal); - END_STATE(); - case 213: - if (lookahead == 't') ADVANCE(218); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_storage); - END_STATE(); - case 215: - if (lookahead == 'a') ADVANCE(219); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_contract); - END_STATE(); - case 218: - if (lookahead == 'e') ADVANCE(220); - END_STATE(); - case 219: - if (lookahead == 'b') ADVANCE(221); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_predicate); - END_STATE(); - case 221: - if (lookahead == 'l') ADVANCE(222); - END_STATE(); - case 222: - if (lookahead == 'e') ADVANCE(223); - END_STATE(); - case 223: ACCEPT_TOKEN(anon_sym_configurable); END_STATE(); default: @@ -11841,47 +7406,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [40] = {.lex_state = 55, .external_lex_state = 2}, [41] = {.lex_state = 55, .external_lex_state = 2}, [42] = {.lex_state = 54, .external_lex_state = 2}, - [43] = {.lex_state = 54, .external_lex_state = 2}, - [44] = {.lex_state = 55, .external_lex_state = 2}, + [43] = {.lex_state = 55, .external_lex_state = 2}, + [44] = {.lex_state = 54, .external_lex_state = 2}, [45] = {.lex_state = 55, .external_lex_state = 2}, - [46] = {.lex_state = 55, .external_lex_state = 2}, - [47] = {.lex_state = 54, .external_lex_state = 2}, - [48] = {.lex_state = 54, .external_lex_state = 2}, - [49] = {.lex_state = 55, .external_lex_state = 2}, + [46] = {.lex_state = 54, .external_lex_state = 2}, + [47] = {.lex_state = 55, .external_lex_state = 2}, + [48] = {.lex_state = 55, .external_lex_state = 2}, + [49] = {.lex_state = 54, .external_lex_state = 2}, [50] = {.lex_state = 54, .external_lex_state = 2}, [51] = {.lex_state = 55, .external_lex_state = 2}, [52] = {.lex_state = 54, .external_lex_state = 2}, - [53] = {.lex_state = 55, .external_lex_state = 2}, + [53] = {.lex_state = 54, .external_lex_state = 2}, [54] = {.lex_state = 54, .external_lex_state = 2}, [55] = {.lex_state = 55, .external_lex_state = 2}, [56] = {.lex_state = 54, .external_lex_state = 2}, - [57] = {.lex_state = 55, .external_lex_state = 2}, - [58] = {.lex_state = 55, .external_lex_state = 2}, - [59] = {.lex_state = 54, .external_lex_state = 2}, + [57] = {.lex_state = 54, .external_lex_state = 2}, + [58] = {.lex_state = 54, .external_lex_state = 2}, + [59] = {.lex_state = 55, .external_lex_state = 2}, [60] = {.lex_state = 55, .external_lex_state = 2}, - [61] = {.lex_state = 54, .external_lex_state = 2}, - [62] = {.lex_state = 54, .external_lex_state = 2}, - [63] = {.lex_state = 55, .external_lex_state = 2}, - [64] = {.lex_state = 55, .external_lex_state = 2}, - [65] = {.lex_state = 55, .external_lex_state = 2}, + [61] = {.lex_state = 55, .external_lex_state = 2}, + [62] = {.lex_state = 55, .external_lex_state = 2}, + [63] = {.lex_state = 54, .external_lex_state = 2}, + [64] = {.lex_state = 54, .external_lex_state = 2}, + [65] = {.lex_state = 54, .external_lex_state = 2}, [66] = {.lex_state = 54, .external_lex_state = 2}, [67] = {.lex_state = 54, .external_lex_state = 2}, - [68] = {.lex_state = 55, .external_lex_state = 2}, - [69] = {.lex_state = 55, .external_lex_state = 2}, - [70] = {.lex_state = 54, .external_lex_state = 2}, + [68] = {.lex_state = 54, .external_lex_state = 2}, + [69] = {.lex_state = 54, .external_lex_state = 2}, + [70] = {.lex_state = 55, .external_lex_state = 2}, [71] = {.lex_state = 54, .external_lex_state = 2}, - [72] = {.lex_state = 54, .external_lex_state = 2}, + [72] = {.lex_state = 55, .external_lex_state = 2}, [73] = {.lex_state = 55, .external_lex_state = 2}, - [74] = {.lex_state = 54, .external_lex_state = 2}, + [74] = {.lex_state = 55, .external_lex_state = 2}, [75] = {.lex_state = 55, .external_lex_state = 2}, - [76] = {.lex_state = 54, .external_lex_state = 2}, - [77] = {.lex_state = 54, .external_lex_state = 2}, - [78] = {.lex_state = 54, .external_lex_state = 2}, - [79] = {.lex_state = 55, .external_lex_state = 2}, + [76] = {.lex_state = 55, .external_lex_state = 2}, + [77] = {.lex_state = 55, .external_lex_state = 2}, + [78] = {.lex_state = 55, .external_lex_state = 2}, + [79] = {.lex_state = 54, .external_lex_state = 2}, [80] = {.lex_state = 55, .external_lex_state = 2}, - [81] = {.lex_state = 54, .external_lex_state = 2}, + [81] = {.lex_state = 55, .external_lex_state = 2}, [82] = {.lex_state = 55, .external_lex_state = 2}, - [83] = {.lex_state = 55, .external_lex_state = 2}, + [83] = {.lex_state = 54, .external_lex_state = 2}, [84] = {.lex_state = 55, .external_lex_state = 2}, [85] = {.lex_state = 55, .external_lex_state = 2}, [86] = {.lex_state = 55, .external_lex_state = 2}, @@ -12210,8 +7775,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 55, .external_lex_state = 2}, [410] = {.lex_state = 55, .external_lex_state = 2}, [411] = {.lex_state = 55, .external_lex_state = 2}, - [412] = {.lex_state = 8, .external_lex_state = 2}, - [413] = {.lex_state = 55, .external_lex_state = 2}, + [412] = {.lex_state = 55, .external_lex_state = 2}, + [413] = {.lex_state = 8, .external_lex_state = 2}, [414] = {.lex_state = 55, .external_lex_state = 2}, [415] = {.lex_state = 55, .external_lex_state = 2}, [416] = {.lex_state = 8, .external_lex_state = 2}, @@ -12221,9 +7786,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [420] = {.lex_state = 8, .external_lex_state = 2}, [421] = {.lex_state = 8, .external_lex_state = 2}, [422] = {.lex_state = 55, .external_lex_state = 2}, - [423] = {.lex_state = 55, .external_lex_state = 2}, - [424] = {.lex_state = 8, .external_lex_state = 2}, - [425] = {.lex_state = 55, .external_lex_state = 2}, + [423] = {.lex_state = 8, .external_lex_state = 2}, + [424] = {.lex_state = 55, .external_lex_state = 2}, + [425] = {.lex_state = 8, .external_lex_state = 2}, [426] = {.lex_state = 8, .external_lex_state = 2}, [427] = {.lex_state = 55, .external_lex_state = 2}, [428] = {.lex_state = 55, .external_lex_state = 2}, @@ -12231,7 +7796,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [430] = {.lex_state = 8, .external_lex_state = 2}, [431] = {.lex_state = 8, .external_lex_state = 2}, [432] = {.lex_state = 8, .external_lex_state = 2}, - [433] = {.lex_state = 8, .external_lex_state = 2}, + [433] = {.lex_state = 55, .external_lex_state = 2}, [434] = {.lex_state = 55, .external_lex_state = 2}, [435] = {.lex_state = 55, .external_lex_state = 2}, [436] = {.lex_state = 55, .external_lex_state = 2}, @@ -12276,16 +7841,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 55, .external_lex_state = 2}, [476] = {.lex_state = 55, .external_lex_state = 2}, [477] = {.lex_state = 55, .external_lex_state = 2}, - [478] = {.lex_state = 55, .external_lex_state = 2}, + [478] = {.lex_state = 8, .external_lex_state = 2}, [479] = {.lex_state = 8, .external_lex_state = 2}, - [480] = {.lex_state = 8, .external_lex_state = 2}, - [481] = {.lex_state = 8, .external_lex_state = 2}, + [480] = {.lex_state = 55, .external_lex_state = 2}, + [481] = {.lex_state = 55, .external_lex_state = 2}, [482] = {.lex_state = 8, .external_lex_state = 2}, [483] = {.lex_state = 8, .external_lex_state = 2}, - [484] = {.lex_state = 55, .external_lex_state = 2}, - [485] = {.lex_state = 8, .external_lex_state = 2}, + [484] = {.lex_state = 8, .external_lex_state = 2}, + [485] = {.lex_state = 55, .external_lex_state = 2}, [486] = {.lex_state = 8, .external_lex_state = 2}, - [487] = {.lex_state = 55, .external_lex_state = 2}, + [487] = {.lex_state = 8, .external_lex_state = 2}, [488] = {.lex_state = 8, .external_lex_state = 2}, [489] = {.lex_state = 8, .external_lex_state = 2}, [490] = {.lex_state = 2, .external_lex_state = 3}, @@ -12295,11 +7860,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 2, .external_lex_state = 3}, [495] = {.lex_state = 2, .external_lex_state = 3}, [496] = {.lex_state = 2, .external_lex_state = 3}, - [497] = {.lex_state = 55, .external_lex_state = 2}, + [497] = {.lex_state = 2, .external_lex_state = 3}, [498] = {.lex_state = 2, .external_lex_state = 3}, - [499] = {.lex_state = 2, .external_lex_state = 3}, - [500] = {.lex_state = 2, .external_lex_state = 3}, - [501] = {.lex_state = 55, .external_lex_state = 2}, + [499] = {.lex_state = 55, .external_lex_state = 2}, + [500] = {.lex_state = 55, .external_lex_state = 2}, + [501] = {.lex_state = 2, .external_lex_state = 3}, [502] = {.lex_state = 55, .external_lex_state = 2}, [503] = {.lex_state = 55, .external_lex_state = 2}, [504] = {.lex_state = 2, .external_lex_state = 3}, @@ -12414,27 +7979,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 2, .external_lex_state = 3}, [614] = {.lex_state = 2, .external_lex_state = 3}, [615] = {.lex_state = 2, .external_lex_state = 3}, - [616] = {.lex_state = 5, .external_lex_state = 3}, - [617] = {.lex_state = 7, .external_lex_state = 3}, + [616] = {.lex_state = 7, .external_lex_state = 3}, + [617] = {.lex_state = 5, .external_lex_state = 3}, [618] = {.lex_state = 7, .external_lex_state = 3}, [619] = {.lex_state = 5, .external_lex_state = 3}, [620] = {.lex_state = 5, .external_lex_state = 3}, [621] = {.lex_state = 3, .external_lex_state = 2}, [622] = {.lex_state = 3, .external_lex_state = 2}, - [623] = {.lex_state = 3, .external_lex_state = 2}, - [624] = {.lex_state = 7, .external_lex_state = 3}, + [623] = {.lex_state = 7, .external_lex_state = 3}, + [624] = {.lex_state = 3, .external_lex_state = 2}, [625] = {.lex_state = 7, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 3}, - [627] = {.lex_state = 7, .external_lex_state = 3}, + [626] = {.lex_state = 5, .external_lex_state = 3}, + [627] = {.lex_state = 5, .external_lex_state = 3}, [628] = {.lex_state = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 5, .external_lex_state = 3}, - [631] = {.lex_state = 5, .external_lex_state = 3}, - [632] = {.lex_state = 5, .external_lex_state = 3}, - [633] = {.lex_state = 5, .external_lex_state = 3}, + [629] = {.lex_state = 5, .external_lex_state = 3}, + [630] = {.lex_state = 7, .external_lex_state = 3}, + [631] = {.lex_state = 7, .external_lex_state = 3}, + [632] = {.lex_state = 7, .external_lex_state = 3}, + [633] = {.lex_state = 7, .external_lex_state = 3}, [634] = {.lex_state = 5, .external_lex_state = 3}, - [635] = {.lex_state = 7, .external_lex_state = 3}, - [636] = {.lex_state = 5, .external_lex_state = 3}, + [635] = {.lex_state = 5, .external_lex_state = 3}, + [636] = {.lex_state = 7, .external_lex_state = 3}, [637] = {.lex_state = 5, .external_lex_state = 3}, [638] = {.lex_state = 5, .external_lex_state = 3}, [639] = {.lex_state = 5, .external_lex_state = 3}, @@ -12457,25 +8022,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [656] = {.lex_state = 5, .external_lex_state = 3}, [657] = {.lex_state = 5, .external_lex_state = 3}, [658] = {.lex_state = 5, .external_lex_state = 3}, - [659] = {.lex_state = 5, .external_lex_state = 3}, - [660] = {.lex_state = 7, .external_lex_state = 3}, + [659] = {.lex_state = 6, .external_lex_state = 3}, + [660] = {.lex_state = 5, .external_lex_state = 3}, [661] = {.lex_state = 5, .external_lex_state = 3}, [662] = {.lex_state = 5, .external_lex_state = 3}, [663] = {.lex_state = 5, .external_lex_state = 3}, [664] = {.lex_state = 5, .external_lex_state = 3}, [665] = {.lex_state = 5, .external_lex_state = 3}, - [666] = {.lex_state = 6, .external_lex_state = 3}, - [667] = {.lex_state = 5, .external_lex_state = 3}, + [666] = {.lex_state = 5, .external_lex_state = 3}, + [667] = {.lex_state = 7, .external_lex_state = 3}, [668] = {.lex_state = 5, .external_lex_state = 3}, [669] = {.lex_state = 5, .external_lex_state = 3}, [670] = {.lex_state = 5, .external_lex_state = 3}, [671] = {.lex_state = 5, .external_lex_state = 3}, - [672] = {.lex_state = 7, .external_lex_state = 3}, + [672] = {.lex_state = 5, .external_lex_state = 3}, [673] = {.lex_state = 5, .external_lex_state = 3}, [674] = {.lex_state = 5, .external_lex_state = 3}, [675] = {.lex_state = 5, .external_lex_state = 3}, [676] = {.lex_state = 5, .external_lex_state = 3}, - [677] = {.lex_state = 5, .external_lex_state = 3}, + [677] = {.lex_state = 7, .external_lex_state = 3}, [678] = {.lex_state = 5, .external_lex_state = 3}, [679] = {.lex_state = 5, .external_lex_state = 3}, [680] = {.lex_state = 5, .external_lex_state = 3}, @@ -12486,7 +8051,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [685] = {.lex_state = 5, .external_lex_state = 3}, [686] = {.lex_state = 5, .external_lex_state = 3}, [687] = {.lex_state = 5, .external_lex_state = 3}, - [688] = {.lex_state = 7, .external_lex_state = 3}, + [688] = {.lex_state = 5, .external_lex_state = 3}, [689] = {.lex_state = 5, .external_lex_state = 3}, [690] = {.lex_state = 5, .external_lex_state = 3}, [691] = {.lex_state = 5, .external_lex_state = 3}, @@ -12531,17 +8096,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [730] = {.lex_state = 5, .external_lex_state = 3}, [731] = {.lex_state = 5, .external_lex_state = 3}, [732] = {.lex_state = 5, .external_lex_state = 3}, - [733] = {.lex_state = 5, .external_lex_state = 3}, + [733] = {.lex_state = 7, .external_lex_state = 3}, [734] = {.lex_state = 5, .external_lex_state = 3}, [735] = {.lex_state = 5, .external_lex_state = 3}, [736] = {.lex_state = 5, .external_lex_state = 3}, - [737] = {.lex_state = 55, .external_lex_state = 2}, + [737] = {.lex_state = 5, .external_lex_state = 3}, [738] = {.lex_state = 5, .external_lex_state = 3}, - [739] = {.lex_state = 5, .external_lex_state = 3}, + [739] = {.lex_state = 55, .external_lex_state = 2}, [740] = {.lex_state = 5, .external_lex_state = 3}, [741] = {.lex_state = 5, .external_lex_state = 3}, - [742] = {.lex_state = 5, .external_lex_state = 3}, - [743] = {.lex_state = 55, .external_lex_state = 2}, + [742] = {.lex_state = 55, .external_lex_state = 2}, + [743] = {.lex_state = 5, .external_lex_state = 3}, [744] = {.lex_state = 5, .external_lex_state = 3}, [745] = {.lex_state = 5, .external_lex_state = 3}, [746] = {.lex_state = 5, .external_lex_state = 3}, @@ -12551,59 +8116,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [750] = {.lex_state = 5, .external_lex_state = 3}, [751] = {.lex_state = 5, .external_lex_state = 3}, [752] = {.lex_state = 5, .external_lex_state = 3}, - [753] = {.lex_state = 5, .external_lex_state = 3}, + [753] = {.lex_state = 7, .external_lex_state = 3}, [754] = {.lex_state = 5, .external_lex_state = 3}, [755] = {.lex_state = 5, .external_lex_state = 3}, [756] = {.lex_state = 5, .external_lex_state = 3}, [757] = {.lex_state = 5, .external_lex_state = 3}, - [758] = {.lex_state = 5, .external_lex_state = 3}, + [758] = {.lex_state = 55, .external_lex_state = 2}, [759] = {.lex_state = 5, .external_lex_state = 3}, [760] = {.lex_state = 5, .external_lex_state = 3}, [761] = {.lex_state = 5, .external_lex_state = 3}, - [762] = {.lex_state = 5, .external_lex_state = 3}, + [762] = {.lex_state = 55, .external_lex_state = 2}, [763] = {.lex_state = 5, .external_lex_state = 3}, [764] = {.lex_state = 5, .external_lex_state = 3}, [765] = {.lex_state = 5, .external_lex_state = 3}, [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 55, .external_lex_state = 2}, + [767] = {.lex_state = 5, .external_lex_state = 3}, [768] = {.lex_state = 5, .external_lex_state = 3}, [769] = {.lex_state = 5, .external_lex_state = 3}, [770] = {.lex_state = 5, .external_lex_state = 3}, [771] = {.lex_state = 5, .external_lex_state = 3}, [772] = {.lex_state = 5, .external_lex_state = 3}, [773] = {.lex_state = 5, .external_lex_state = 3}, - [774] = {.lex_state = 55, .external_lex_state = 2}, + [774] = {.lex_state = 5, .external_lex_state = 3}, [775] = {.lex_state = 5, .external_lex_state = 3}, - [776] = {.lex_state = 7, .external_lex_state = 3}, - [777] = {.lex_state = 7, .external_lex_state = 3}, + [776] = {.lex_state = 5, .external_lex_state = 3}, + [777] = {.lex_state = 5, .external_lex_state = 3}, [778] = {.lex_state = 7, .external_lex_state = 3}, - [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 2, .external_lex_state = 3}, - [781] = {.lex_state = 7, .external_lex_state = 3}, - [782] = {.lex_state = 5, .external_lex_state = 3}, - [783] = {.lex_state = 5, .external_lex_state = 3}, + [779] = {.lex_state = 7, .external_lex_state = 3}, + [780] = {.lex_state = 7, .external_lex_state = 3}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 7, .external_lex_state = 3}, [784] = {.lex_state = 7, .external_lex_state = 3}, - [785] = {.lex_state = 7, .external_lex_state = 3}, + [785] = {.lex_state = 5, .external_lex_state = 3}, [786] = {.lex_state = 7, .external_lex_state = 3}, [787] = {.lex_state = 7, .external_lex_state = 3}, [788] = {.lex_state = 7, .external_lex_state = 3}, - [789] = {.lex_state = 55, .external_lex_state = 2}, + [789] = {.lex_state = 7, .external_lex_state = 3}, [790] = {.lex_state = 7, .external_lex_state = 3}, [791] = {.lex_state = 7, .external_lex_state = 3}, [792] = {.lex_state = 7, .external_lex_state = 3}, - [793] = {.lex_state = 7, .external_lex_state = 3}, + [793] = {.lex_state = 55, .external_lex_state = 2}, [794] = {.lex_state = 55, .external_lex_state = 2}, - [795] = {.lex_state = 5, .external_lex_state = 3}, - [796] = {.lex_state = 5, .external_lex_state = 3}, - [797] = {.lex_state = 5, .external_lex_state = 3}, - [798] = {.lex_state = 5, .external_lex_state = 3}, + [795] = {.lex_state = 7, .external_lex_state = 3}, + [796] = {.lex_state = 7, .external_lex_state = 3}, + [797] = {.lex_state = 7, .external_lex_state = 3}, + [798] = {.lex_state = 7, .external_lex_state = 3}, [799] = {.lex_state = 5, .external_lex_state = 3}, - [800] = {.lex_state = 7, .external_lex_state = 3}, - [801] = {.lex_state = 2, .external_lex_state = 3}, + [800] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 5, .external_lex_state = 3}, [802] = {.lex_state = 5, .external_lex_state = 3}, [803] = {.lex_state = 5, .external_lex_state = 3}, - [804] = {.lex_state = 2, .external_lex_state = 3}, - [805] = {.lex_state = 7, .external_lex_state = 3}, + [804] = {.lex_state = 5, .external_lex_state = 3}, + [805] = {.lex_state = 2, .external_lex_state = 3}, [806] = {.lex_state = 5, .external_lex_state = 3}, [807] = {.lex_state = 5, .external_lex_state = 3}, [808] = {.lex_state = 5, .external_lex_state = 3}, @@ -12618,7 +8183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 5, .external_lex_state = 3}, [818] = {.lex_state = 5, .external_lex_state = 3}, [819] = {.lex_state = 5, .external_lex_state = 3}, - [820] = {.lex_state = 2, .external_lex_state = 3}, + [820] = {.lex_state = 5, .external_lex_state = 3}, [821] = {.lex_state = 5, .external_lex_state = 3}, [822] = {.lex_state = 5, .external_lex_state = 3}, [823] = {.lex_state = 5, .external_lex_state = 3}, @@ -12631,40 +8196,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [830] = {.lex_state = 5, .external_lex_state = 3}, [831] = {.lex_state = 5, .external_lex_state = 3}, [832] = {.lex_state = 5, .external_lex_state = 3}, - [833] = {.lex_state = 5, .external_lex_state = 3}, + [833] = {.lex_state = 2, .external_lex_state = 3}, [834] = {.lex_state = 5, .external_lex_state = 3}, - [835] = {.lex_state = 5, .external_lex_state = 3}, - [836] = {.lex_state = 2, .external_lex_state = 3}, + [835] = {.lex_state = 2, .external_lex_state = 3}, + [836] = {.lex_state = 5, .external_lex_state = 3}, [837] = {.lex_state = 5, .external_lex_state = 3}, [838] = {.lex_state = 5, .external_lex_state = 3}, [839] = {.lex_state = 5, .external_lex_state = 3}, - [840] = {.lex_state = 2, .external_lex_state = 3}, - [841] = {.lex_state = 2, .external_lex_state = 3}, + [840] = {.lex_state = 5, .external_lex_state = 3}, + [841] = {.lex_state = 5, .external_lex_state = 3}, [842] = {.lex_state = 5, .external_lex_state = 3}, [843] = {.lex_state = 5, .external_lex_state = 3}, - [844] = {.lex_state = 5, .external_lex_state = 3}, - [845] = {.lex_state = 5, .external_lex_state = 3}, + [844] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 2, .external_lex_state = 3}, [846] = {.lex_state = 5, .external_lex_state = 3}, [847] = {.lex_state = 5, .external_lex_state = 3}, [848] = {.lex_state = 5, .external_lex_state = 3}, - [849] = {.lex_state = 5, .external_lex_state = 3}, + [849] = {.lex_state = 2, .external_lex_state = 3}, [850] = {.lex_state = 5, .external_lex_state = 3}, [851] = {.lex_state = 5, .external_lex_state = 3}, [852] = {.lex_state = 5, .external_lex_state = 3}, - [853] = {.lex_state = 5, .external_lex_state = 3}, + [853] = {.lex_state = 2, .external_lex_state = 3}, [854] = {.lex_state = 5, .external_lex_state = 3}, - [855] = {.lex_state = 5, .external_lex_state = 3}, + [855] = {.lex_state = 2, .external_lex_state = 3}, [856] = {.lex_state = 5, .external_lex_state = 3}, [857] = {.lex_state = 5, .external_lex_state = 3}, [858] = {.lex_state = 5, .external_lex_state = 3}, [859] = {.lex_state = 5, .external_lex_state = 3}, - [860] = {.lex_state = 2, .external_lex_state = 3}, - [861] = {.lex_state = 5, .external_lex_state = 3}, + [860] = {.lex_state = 5, .external_lex_state = 3}, + [861] = {.lex_state = 2, .external_lex_state = 3}, [862] = {.lex_state = 5, .external_lex_state = 3}, [863] = {.lex_state = 5, .external_lex_state = 3}, - [864] = {.lex_state = 2, .external_lex_state = 3}, + [864] = {.lex_state = 5, .external_lex_state = 3}, [865] = {.lex_state = 5, .external_lex_state = 3}, - [866] = {.lex_state = 2, .external_lex_state = 3}, + [866] = {.lex_state = 5, .external_lex_state = 3}, [867] = {.lex_state = 5, .external_lex_state = 3}, [868] = {.lex_state = 5, .external_lex_state = 3}, [869] = {.lex_state = 5, .external_lex_state = 3}, @@ -12672,11 +8237,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [871] = {.lex_state = 5, .external_lex_state = 3}, [872] = {.lex_state = 5, .external_lex_state = 3}, [873] = {.lex_state = 5, .external_lex_state = 3}, - [874] = {.lex_state = 2, .external_lex_state = 3}, + [874] = {.lex_state = 5, .external_lex_state = 3}, [875] = {.lex_state = 5, .external_lex_state = 3}, [876] = {.lex_state = 5, .external_lex_state = 3}, [877] = {.lex_state = 5, .external_lex_state = 3}, - [878] = {.lex_state = 2, .external_lex_state = 3}, + [878] = {.lex_state = 5, .external_lex_state = 3}, [879] = {.lex_state = 5, .external_lex_state = 3}, [880] = {.lex_state = 5, .external_lex_state = 3}, [881] = {.lex_state = 5, .external_lex_state = 3}, @@ -12692,7 +8257,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [891] = {.lex_state = 5, .external_lex_state = 3}, [892] = {.lex_state = 5, .external_lex_state = 3}, [893] = {.lex_state = 5, .external_lex_state = 3}, - [894] = {.lex_state = 2, .external_lex_state = 3}, + [894] = {.lex_state = 5, .external_lex_state = 3}, [895] = {.lex_state = 5, .external_lex_state = 3}, [896] = {.lex_state = 5, .external_lex_state = 3}, [897] = {.lex_state = 5, .external_lex_state = 3}, @@ -12701,46 +8266,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 5, .external_lex_state = 3}, [901] = {.lex_state = 5, .external_lex_state = 3}, [902] = {.lex_state = 5, .external_lex_state = 3}, - [903] = {.lex_state = 5, .external_lex_state = 3}, + [903] = {.lex_state = 2, .external_lex_state = 3}, [904] = {.lex_state = 5, .external_lex_state = 3}, - [905] = {.lex_state = 5, .external_lex_state = 3}, + [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 5, .external_lex_state = 3}, [907] = {.lex_state = 5, .external_lex_state = 3}, [908] = {.lex_state = 5, .external_lex_state = 3}, - [909] = {.lex_state = 2, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, - [911] = {.lex_state = 5, .external_lex_state = 3}, + [909] = {.lex_state = 5, .external_lex_state = 3}, + [910] = {.lex_state = 5, .external_lex_state = 3}, + [911] = {.lex_state = 2, .external_lex_state = 3}, [912] = {.lex_state = 5, .external_lex_state = 3}, [913] = {.lex_state = 5, .external_lex_state = 3}, - [914] = {.lex_state = 5, .external_lex_state = 3}, - [915] = {.lex_state = 5, .external_lex_state = 3}, + [914] = {.lex_state = 2, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, [916] = {.lex_state = 5, .external_lex_state = 3}, [917] = {.lex_state = 2, .external_lex_state = 3}, [918] = {.lex_state = 5, .external_lex_state = 3}, [919] = {.lex_state = 5, .external_lex_state = 3}, - [920] = {.lex_state = 5, .external_lex_state = 3}, + [920] = {.lex_state = 2, .external_lex_state = 3}, [921] = {.lex_state = 5, .external_lex_state = 3}, [922] = {.lex_state = 2, .external_lex_state = 3}, [923] = {.lex_state = 5, .external_lex_state = 3}, - [924] = {.lex_state = 2, .external_lex_state = 3}, + [924] = {.lex_state = 5, .external_lex_state = 3}, [925] = {.lex_state = 5, .external_lex_state = 3}, [926] = {.lex_state = 5, .external_lex_state = 3}, [927] = {.lex_state = 5, .external_lex_state = 3}, [928] = {.lex_state = 5, .external_lex_state = 3}, [929] = {.lex_state = 5, .external_lex_state = 3}, - [930] = {.lex_state = 5, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 2, .external_lex_state = 3}, + [931] = {.lex_state = 5, .external_lex_state = 3}, [932] = {.lex_state = 5, .external_lex_state = 3}, [933] = {.lex_state = 5, .external_lex_state = 3}, [934] = {.lex_state = 5, .external_lex_state = 3}, [935] = {.lex_state = 5, .external_lex_state = 3}, - [936] = {.lex_state = 5, .external_lex_state = 3}, - [937] = {.lex_state = 2, .external_lex_state = 3}, - [938] = {.lex_state = 2, .external_lex_state = 3}, + [936] = {.lex_state = 2, .external_lex_state = 3}, + [937] = {.lex_state = 5, .external_lex_state = 3}, + [938] = {.lex_state = 5, .external_lex_state = 3}, [939] = {.lex_state = 5, .external_lex_state = 3}, - [940] = {.lex_state = 2, .external_lex_state = 3}, - [941] = {.lex_state = 2, .external_lex_state = 3}, - [942] = {.lex_state = 5, .external_lex_state = 3}, + [940] = {.lex_state = 5, .external_lex_state = 3}, + [941] = {.lex_state = 5, .external_lex_state = 3}, + [942] = {.lex_state = 2, .external_lex_state = 3}, [943] = {.lex_state = 2, .external_lex_state = 3}, [944] = {.lex_state = 2, .external_lex_state = 3}, [945] = {.lex_state = 2, .external_lex_state = 3}, @@ -12761,52 +8326,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [960] = {.lex_state = 2, .external_lex_state = 3}, [961] = {.lex_state = 2, .external_lex_state = 3}, [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 9, .external_lex_state = 3}, + [963] = {.lex_state = 2, .external_lex_state = 3}, [964] = {.lex_state = 9, .external_lex_state = 3}, [965] = {.lex_state = 9, .external_lex_state = 3}, - [966] = {.lex_state = 13, .external_lex_state = 3}, + [966] = {.lex_state = 9, .external_lex_state = 3}, [967] = {.lex_state = 13, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, + [968] = {.lex_state = 13, .external_lex_state = 3}, [969] = {.lex_state = 13, .external_lex_state = 3}, [970] = {.lex_state = 13, .external_lex_state = 3}, - [971] = {.lex_state = 13, .external_lex_state = 3}, - [972] = {.lex_state = 9, .external_lex_state = 3}, - [973] = {.lex_state = 13, .external_lex_state = 3}, + [971] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 13, .external_lex_state = 3}, + [973] = {.lex_state = 2, .external_lex_state = 3}, [974] = {.lex_state = 13, .external_lex_state = 3}, [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 13, .external_lex_state = 3}, - [977] = {.lex_state = 2, .external_lex_state = 3}, + [976] = {.lex_state = 9, .external_lex_state = 3}, + [977] = {.lex_state = 13, .external_lex_state = 3}, [978] = {.lex_state = 13, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, + [979] = {.lex_state = 13, .external_lex_state = 3}, [980] = {.lex_state = 2, .external_lex_state = 3}, [981] = {.lex_state = 2, .external_lex_state = 3}, [982] = {.lex_state = 2, .external_lex_state = 3}, [983] = {.lex_state = 2, .external_lex_state = 3}, [984] = {.lex_state = 2, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 7, .external_lex_state = 3}, + [985] = {.lex_state = 7, .external_lex_state = 3}, + [986] = {.lex_state = 13, .external_lex_state = 3}, [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 2, .external_lex_state = 3}, [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 7, .external_lex_state = 3}, + [990] = {.lex_state = 2, .external_lex_state = 3}, [991] = {.lex_state = 2, .external_lex_state = 3}, [992] = {.lex_state = 2, .external_lex_state = 3}, [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, + [994] = {.lex_state = 7, .external_lex_state = 3}, [995] = {.lex_state = 2, .external_lex_state = 3}, [996] = {.lex_state = 2, .external_lex_state = 3}, [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 2, .external_lex_state = 3}, [999] = {.lex_state = 2, .external_lex_state = 3}, [1000] = {.lex_state = 2, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 9, .external_lex_state = 3}, [1002] = {.lex_state = 2, .external_lex_state = 3}, [1003] = {.lex_state = 2, .external_lex_state = 3}, [1004] = {.lex_state = 2, .external_lex_state = 3}, [1005] = {.lex_state = 2, .external_lex_state = 3}, [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 9, .external_lex_state = 3}, - [1008] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1008] = {.lex_state = 9, .external_lex_state = 3}, [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 2, .external_lex_state = 3}, [1011] = {.lex_state = 2, .external_lex_state = 3}, @@ -12824,7 +8389,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 2, .external_lex_state = 3}, [1025] = {.lex_state = 2, .external_lex_state = 3}, - [1026] = {.lex_state = 9, .external_lex_state = 3}, + [1026] = {.lex_state = 2, .external_lex_state = 3}, [1027] = {.lex_state = 2, .external_lex_state = 3}, [1028] = {.lex_state = 2, .external_lex_state = 3}, [1029] = {.lex_state = 2, .external_lex_state = 3}, @@ -12833,12 +8398,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1032] = {.lex_state = 2, .external_lex_state = 3}, [1033] = {.lex_state = 2, .external_lex_state = 3}, [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 9, .external_lex_state = 3}, + [1035] = {.lex_state = 2, .external_lex_state = 3}, [1036] = {.lex_state = 2, .external_lex_state = 3}, [1037] = {.lex_state = 2, .external_lex_state = 3}, [1038] = {.lex_state = 2, .external_lex_state = 3}, [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 9, .external_lex_state = 3}, + [1040] = {.lex_state = 2, .external_lex_state = 3}, [1041] = {.lex_state = 2, .external_lex_state = 3}, [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, @@ -12889,7 +8454,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 2, .external_lex_state = 3}, + [1091] = {.lex_state = 9, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, @@ -12910,12 +8475,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 9, .external_lex_state = 3}, + [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 9, .external_lex_state = 3}, + [1117] = {.lex_state = 2, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, @@ -12929,7 +8494,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 9, .external_lex_state = 3}, + [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, @@ -12956,25 +8521,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1155] = {.lex_state = 2, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, + [1158] = {.lex_state = 9, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, [1160] = {.lex_state = 2, .external_lex_state = 3}, [1161] = {.lex_state = 2, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1164] = {.lex_state = 9, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 9, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 9, .external_lex_state = 3}, - [1173] = {.lex_state = 9, .external_lex_state = 3}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 9, .external_lex_state = 3}, - [1176] = {.lex_state = 9, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, [1177] = {.lex_state = 9, .external_lex_state = 3}, [1178] = {.lex_state = 9, .external_lex_state = 3}, [1179] = {.lex_state = 9, .external_lex_state = 3}, @@ -12992,28 +8557,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1191] = {.lex_state = 9, .external_lex_state = 3}, [1192] = {.lex_state = 9, .external_lex_state = 3}, [1193] = {.lex_state = 9, .external_lex_state = 3}, - [1194] = {.lex_state = 13, .external_lex_state = 3}, - [1195] = {.lex_state = 13, .external_lex_state = 3}, + [1194] = {.lex_state = 9, .external_lex_state = 3}, + [1195] = {.lex_state = 9, .external_lex_state = 3}, [1196] = {.lex_state = 13, .external_lex_state = 3}, [1197] = {.lex_state = 9, .external_lex_state = 3}, - [1198] = {.lex_state = 9, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 6, .external_lex_state = 3}, - [1203] = {.lex_state = 6, .external_lex_state = 3}, - [1204] = {.lex_state = 6, .external_lex_state = 3}, + [1198] = {.lex_state = 13, .external_lex_state = 3}, + [1199] = {.lex_state = 9, .external_lex_state = 3}, + [1200] = {.lex_state = 9, .external_lex_state = 3}, + [1201] = {.lex_state = 13, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1203] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 2, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, - [1206] = {.lex_state = 13, .external_lex_state = 3}, + [1206] = {.lex_state = 2, .external_lex_state = 3}, [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 2, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 6, .external_lex_state = 3}, + [1209] = {.lex_state = 6, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, - [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 9, .external_lex_state = 3}, - [1214] = {.lex_state = 9, .external_lex_state = 3}, - [1215] = {.lex_state = 9, .external_lex_state = 3}, + [1211] = {.lex_state = 6, .external_lex_state = 3}, + [1212] = {.lex_state = 6, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 13, .external_lex_state = 3}, [1216] = {.lex_state = 9, .external_lex_state = 3}, [1217] = {.lex_state = 9, .external_lex_state = 3}, [1218] = {.lex_state = 9, .external_lex_state = 3}, @@ -13043,91 +8608,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 9, .external_lex_state = 3}, [1243] = {.lex_state = 9, .external_lex_state = 3}, [1244] = {.lex_state = 9, .external_lex_state = 3}, - [1245] = {.lex_state = 13, .external_lex_state = 3}, - [1246] = {.lex_state = 13, .external_lex_state = 3}, - [1247] = {.lex_state = 13, .external_lex_state = 3}, + [1245] = {.lex_state = 9, .external_lex_state = 3}, + [1246] = {.lex_state = 9, .external_lex_state = 3}, + [1247] = {.lex_state = 9, .external_lex_state = 3}, [1248] = {.lex_state = 13, .external_lex_state = 3}, - [1249] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 13, .external_lex_state = 3}, [1250] = {.lex_state = 13, .external_lex_state = 3}, - [1251] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 13, .external_lex_state = 3}, [1252] = {.lex_state = 13, .external_lex_state = 3}, [1253] = {.lex_state = 13, .external_lex_state = 3}, [1254] = {.lex_state = 13, .external_lex_state = 3}, [1255] = {.lex_state = 13, .external_lex_state = 3}, [1256] = {.lex_state = 13, .external_lex_state = 3}, - [1257] = {.lex_state = 13, .external_lex_state = 3}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, [1258] = {.lex_state = 13, .external_lex_state = 3}, - [1259] = {.lex_state = 2, .external_lex_state = 3}, + [1259] = {.lex_state = 13, .external_lex_state = 3}, [1260] = {.lex_state = 13, .external_lex_state = 3}, [1261] = {.lex_state = 13, .external_lex_state = 3}, - [1262] = {.lex_state = 9, .external_lex_state = 3}, - [1263] = {.lex_state = 9, .external_lex_state = 3}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 10, .external_lex_state = 3}, - [1267] = {.lex_state = 0, .external_lex_state = 3}, + [1262] = {.lex_state = 13, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 13, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 13, .external_lex_state = 3}, + [1267] = {.lex_state = 2, .external_lex_state = 3}, [1268] = {.lex_state = 7, .external_lex_state = 3}, [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, + [1270] = {.lex_state = 2, .external_lex_state = 3}, [1271] = {.lex_state = 2, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, - [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 10, .external_lex_state = 3}, - [1276] = {.lex_state = 2, .external_lex_state = 3}, - [1277] = {.lex_state = 10, .external_lex_state = 3}, - [1278] = {.lex_state = 10, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1273] = {.lex_state = 10, .external_lex_state = 3}, + [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1275] = {.lex_state = 9, .external_lex_state = 3}, + [1276] = {.lex_state = 0, .external_lex_state = 3}, + [1277] = {.lex_state = 13, .external_lex_state = 3}, + [1278] = {.lex_state = 9, .external_lex_state = 3}, + [1279] = {.lex_state = 7, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, - [1282] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 10, .external_lex_state = 3}, [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, [1285] = {.lex_state = 2, .external_lex_state = 3}, - [1286] = {.lex_state = 2, .external_lex_state = 3}, - [1287] = {.lex_state = 2, .external_lex_state = 3}, + [1286] = {.lex_state = 7, .external_lex_state = 3}, + [1287] = {.lex_state = 13, .external_lex_state = 3}, [1288] = {.lex_state = 7, .external_lex_state = 3}, - [1289] = {.lex_state = 13, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1289] = {.lex_state = 7, .external_lex_state = 3}, + [1290] = {.lex_state = 10, .external_lex_state = 3}, [1291] = {.lex_state = 10, .external_lex_state = 3}, - [1292] = {.lex_state = 7, .external_lex_state = 3}, - [1293] = {.lex_state = 7, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, + [1292] = {.lex_state = 2, .external_lex_state = 3}, + [1293] = {.lex_state = 2, .external_lex_state = 3}, + [1294] = {.lex_state = 2, .external_lex_state = 3}, [1295] = {.lex_state = 2, .external_lex_state = 3}, - [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 10, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, - [1298] = {.lex_state = 10, .external_lex_state = 3}, - [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1298] = {.lex_state = 7, .external_lex_state = 3}, + [1299] = {.lex_state = 10, .external_lex_state = 3}, [1300] = {.lex_state = 10, .external_lex_state = 3}, - [1301] = {.lex_state = 10, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, [1303] = {.lex_state = 2, .external_lex_state = 3}, - [1304] = {.lex_state = 2, .external_lex_state = 3}, - [1305] = {.lex_state = 10, .external_lex_state = 3}, - [1306] = {.lex_state = 10, .external_lex_state = 3}, + [1304] = {.lex_state = 10, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, [1307] = {.lex_state = 2, .external_lex_state = 3}, [1308] = {.lex_state = 2, .external_lex_state = 3}, - [1309] = {.lex_state = 10, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 10, .external_lex_state = 3}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, - [1313] = {.lex_state = 10, .external_lex_state = 3}, + [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 10, .external_lex_state = 3}, - [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 10, .external_lex_state = 3}, [1316] = {.lex_state = 0, .external_lex_state = 3}, [1317] = {.lex_state = 0, .external_lex_state = 3}, - [1318] = {.lex_state = 2, .external_lex_state = 3}, - [1319] = {.lex_state = 0, .external_lex_state = 3}, + [1318] = {.lex_state = 0, .external_lex_state = 3}, + [1319] = {.lex_state = 10, .external_lex_state = 3}, [1320] = {.lex_state = 0, .external_lex_state = 3}, [1321] = {.lex_state = 2, .external_lex_state = 3}, [1322] = {.lex_state = 2, .external_lex_state = 3}, - [1323] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 10, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, [1325] = {.lex_state = 2, .external_lex_state = 3}, - [1326] = {.lex_state = 2, .external_lex_state = 3}, - [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1326] = {.lex_state = 10, .external_lex_state = 3}, + [1327] = {.lex_state = 10, .external_lex_state = 3}, [1328] = {.lex_state = 2, .external_lex_state = 3}, - [1329] = {.lex_state = 2, .external_lex_state = 3}, + [1329] = {.lex_state = 10, .external_lex_state = 3}, [1330] = {.lex_state = 2, .external_lex_state = 3}, [1331] = {.lex_state = 2, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 3}, @@ -13135,7 +8700,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 2, .external_lex_state = 3}, [1335] = {.lex_state = 2, .external_lex_state = 3}, [1336] = {.lex_state = 2, .external_lex_state = 3}, - [1337] = {.lex_state = 10, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 3}, [1338] = {.lex_state = 2, .external_lex_state = 3}, [1339] = {.lex_state = 2, .external_lex_state = 3}, [1340] = {.lex_state = 2, .external_lex_state = 3}, @@ -13158,467 +8723,467 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1357] = {.lex_state = 2, .external_lex_state = 3}, [1358] = {.lex_state = 2, .external_lex_state = 3}, [1359] = {.lex_state = 2, .external_lex_state = 3}, - [1360] = {.lex_state = 7, .external_lex_state = 3}, - [1361] = {.lex_state = 9, .external_lex_state = 3}, + [1360] = {.lex_state = 2, .external_lex_state = 3}, + [1361] = {.lex_state = 6, .external_lex_state = 3}, [1362] = {.lex_state = 2, .external_lex_state = 3}, - [1363] = {.lex_state = 55, .external_lex_state = 3}, + [1363] = {.lex_state = 2, .external_lex_state = 3}, [1364] = {.lex_state = 2, .external_lex_state = 3}, [1365] = {.lex_state = 2, .external_lex_state = 3}, - [1366] = {.lex_state = 7, .external_lex_state = 3}, - [1367] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 0, .external_lex_state = 3}, [1368] = {.lex_state = 2, .external_lex_state = 3}, - [1369] = {.lex_state = 9, .external_lex_state = 3}, + [1369] = {.lex_state = 0, .external_lex_state = 3}, [1370] = {.lex_state = 2, .external_lex_state = 3}, - [1371] = {.lex_state = 2, .external_lex_state = 3}, - [1372] = {.lex_state = 2, .external_lex_state = 3}, - [1373] = {.lex_state = 2, .external_lex_state = 3}, + [1371] = {.lex_state = 0, .external_lex_state = 3}, + [1372] = {.lex_state = 9, .external_lex_state = 3}, + [1373] = {.lex_state = 9, .external_lex_state = 3}, [1374] = {.lex_state = 2, .external_lex_state = 3}, [1375] = {.lex_state = 9, .external_lex_state = 3}, [1376] = {.lex_state = 2, .external_lex_state = 3}, [1377] = {.lex_state = 2, .external_lex_state = 3}, - [1378] = {.lex_state = 6, .external_lex_state = 3}, - [1379] = {.lex_state = 2, .external_lex_state = 3}, + [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1379] = {.lex_state = 7, .external_lex_state = 3}, [1380] = {.lex_state = 55, .external_lex_state = 3}, [1381] = {.lex_state = 2, .external_lex_state = 3}, [1382] = {.lex_state = 2, .external_lex_state = 3}, [1383] = {.lex_state = 2, .external_lex_state = 3}, - [1384] = {.lex_state = 9, .external_lex_state = 3}, + [1384] = {.lex_state = 2, .external_lex_state = 3}, [1385] = {.lex_state = 2, .external_lex_state = 3}, [1386] = {.lex_state = 2, .external_lex_state = 3}, - [1387] = {.lex_state = 2, .external_lex_state = 3}, + [1387] = {.lex_state = 6, .external_lex_state = 3}, [1388] = {.lex_state = 2, .external_lex_state = 3}, - [1389] = {.lex_state = 2, .external_lex_state = 3}, - [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 9, .external_lex_state = 3}, + [1390] = {.lex_state = 9, .external_lex_state = 3}, [1391] = {.lex_state = 2, .external_lex_state = 3}, [1392] = {.lex_state = 2, .external_lex_state = 3}, - [1393] = {.lex_state = 2, .external_lex_state = 3}, - [1394] = {.lex_state = 0, .external_lex_state = 3}, - [1395] = {.lex_state = 6, .external_lex_state = 3}, + [1393] = {.lex_state = 6, .external_lex_state = 3}, + [1394] = {.lex_state = 2, .external_lex_state = 3}, + [1395] = {.lex_state = 2, .external_lex_state = 3}, [1396] = {.lex_state = 2, .external_lex_state = 3}, - [1397] = {.lex_state = 2, .external_lex_state = 3}, + [1397] = {.lex_state = 6, .external_lex_state = 3}, [1398] = {.lex_state = 2, .external_lex_state = 3}, - [1399] = {.lex_state = 2, .external_lex_state = 3}, - [1400] = {.lex_state = 9, .external_lex_state = 3}, - [1401] = {.lex_state = 2, .external_lex_state = 3}, - [1402] = {.lex_state = 2, .external_lex_state = 3}, - [1403] = {.lex_state = 0, .external_lex_state = 3}, + [1399] = {.lex_state = 0, .external_lex_state = 3}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, + [1401] = {.lex_state = 7, .external_lex_state = 3}, + [1402] = {.lex_state = 7, .external_lex_state = 3}, + [1403] = {.lex_state = 2, .external_lex_state = 3}, [1404] = {.lex_state = 2, .external_lex_state = 3}, [1405] = {.lex_state = 2, .external_lex_state = 3}, - [1406] = {.lex_state = 0, .external_lex_state = 3}, - [1407] = {.lex_state = 0, .external_lex_state = 3}, - [1408] = {.lex_state = 0, .external_lex_state = 3}, + [1406] = {.lex_state = 2, .external_lex_state = 3}, + [1407] = {.lex_state = 2, .external_lex_state = 3}, + [1408] = {.lex_state = 2, .external_lex_state = 3}, [1409] = {.lex_state = 2, .external_lex_state = 3}, - [1410] = {.lex_state = 2, .external_lex_state = 3}, + [1410] = {.lex_state = 7, .external_lex_state = 3}, [1411] = {.lex_state = 2, .external_lex_state = 3}, - [1412] = {.lex_state = 0, .external_lex_state = 3}, + [1412] = {.lex_state = 2, .external_lex_state = 3}, [1413] = {.lex_state = 2, .external_lex_state = 3}, - [1414] = {.lex_state = 6, .external_lex_state = 3}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, [1415] = {.lex_state = 2, .external_lex_state = 3}, - [1416] = {.lex_state = 0, .external_lex_state = 3}, - [1417] = {.lex_state = 6, .external_lex_state = 3}, - [1418] = {.lex_state = 9, .external_lex_state = 3}, - [1419] = {.lex_state = 0, .external_lex_state = 3}, - [1420] = {.lex_state = 0, .external_lex_state = 3}, - [1421] = {.lex_state = 2, .external_lex_state = 3}, - [1422] = {.lex_state = 2, .external_lex_state = 3}, - [1423] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, + [1417] = {.lex_state = 2, .external_lex_state = 3}, + [1418] = {.lex_state = 2, .external_lex_state = 3}, + [1419] = {.lex_state = 2, .external_lex_state = 3}, + [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 9, .external_lex_state = 3}, + [1422] = {.lex_state = 0, .external_lex_state = 3}, + [1423] = {.lex_state = 0, .external_lex_state = 3}, [1424] = {.lex_state = 2, .external_lex_state = 3}, [1425] = {.lex_state = 2, .external_lex_state = 3}, - [1426] = {.lex_state = 2, .external_lex_state = 3}, - [1427] = {.lex_state = 2, .external_lex_state = 3}, + [1426] = {.lex_state = 55, .external_lex_state = 3}, + [1427] = {.lex_state = 0, .external_lex_state = 3}, [1428] = {.lex_state = 2, .external_lex_state = 3}, [1429] = {.lex_state = 2, .external_lex_state = 3}, [1430] = {.lex_state = 2, .external_lex_state = 3}, [1431] = {.lex_state = 2, .external_lex_state = 3}, - [1432] = {.lex_state = 2, .external_lex_state = 3}, - [1433] = {.lex_state = 2, .external_lex_state = 3}, + [1432] = {.lex_state = 0, .external_lex_state = 3}, + [1433] = {.lex_state = 0, .external_lex_state = 3}, [1434] = {.lex_state = 2, .external_lex_state = 3}, [1435] = {.lex_state = 2, .external_lex_state = 3}, - [1436] = {.lex_state = 55, .external_lex_state = 3}, - [1437] = {.lex_state = 0, .external_lex_state = 3}, - [1438] = {.lex_state = 9, .external_lex_state = 3}, - [1439] = {.lex_state = 9, .external_lex_state = 3}, - [1440] = {.lex_state = 2, .external_lex_state = 3}, - [1441] = {.lex_state = 55, .external_lex_state = 3}, - [1442] = {.lex_state = 55, .external_lex_state = 3}, - [1443] = {.lex_state = 0, .external_lex_state = 3}, - [1444] = {.lex_state = 2, .external_lex_state = 3}, - [1445] = {.lex_state = 9, .external_lex_state = 3}, - [1446] = {.lex_state = 9, .external_lex_state = 3}, + [1436] = {.lex_state = 2, .external_lex_state = 3}, + [1437] = {.lex_state = 2, .external_lex_state = 3}, + [1438] = {.lex_state = 2, .external_lex_state = 3}, + [1439] = {.lex_state = 2, .external_lex_state = 3}, + [1440] = {.lex_state = 55, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 3}, + [1442] = {.lex_state = 2, .external_lex_state = 3}, + [1443] = {.lex_state = 2, .external_lex_state = 3}, + [1444] = {.lex_state = 9, .external_lex_state = 3}, + [1445] = {.lex_state = 0, .external_lex_state = 3}, + [1446] = {.lex_state = 0, .external_lex_state = 3}, [1447] = {.lex_state = 9, .external_lex_state = 3}, - [1448] = {.lex_state = 55, .external_lex_state = 3}, - [1449] = {.lex_state = 55, .external_lex_state = 3}, - [1450] = {.lex_state = 9, .external_lex_state = 3}, + [1448] = {.lex_state = 9, .external_lex_state = 3}, + [1449] = {.lex_state = 0, .external_lex_state = 3}, + [1450] = {.lex_state = 55, .external_lex_state = 3}, [1451] = {.lex_state = 2, .external_lex_state = 3}, [1452] = {.lex_state = 9, .external_lex_state = 3}, - [1453] = {.lex_state = 2, .external_lex_state = 3}, - [1454] = {.lex_state = 2, .external_lex_state = 3}, + [1453] = {.lex_state = 55, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 3}, [1455] = {.lex_state = 0, .external_lex_state = 3}, - [1456] = {.lex_state = 9, .external_lex_state = 3}, - [1457] = {.lex_state = 2, .external_lex_state = 3}, + [1456] = {.lex_state = 0, .external_lex_state = 3}, + [1457] = {.lex_state = 9, .external_lex_state = 3}, [1458] = {.lex_state = 2, .external_lex_state = 3}, - [1459] = {.lex_state = 0, .external_lex_state = 3}, - [1460] = {.lex_state = 2, .external_lex_state = 3}, - [1461] = {.lex_state = 9, .external_lex_state = 3}, + [1459] = {.lex_state = 9, .external_lex_state = 3}, + [1460] = {.lex_state = 9, .external_lex_state = 3}, + [1461] = {.lex_state = 2, .external_lex_state = 3}, [1462] = {.lex_state = 2, .external_lex_state = 3}, - [1463] = {.lex_state = 55, .external_lex_state = 3}, - [1464] = {.lex_state = 9, .external_lex_state = 3}, - [1465] = {.lex_state = 9, .external_lex_state = 3}, - [1466] = {.lex_state = 2, .external_lex_state = 3}, - [1467] = {.lex_state = 2, .external_lex_state = 3}, - [1468] = {.lex_state = 0, .external_lex_state = 3}, + [1463] = {.lex_state = 9, .external_lex_state = 3}, + [1464] = {.lex_state = 2, .external_lex_state = 3}, + [1465] = {.lex_state = 2, .external_lex_state = 3}, + [1466] = {.lex_state = 9, .external_lex_state = 3}, + [1467] = {.lex_state = 9, .external_lex_state = 3}, + [1468] = {.lex_state = 2, .external_lex_state = 3}, [1469] = {.lex_state = 2, .external_lex_state = 3}, [1470] = {.lex_state = 0, .external_lex_state = 3}, - [1471] = {.lex_state = 9, .external_lex_state = 3}, + [1471] = {.lex_state = 2, .external_lex_state = 3}, [1472] = {.lex_state = 0, .external_lex_state = 3}, - [1473] = {.lex_state = 9, .external_lex_state = 3}, - [1474] = {.lex_state = 2, .external_lex_state = 3}, - [1475] = {.lex_state = 0, .external_lex_state = 3}, - [1476] = {.lex_state = 55, .external_lex_state = 3}, + [1473] = {.lex_state = 55, .external_lex_state = 3}, + [1474] = {.lex_state = 55, .external_lex_state = 3}, + [1475] = {.lex_state = 55, .external_lex_state = 3}, + [1476] = {.lex_state = 2, .external_lex_state = 3}, [1477] = {.lex_state = 2, .external_lex_state = 3}, - [1478] = {.lex_state = 55, .external_lex_state = 3}, - [1479] = {.lex_state = 0, .external_lex_state = 3}, + [1478] = {.lex_state = 9, .external_lex_state = 3}, + [1479] = {.lex_state = 2, .external_lex_state = 3}, [1480] = {.lex_state = 2, .external_lex_state = 3}, [1481] = {.lex_state = 55, .external_lex_state = 3}, - [1482] = {.lex_state = 0, .external_lex_state = 3}, - [1483] = {.lex_state = 0, .external_lex_state = 3}, - [1484] = {.lex_state = 55, .external_lex_state = 3}, - [1485] = {.lex_state = 9, .external_lex_state = 3}, + [1482] = {.lex_state = 2, .external_lex_state = 3}, + [1483] = {.lex_state = 2, .external_lex_state = 3}, + [1484] = {.lex_state = 0, .external_lex_state = 3}, + [1485] = {.lex_state = 0, .external_lex_state = 3}, [1486] = {.lex_state = 2, .external_lex_state = 3}, - [1487] = {.lex_state = 9, .external_lex_state = 3}, - [1488] = {.lex_state = 2, .external_lex_state = 3}, + [1487] = {.lex_state = 0, .external_lex_state = 3}, + [1488] = {.lex_state = 9, .external_lex_state = 3}, [1489] = {.lex_state = 0, .external_lex_state = 3}, - [1490] = {.lex_state = 2, .external_lex_state = 4}, - [1491] = {.lex_state = 2, .external_lex_state = 3}, - [1492] = {.lex_state = 2, .external_lex_state = 3}, - [1493] = {.lex_state = 2, .external_lex_state = 3}, - [1494] = {.lex_state = 55, .external_lex_state = 3}, - [1495] = {.lex_state = 0, .external_lex_state = 3}, + [1490] = {.lex_state = 0, .external_lex_state = 3}, + [1491] = {.lex_state = 2, .external_lex_state = 4}, + [1492] = {.lex_state = 0, .external_lex_state = 3}, + [1493] = {.lex_state = 2, .external_lex_state = 4}, + [1494] = {.lex_state = 2, .external_lex_state = 3}, + [1495] = {.lex_state = 2, .external_lex_state = 3}, [1496] = {.lex_state = 2, .external_lex_state = 3}, [1497] = {.lex_state = 2, .external_lex_state = 3}, [1498] = {.lex_state = 2, .external_lex_state = 3}, - [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1499] = {.lex_state = 2, .external_lex_state = 3}, [1500] = {.lex_state = 2, .external_lex_state = 3}, - [1501] = {.lex_state = 2, .external_lex_state = 4}, - [1502] = {.lex_state = 0, .external_lex_state = 3}, - [1503] = {.lex_state = 2, .external_lex_state = 3}, - [1504] = {.lex_state = 55, .external_lex_state = 3}, - [1505] = {.lex_state = 2, .external_lex_state = 3}, - [1506] = {.lex_state = 2, .external_lex_state = 4}, - [1507] = {.lex_state = 6, .external_lex_state = 3}, + [1501] = {.lex_state = 2, .external_lex_state = 3}, + [1502] = {.lex_state = 2, .external_lex_state = 4}, + [1503] = {.lex_state = 55, .external_lex_state = 3}, + [1504] = {.lex_state = 2, .external_lex_state = 4}, + [1505] = {.lex_state = 6, .external_lex_state = 3}, + [1506] = {.lex_state = 0, .external_lex_state = 3}, + [1507] = {.lex_state = 9, .external_lex_state = 3}, [1508] = {.lex_state = 55, .external_lex_state = 3}, [1509] = {.lex_state = 0, .external_lex_state = 3}, - [1510] = {.lex_state = 0, .external_lex_state = 3}, + [1510] = {.lex_state = 55, .external_lex_state = 3}, [1511] = {.lex_state = 0, .external_lex_state = 3}, [1512] = {.lex_state = 2, .external_lex_state = 3}, [1513] = {.lex_state = 2, .external_lex_state = 3}, - [1514] = {.lex_state = 2, .external_lex_state = 4}, - [1515] = {.lex_state = 2, .external_lex_state = 3}, - [1516] = {.lex_state = 2, .external_lex_state = 4}, - [1517] = {.lex_state = 9, .external_lex_state = 3}, - [1518] = {.lex_state = 2, .external_lex_state = 3}, - [1519] = {.lex_state = 2, .external_lex_state = 4}, + [1514] = {.lex_state = 2, .external_lex_state = 3}, + [1515] = {.lex_state = 0, .external_lex_state = 3}, + [1516] = {.lex_state = 0, .external_lex_state = 3}, + [1517] = {.lex_state = 55, .external_lex_state = 3}, + [1518] = {.lex_state = 9, .external_lex_state = 3}, + [1519] = {.lex_state = 55, .external_lex_state = 3}, [1520] = {.lex_state = 55, .external_lex_state = 3}, [1521] = {.lex_state = 2, .external_lex_state = 3}, - [1522] = {.lex_state = 0, .external_lex_state = 3}, - [1523] = {.lex_state = 55, .external_lex_state = 3}, - [1524] = {.lex_state = 0, .external_lex_state = 3}, - [1525] = {.lex_state = 2, .external_lex_state = 3}, + [1522] = {.lex_state = 2, .external_lex_state = 3}, + [1523] = {.lex_state = 2, .external_lex_state = 4}, + [1524] = {.lex_state = 55, .external_lex_state = 3}, + [1525] = {.lex_state = 6, .external_lex_state = 3}, [1526] = {.lex_state = 2, .external_lex_state = 3}, [1527] = {.lex_state = 2, .external_lex_state = 3}, - [1528] = {.lex_state = 2, .external_lex_state = 3}, - [1529] = {.lex_state = 2, .external_lex_state = 3}, - [1530] = {.lex_state = 2, .external_lex_state = 3}, + [1528] = {.lex_state = 0, .external_lex_state = 3}, + [1529] = {.lex_state = 55, .external_lex_state = 3}, + [1530] = {.lex_state = 55, .external_lex_state = 3}, [1531] = {.lex_state = 2, .external_lex_state = 3}, - [1532] = {.lex_state = 2, .external_lex_state = 3}, + [1532] = {.lex_state = 2, .external_lex_state = 4}, [1533] = {.lex_state = 55, .external_lex_state = 3}, - [1534] = {.lex_state = 2, .external_lex_state = 3}, - [1535] = {.lex_state = 6, .external_lex_state = 3}, + [1534] = {.lex_state = 0, .external_lex_state = 3}, + [1535] = {.lex_state = 2, .external_lex_state = 3}, [1536] = {.lex_state = 9, .external_lex_state = 3}, - [1537] = {.lex_state = 2, .external_lex_state = 3}, - [1538] = {.lex_state = 0, .external_lex_state = 3}, - [1539] = {.lex_state = 0, .external_lex_state = 3}, + [1537] = {.lex_state = 55, .external_lex_state = 3}, + [1538] = {.lex_state = 55, .external_lex_state = 3}, + [1539] = {.lex_state = 2, .external_lex_state = 3}, [1540] = {.lex_state = 2, .external_lex_state = 4}, - [1541] = {.lex_state = 55, .external_lex_state = 3}, - [1542] = {.lex_state = 2, .external_lex_state = 3}, - [1543] = {.lex_state = 55, .external_lex_state = 3}, - [1544] = {.lex_state = 2, .external_lex_state = 3}, - [1545] = {.lex_state = 55, .external_lex_state = 3}, + [1541] = {.lex_state = 2, .external_lex_state = 3}, + [1542] = {.lex_state = 0, .external_lex_state = 3}, + [1543] = {.lex_state = 0, .external_lex_state = 3}, + [1544] = {.lex_state = 0, .external_lex_state = 3}, + [1545] = {.lex_state = 2, .external_lex_state = 3}, [1546] = {.lex_state = 2, .external_lex_state = 3}, - [1547] = {.lex_state = 0, .external_lex_state = 3}, - [1548] = {.lex_state = 0, .external_lex_state = 3}, + [1547] = {.lex_state = 2, .external_lex_state = 3}, + [1548] = {.lex_state = 2, .external_lex_state = 3}, [1549] = {.lex_state = 0, .external_lex_state = 3}, - [1550] = {.lex_state = 0, .external_lex_state = 3}, - [1551] = {.lex_state = 0, .external_lex_state = 3}, + [1550] = {.lex_state = 55, .external_lex_state = 3}, + [1551] = {.lex_state = 9, .external_lex_state = 3}, [1552] = {.lex_state = 2, .external_lex_state = 3}, - [1553] = {.lex_state = 9, .external_lex_state = 3}, + [1553] = {.lex_state = 2, .external_lex_state = 3}, [1554] = {.lex_state = 0, .external_lex_state = 3}, - [1555] = {.lex_state = 55, .external_lex_state = 3}, - [1556] = {.lex_state = 0, .external_lex_state = 3}, + [1555] = {.lex_state = 2, .external_lex_state = 3}, + [1556] = {.lex_state = 9, .external_lex_state = 3}, [1557] = {.lex_state = 0, .external_lex_state = 3}, [1558] = {.lex_state = 0, .external_lex_state = 3}, - [1559] = {.lex_state = 6, .external_lex_state = 3}, + [1559] = {.lex_state = 0, .external_lex_state = 3}, [1560] = {.lex_state = 0, .external_lex_state = 3}, [1561] = {.lex_state = 0, .external_lex_state = 3}, [1562] = {.lex_state = 0, .external_lex_state = 3}, - [1563] = {.lex_state = 0, .external_lex_state = 3}, - [1564] = {.lex_state = 6, .external_lex_state = 3}, - [1565] = {.lex_state = 6, .external_lex_state = 3}, + [1563] = {.lex_state = 55, .external_lex_state = 3}, + [1564] = {.lex_state = 0, .external_lex_state = 3}, + [1565] = {.lex_state = 55, .external_lex_state = 3}, [1566] = {.lex_state = 0, .external_lex_state = 3}, - [1567] = {.lex_state = 6, .external_lex_state = 3}, - [1568] = {.lex_state = 0, .external_lex_state = 3}, + [1567] = {.lex_state = 0, .external_lex_state = 3}, + [1568] = {.lex_state = 2, .external_lex_state = 3}, [1569] = {.lex_state = 0, .external_lex_state = 3}, - [1570] = {.lex_state = 0, .external_lex_state = 3}, - [1571] = {.lex_state = 0, .external_lex_state = 3}, + [1570] = {.lex_state = 55, .external_lex_state = 3}, + [1571] = {.lex_state = 55, .external_lex_state = 3}, [1572] = {.lex_state = 0, .external_lex_state = 3}, [1573] = {.lex_state = 0, .external_lex_state = 3}, [1574] = {.lex_state = 0, .external_lex_state = 3}, [1575] = {.lex_state = 0, .external_lex_state = 3}, - [1576] = {.lex_state = 0, .external_lex_state = 3}, + [1576] = {.lex_state = 2, .external_lex_state = 3}, [1577] = {.lex_state = 0, .external_lex_state = 3}, [1578] = {.lex_state = 0, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, - [1580] = {.lex_state = 6, .external_lex_state = 3}, - [1581] = {.lex_state = 0, .external_lex_state = 3}, + [1579] = {.lex_state = 55, .external_lex_state = 3}, + [1580] = {.lex_state = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 2, .external_lex_state = 3}, [1582] = {.lex_state = 0, .external_lex_state = 3}, [1583] = {.lex_state = 55, .external_lex_state = 3}, [1584] = {.lex_state = 0, .external_lex_state = 3}, [1585] = {.lex_state = 0, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, + [1586] = {.lex_state = 0, .external_lex_state = 3}, + [1587] = {.lex_state = 55, .external_lex_state = 3}, + [1588] = {.lex_state = 6, .external_lex_state = 3}, [1589] = {.lex_state = 0, .external_lex_state = 3}, [1590] = {.lex_state = 0, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1591] = {.lex_state = 55, .external_lex_state = 3}, [1592] = {.lex_state = 0, .external_lex_state = 3}, [1593] = {.lex_state = 7, .external_lex_state = 3}, [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 6, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 0, .external_lex_state = 3}, + [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1597] = {.lex_state = 6, .external_lex_state = 3}, [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 55, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 55, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 0, .external_lex_state = 3}, + [1601] = {.lex_state = 2, .external_lex_state = 3}, + [1602] = {.lex_state = 0, .external_lex_state = 3}, [1603] = {.lex_state = 55, .external_lex_state = 3}, - [1604] = {.lex_state = 55, .external_lex_state = 3}, + [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 0, .external_lex_state = 3}, + [1606] = {.lex_state = 55, .external_lex_state = 3}, [1607] = {.lex_state = 0, .external_lex_state = 3}, [1608] = {.lex_state = 0, .external_lex_state = 3}, [1609] = {.lex_state = 0, .external_lex_state = 3}, - [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 0, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 55, .external_lex_state = 3}, - [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 2, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 2, .external_lex_state = 3}, + [1611] = {.lex_state = 6, .external_lex_state = 3}, + [1612] = {.lex_state = 0, .external_lex_state = 3}, + [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1615] = {.lex_state = 0, .external_lex_state = 3}, + [1616] = {.lex_state = 6, .external_lex_state = 3}, [1617] = {.lex_state = 0, .external_lex_state = 3}, - [1618] = {.lex_state = 6, .external_lex_state = 3}, + [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 0, .external_lex_state = 3}, [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 2, .external_lex_state = 3}, - [1623] = {.lex_state = 6, .external_lex_state = 3}, + [1622] = {.lex_state = 6, .external_lex_state = 3}, + [1623] = {.lex_state = 2, .external_lex_state = 3}, [1624] = {.lex_state = 0, .external_lex_state = 3}, - [1625] = {.lex_state = 0, .external_lex_state = 3}, - [1626] = {.lex_state = 6, .external_lex_state = 3}, - [1627] = {.lex_state = 6, .external_lex_state = 3}, - [1628] = {.lex_state = 55, .external_lex_state = 3}, - [1629] = {.lex_state = 55, .external_lex_state = 3}, - [1630] = {.lex_state = 9, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1625] = {.lex_state = 55, .external_lex_state = 3}, + [1626] = {.lex_state = 0, .external_lex_state = 3}, + [1627] = {.lex_state = 0, .external_lex_state = 3}, + [1628] = {.lex_state = 7, .external_lex_state = 3}, + [1629] = {.lex_state = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 0, .external_lex_state = 3}, + [1631] = {.lex_state = 6, .external_lex_state = 3}, [1632] = {.lex_state = 55, .external_lex_state = 3}, - [1633] = {.lex_state = 55, .external_lex_state = 3}, + [1633] = {.lex_state = 0, .external_lex_state = 3}, [1634] = {.lex_state = 0, .external_lex_state = 3}, [1635] = {.lex_state = 0, .external_lex_state = 3}, - [1636] = {.lex_state = 0, .external_lex_state = 3}, + [1636] = {.lex_state = 2, .external_lex_state = 3}, [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 0, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, + [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1639] = {.lex_state = 55, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, [1641] = {.lex_state = 0, .external_lex_state = 3}, [1642] = {.lex_state = 0, .external_lex_state = 3}, [1643] = {.lex_state = 0, .external_lex_state = 3}, - [1644] = {.lex_state = 0, .external_lex_state = 3}, + [1644] = {.lex_state = 7, .external_lex_state = 3}, [1645] = {.lex_state = 0, .external_lex_state = 3}, - [1646] = {.lex_state = 0, .external_lex_state = 3}, + [1646] = {.lex_state = 6, .external_lex_state = 3}, [1647] = {.lex_state = 0, .external_lex_state = 3}, [1648] = {.lex_state = 0, .external_lex_state = 3}, [1649] = {.lex_state = 0, .external_lex_state = 3}, - [1650] = {.lex_state = 0, .external_lex_state = 3}, - [1651] = {.lex_state = 0, .external_lex_state = 3}, + [1650] = {.lex_state = 6, .external_lex_state = 3}, + [1651] = {.lex_state = 2, .external_lex_state = 3}, [1652] = {.lex_state = 0, .external_lex_state = 3}, - [1653] = {.lex_state = 2, .external_lex_state = 3}, - [1654] = {.lex_state = 55, .external_lex_state = 3}, + [1653] = {.lex_state = 0, .external_lex_state = 3}, + [1654] = {.lex_state = 0, .external_lex_state = 3}, [1655] = {.lex_state = 0, .external_lex_state = 3}, - [1656] = {.lex_state = 2, .external_lex_state = 3}, - [1657] = {.lex_state = 0, .external_lex_state = 3}, - [1658] = {.lex_state = 55, .external_lex_state = 3}, + [1656] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 0, .external_lex_state = 3}, [1659] = {.lex_state = 0, .external_lex_state = 3}, - [1660] = {.lex_state = 2, .external_lex_state = 3}, + [1660] = {.lex_state = 6, .external_lex_state = 3}, [1661] = {.lex_state = 0, .external_lex_state = 3}, [1662] = {.lex_state = 0, .external_lex_state = 3}, - [1663] = {.lex_state = 55, .external_lex_state = 3}, - [1664] = {.lex_state = 0, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 3}, + [1664] = {.lex_state = 7, .external_lex_state = 3}, [1665] = {.lex_state = 0, .external_lex_state = 3}, - [1666] = {.lex_state = 0, .external_lex_state = 3}, - [1667] = {.lex_state = 0, .external_lex_state = 3}, - [1668] = {.lex_state = 2, .external_lex_state = 3}, - [1669] = {.lex_state = 55, .external_lex_state = 3}, - [1670] = {.lex_state = 2, .external_lex_state = 3}, - [1671] = {.lex_state = 0, .external_lex_state = 3}, + [1666] = {.lex_state = 7, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 0, .external_lex_state = 3}, + [1669] = {.lex_state = 6, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 0, .external_lex_state = 3}, [1673] = {.lex_state = 0, .external_lex_state = 3}, - [1674] = {.lex_state = 2, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, + [1674] = {.lex_state = 55, .external_lex_state = 3}, + [1675] = {.lex_state = 0, .external_lex_state = 3}, [1676] = {.lex_state = 0, .external_lex_state = 3}, - [1677] = {.lex_state = 0, .external_lex_state = 3}, - [1678] = {.lex_state = 0, .external_lex_state = 3}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 0, .external_lex_state = 3}, [1680] = {.lex_state = 0, .external_lex_state = 3}, [1681] = {.lex_state = 0, .external_lex_state = 3}, [1682] = {.lex_state = 0, .external_lex_state = 3}, [1683] = {.lex_state = 0, .external_lex_state = 3}, - [1684] = {.lex_state = 55, .external_lex_state = 3}, + [1684] = {.lex_state = 0, .external_lex_state = 3}, [1685] = {.lex_state = 0, .external_lex_state = 3}, - [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 0, .external_lex_state = 3}, - [1688] = {.lex_state = 2, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, + [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 0, .external_lex_state = 3}, + [1689] = {.lex_state = 0, .external_lex_state = 3}, [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 0, .external_lex_state = 3}, - [1693] = {.lex_state = 0, .external_lex_state = 3}, - [1694] = {.lex_state = 6, .external_lex_state = 3}, + [1691] = {.lex_state = 2, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1693] = {.lex_state = 7, .external_lex_state = 3}, + [1694] = {.lex_state = 7, .external_lex_state = 3}, [1695] = {.lex_state = 0, .external_lex_state = 3}, [1696] = {.lex_state = 0, .external_lex_state = 3}, - [1697] = {.lex_state = 0, .external_lex_state = 3}, + [1697] = {.lex_state = 7, .external_lex_state = 3}, [1698] = {.lex_state = 0, .external_lex_state = 3}, [1699] = {.lex_state = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 6, .external_lex_state = 3}, - [1701] = {.lex_state = 55, .external_lex_state = 3}, - [1702] = {.lex_state = 55, .external_lex_state = 3}, + [1700] = {.lex_state = 0, .external_lex_state = 3}, + [1701] = {.lex_state = 0, .external_lex_state = 3}, + [1702] = {.lex_state = 7, .external_lex_state = 3}, [1703] = {.lex_state = 0, .external_lex_state = 3}, [1704] = {.lex_state = 0, .external_lex_state = 3}, - [1705] = {.lex_state = 55, .external_lex_state = 3}, + [1705] = {.lex_state = 0, .external_lex_state = 3}, [1706] = {.lex_state = 0, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1707] = {.lex_state = 0, .external_lex_state = 3}, [1708] = {.lex_state = 55, .external_lex_state = 3}, - [1709] = {.lex_state = 55, .external_lex_state = 3}, + [1709] = {.lex_state = 0, .external_lex_state = 3}, [1710] = {.lex_state = 0, .external_lex_state = 3}, - [1711] = {.lex_state = 0, .external_lex_state = 3}, - [1712] = {.lex_state = 55, .external_lex_state = 3}, + [1711] = {.lex_state = 7, .external_lex_state = 3}, + [1712] = {.lex_state = 0, .external_lex_state = 3}, [1713] = {.lex_state = 0, .external_lex_state = 3}, - [1714] = {.lex_state = 0, .external_lex_state = 3}, + [1714] = {.lex_state = 2, .external_lex_state = 3}, [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 6, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1716] = {.lex_state = 55, .external_lex_state = 3}, + [1717] = {.lex_state = 0, .external_lex_state = 3}, [1718] = {.lex_state = 0, .external_lex_state = 3}, [1719] = {.lex_state = 0, .external_lex_state = 3}, - [1720] = {.lex_state = 9, .external_lex_state = 3}, + [1720] = {.lex_state = 0, .external_lex_state = 3}, [1721] = {.lex_state = 0, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 0, .external_lex_state = 3}, - [1724] = {.lex_state = 0, .external_lex_state = 3}, - [1725] = {.lex_state = 0, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 55, .external_lex_state = 3}, - [1728] = {.lex_state = 2, .external_lex_state = 3}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1723] = {.lex_state = 9, .external_lex_state = 3}, + [1724] = {.lex_state = 6, .external_lex_state = 3}, + [1725] = {.lex_state = 6, .external_lex_state = 3}, + [1726] = {.lex_state = 0, .external_lex_state = 3}, + [1727] = {.lex_state = 0, .external_lex_state = 3}, + [1728] = {.lex_state = 0, .external_lex_state = 3}, + [1729] = {.lex_state = 0, .external_lex_state = 3}, [1730] = {.lex_state = 0, .external_lex_state = 3}, [1731] = {.lex_state = 0, .external_lex_state = 3}, [1732] = {.lex_state = 0, .external_lex_state = 3}, - [1733] = {.lex_state = 0, .external_lex_state = 3}, + [1733] = {.lex_state = 2, .external_lex_state = 3}, [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 0, .external_lex_state = 3}, - [1736] = {.lex_state = 2, .external_lex_state = 3}, - [1737] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 6, .external_lex_state = 3}, + [1736] = {.lex_state = 0, .external_lex_state = 3}, + [1737] = {.lex_state = 55, .external_lex_state = 3}, [1738] = {.lex_state = 0, .external_lex_state = 3}, - [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .external_lex_state = 3}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 7, .external_lex_state = 3}, + [1740] = {.lex_state = 2, .external_lex_state = 3}, + [1741] = {.lex_state = 0, .external_lex_state = 3}, [1742] = {.lex_state = 0, .external_lex_state = 3}, [1743] = {.lex_state = 0, .external_lex_state = 3}, - [1744] = {.lex_state = 6, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 55, .external_lex_state = 3}, - [1747] = {.lex_state = 6, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 0, .external_lex_state = 3}, - [1750] = {.lex_state = 0, .external_lex_state = 3}, - [1751] = {.lex_state = 0, .external_lex_state = 3}, + [1744] = {.lex_state = 2, .external_lex_state = 3}, + [1745] = {.lex_state = 55, .external_lex_state = 3}, + [1746] = {.lex_state = 0, .external_lex_state = 3}, + [1747] = {.lex_state = 0, .external_lex_state = 3}, + [1748] = {.lex_state = 0, .external_lex_state = 3}, + [1749] = {.lex_state = 55, .external_lex_state = 3}, + [1750] = {.lex_state = 55, .external_lex_state = 3}, + [1751] = {.lex_state = 6, .external_lex_state = 3}, [1752] = {.lex_state = 0, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, [1754] = {.lex_state = 0, .external_lex_state = 3}, [1755] = {.lex_state = 0, .external_lex_state = 3}, [1756] = {.lex_state = 0, .external_lex_state = 3}, - [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1757] = {.lex_state = 9, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 2, .external_lex_state = 3}, - [1760] = {.lex_state = 0, .external_lex_state = 3}, - [1761] = {.lex_state = 55, .external_lex_state = 3}, - [1762] = {.lex_state = 2, .external_lex_state = 3}, + [1759] = {.lex_state = 55, .external_lex_state = 3}, + [1760] = {.lex_state = 55, .external_lex_state = 3}, + [1761] = {.lex_state = 0, .external_lex_state = 3}, + [1762] = {.lex_state = 0, .external_lex_state = 3}, [1763] = {.lex_state = 0, .external_lex_state = 3}, [1764] = {.lex_state = 0, .external_lex_state = 3}, [1765] = {.lex_state = 0, .external_lex_state = 3}, [1766] = {.lex_state = 0, .external_lex_state = 3}, [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 6, .external_lex_state = 3}, - [1770] = {.lex_state = 55, .external_lex_state = 3}, + [1768] = {.lex_state = 6, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 0, .external_lex_state = 3}, [1771] = {.lex_state = 0, .external_lex_state = 3}, [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 55, .external_lex_state = 3}, + [1773] = {.lex_state = 0, .external_lex_state = 3}, [1774] = {.lex_state = 55, .external_lex_state = 3}, - [1775] = {.lex_state = 7, .external_lex_state = 3}, - [1776] = {.lex_state = 55, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, + [1775] = {.lex_state = 0, .external_lex_state = 3}, + [1776] = {.lex_state = 0, .external_lex_state = 3}, + [1777] = {.lex_state = 6, .external_lex_state = 3}, [1778] = {.lex_state = 0, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 55, .external_lex_state = 3}, [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 7, .external_lex_state = 3}, + [1781] = {.lex_state = 0, .external_lex_state = 3}, [1782] = {.lex_state = 0, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 6, .external_lex_state = 3}, [1784] = {.lex_state = 0, .external_lex_state = 3}, [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 6, .external_lex_state = 3}, + [1786] = {.lex_state = 0, .external_lex_state = 3}, [1787] = {.lex_state = 55, .external_lex_state = 3}, [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 0, .external_lex_state = 3}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, + [1789] = {.lex_state = 55, .external_lex_state = 3}, + [1790] = {.lex_state = 55, .external_lex_state = 3}, [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, [1793] = {.lex_state = 55, .external_lex_state = 3}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, + [1794] = {.lex_state = 55, .external_lex_state = 3}, [1795] = {.lex_state = 0, .external_lex_state = 3}, [1796] = {.lex_state = 55, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 2, .external_lex_state = 3}, - [1799] = {.lex_state = 55, .external_lex_state = 3}, - [1800] = {.lex_state = 0, .external_lex_state = 3}, + [1797] = {.lex_state = 55, .external_lex_state = 3}, + [1798] = {.lex_state = 0, .external_lex_state = 3}, + [1799] = {.lex_state = 0, .external_lex_state = 3}, + [1800] = {.lex_state = 2, .external_lex_state = 3}, [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 2, .external_lex_state = 3}, - [1804] = {.lex_state = 55, .external_lex_state = 3}, - [1805] = {.lex_state = 0, .external_lex_state = 3}, - [1806] = {.lex_state = 2, .external_lex_state = 3}, + [1802] = {.lex_state = 55, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1804] = {.lex_state = 7, .external_lex_state = 3}, + [1805] = {.lex_state = 2, .external_lex_state = 3}, + [1806] = {.lex_state = 0, .external_lex_state = 3}, [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 2, .external_lex_state = 3}, - [1809] = {.lex_state = 2, .external_lex_state = 3}, + [1808] = {.lex_state = 0, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 2, .external_lex_state = 3}, - [1812] = {.lex_state = 2, .external_lex_state = 3}, + [1811] = {.lex_state = 0, .external_lex_state = 3}, + [1812] = {.lex_state = 0, .external_lex_state = 3}, [1813] = {.lex_state = 0, .external_lex_state = 3}, [1814] = {.lex_state = 0, .external_lex_state = 3}, [1815] = {.lex_state = 0, .external_lex_state = 3}, [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 2, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, [1818] = {.lex_state = 0, .external_lex_state = 3}, [1819] = {.lex_state = 0, .external_lex_state = 3}, - [1820] = {.lex_state = 2, .external_lex_state = 3}, + [1820] = {.lex_state = 0, .external_lex_state = 3}, [1821] = {.lex_state = 0, .external_lex_state = 3}, [1822] = {.lex_state = 0, .external_lex_state = 3}, [1823] = {.lex_state = 0, .external_lex_state = 3}, @@ -13626,415 +9191,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1825] = {.lex_state = 0, .external_lex_state = 3}, [1826] = {.lex_state = 0, .external_lex_state = 3}, [1827] = {.lex_state = 0, .external_lex_state = 3}, - [1828] = {.lex_state = 2, .external_lex_state = 3}, - [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 2, .external_lex_state = 3}, - [1831] = {.lex_state = 55, .external_lex_state = 3}, - [1832] = {.lex_state = 2, .external_lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 3}, + [1829] = {.lex_state = 2, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 0, .external_lex_state = 3}, [1833] = {.lex_state = 0, .external_lex_state = 3}, - [1834] = {.lex_state = 2, .external_lex_state = 3}, - [1835] = {.lex_state = 2, .external_lex_state = 3}, + [1834] = {.lex_state = 0, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 2, .external_lex_state = 3}, - [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 2, .external_lex_state = 3}, - [1841] = {.lex_state = 0, .external_lex_state = 3}, - [1842] = {.lex_state = 2, .external_lex_state = 3}, - [1843] = {.lex_state = 2, .external_lex_state = 3}, - [1844] = {.lex_state = 2, .external_lex_state = 3}, - [1845] = {.lex_state = 2, .external_lex_state = 3}, + [1837] = {.lex_state = 0, .external_lex_state = 3}, + [1838] = {.lex_state = 2, .external_lex_state = 3}, + [1839] = {.lex_state = 55, .external_lex_state = 3}, + [1840] = {.lex_state = 0, .external_lex_state = 3}, + [1841] = {.lex_state = 55, .external_lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 0, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 2, .external_lex_state = 3}, [1848] = {.lex_state = 0, .external_lex_state = 3}, [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 55, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, [1851] = {.lex_state = 0, .external_lex_state = 3}, [1852] = {.lex_state = 0, .external_lex_state = 3}, [1853] = {.lex_state = 6, .external_lex_state = 3}, - [1854] = {.lex_state = 55, .external_lex_state = 3}, + [1854] = {.lex_state = 6, .external_lex_state = 3}, [1855] = {.lex_state = 2, .external_lex_state = 3}, [1856] = {.lex_state = 0, .external_lex_state = 3}, [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 55, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, [1859] = {.lex_state = 0, .external_lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 9, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 55, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1864] = {.lex_state = 2, .external_lex_state = 3}, + [1865] = {.lex_state = 2, .external_lex_state = 3}, + [1866] = {.lex_state = 2, .external_lex_state = 3}, + [1867] = {.lex_state = 2, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 0, .external_lex_state = 3}, - [1870] = {.lex_state = 55, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 0, .external_lex_state = 3}, + [1869] = {.lex_state = 2, .external_lex_state = 3}, + [1870] = {.lex_state = 0, .external_lex_state = 3}, + [1871] = {.lex_state = 2, .external_lex_state = 3}, + [1872] = {.lex_state = 55, .external_lex_state = 3}, [1873] = {.lex_state = 0, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, [1875] = {.lex_state = 0, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 55, .external_lex_state = 3}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 55, .external_lex_state = 3}, + [1880] = {.lex_state = 2, .external_lex_state = 3}, [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 1, .external_lex_state = 3}, [1883] = {.lex_state = 0, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 2, .external_lex_state = 3}, + [1885] = {.lex_state = 2, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 2, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, [1888] = {.lex_state = 2, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, [1890] = {.lex_state = 0, .external_lex_state = 3}, - [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 2, .external_lex_state = 3}, - [1893] = {.lex_state = 0, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1891] = {.lex_state = 55, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 55, .external_lex_state = 3}, + [1894] = {.lex_state = 55, .external_lex_state = 3}, + [1895] = {.lex_state = 2, .external_lex_state = 3}, + [1896] = {.lex_state = 2, .external_lex_state = 3}, + [1897] = {.lex_state = 2, .external_lex_state = 3}, [1898] = {.lex_state = 0, .external_lex_state = 3}, - [1899] = {.lex_state = 2, .external_lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 55, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, [1902] = {.lex_state = 0, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 6, .external_lex_state = 3}, - [1905] = {.lex_state = 55, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 5}, + [1904] = {.lex_state = 0, .external_lex_state = 5}, + [1905] = {.lex_state = 2, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, [1907] = {.lex_state = 2, .external_lex_state = 3}, [1908] = {.lex_state = 2, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 55, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 55, .external_lex_state = 3}, - [1912] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 2, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 2, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 55, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, - [1920] = {.lex_state = 1, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 55, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 2, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 2, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, [1925] = {.lex_state = 0, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 2, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 2, .external_lex_state = 3}, + [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 2, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 9, .external_lex_state = 3}, - [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 2, .external_lex_state = 3}, - [1935] = {.lex_state = 2, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1933] = {.lex_state = 6, .external_lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 2, .external_lex_state = 3}, - [1938] = {.lex_state = 2, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, [1941] = {.lex_state = 0, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 2, .external_lex_state = 3}, - [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 55, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1945] = {.lex_state = 2, .external_lex_state = 3}, + [1946] = {.lex_state = 55, .external_lex_state = 3}, [1947] = {.lex_state = 2, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1950] = {.lex_state = 2, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 2, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 2, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 55, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 6, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 2, .external_lex_state = 3}, - [1963] = {.lex_state = 55, .external_lex_state = 3}, - [1964] = {.lex_state = 55, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 2, .external_lex_state = 3}, + [1969] = {.lex_state = 55, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 55, .external_lex_state = 3}, - [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 2, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, - [1974] = {.lex_state = 6, .external_lex_state = 3}, - [1975] = {.lex_state = 6, .external_lex_state = 3}, - [1976] = {.lex_state = 55, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 2, .external_lex_state = 3}, + [1975] = {.lex_state = 2, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 2, .external_lex_state = 3}, [1978] = {.lex_state = 2, .external_lex_state = 3}, - [1979] = {.lex_state = 2, .external_lex_state = 3}, - [1980] = {.lex_state = 2, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 55, .external_lex_state = 3}, + [1979] = {.lex_state = 6, .external_lex_state = 3}, + [1980] = {.lex_state = 55, .external_lex_state = 3}, + [1981] = {.lex_state = 2, .external_lex_state = 3}, + [1982] = {.lex_state = 2, .external_lex_state = 3}, + [1983] = {.lex_state = 2, .external_lex_state = 3}, + [1984] = {.lex_state = 6, .external_lex_state = 3}, + [1985] = {.lex_state = 2, .external_lex_state = 3}, + [1986] = {.lex_state = 2, .external_lex_state = 3}, + [1987] = {.lex_state = 0, .external_lex_state = 3}, [1988] = {.lex_state = 0, .external_lex_state = 3}, [1989] = {.lex_state = 2, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, + [1990] = {.lex_state = 55, .external_lex_state = 3}, [1991] = {.lex_state = 2, .external_lex_state = 3}, - [1992] = {.lex_state = 2, .external_lex_state = 3}, - [1993] = {.lex_state = 2, .external_lex_state = 3}, + [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1993] = {.lex_state = 0, .external_lex_state = 3}, [1994] = {.lex_state = 2, .external_lex_state = 3}, [1995] = {.lex_state = 2, .external_lex_state = 3}, - [1996] = {.lex_state = 2, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, [1997] = {.lex_state = 2, .external_lex_state = 3}, - [1998] = {.lex_state = 6, .external_lex_state = 3}, + [1998] = {.lex_state = 2, .external_lex_state = 3}, [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 2, .external_lex_state = 3}, - [2001] = {.lex_state = 2, .external_lex_state = 3}, + [2000] = {.lex_state = 0, .external_lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 3}, [2002] = {.lex_state = 2, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 2, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 2, .external_lex_state = 3}, + [2004] = {.lex_state = 2, .external_lex_state = 3}, + [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 2, .external_lex_state = 3}, + [2007] = {.lex_state = 0, .external_lex_state = 3}, [2008] = {.lex_state = 2, .external_lex_state = 3}, [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 2, .external_lex_state = 3}, + [2011] = {.lex_state = 2, .external_lex_state = 3}, [2012] = {.lex_state = 2, .external_lex_state = 3}, [2013] = {.lex_state = 2, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 2, .external_lex_state = 3}, + [2014] = {.lex_state = 2, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, [2016] = {.lex_state = 2, .external_lex_state = 3}, [2017] = {.lex_state = 2, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, [2019] = {.lex_state = 2, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 2, .external_lex_state = 3}, + [2020] = {.lex_state = 2, .external_lex_state = 3}, + [2021] = {.lex_state = 0, .external_lex_state = 3}, [2022] = {.lex_state = 2, .external_lex_state = 3}, [2023] = {.lex_state = 2, .external_lex_state = 3}, [2024] = {.lex_state = 2, .external_lex_state = 3}, - [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2025] = {.lex_state = 2, .external_lex_state = 3}, + [2026] = {.lex_state = 2, .external_lex_state = 3}, + [2027] = {.lex_state = 2, .external_lex_state = 3}, + [2028] = {.lex_state = 2, .external_lex_state = 3}, [2029] = {.lex_state = 2, .external_lex_state = 3}, - [2030] = {.lex_state = 2, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 0, .external_lex_state = 3}, - [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2032] = {.lex_state = 2, .external_lex_state = 3}, + [2033] = {.lex_state = 2, .external_lex_state = 3}, [2034] = {.lex_state = 2, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2035] = {.lex_state = 2, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 2, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 2, .external_lex_state = 3}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 2, .external_lex_state = 3}, - [2044] = {.lex_state = 2, .external_lex_state = 3}, + [2038] = {.lex_state = 2, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 2, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2042] = {.lex_state = 2, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 2, .external_lex_state = 3}, - [2048] = {.lex_state = 2, .external_lex_state = 3}, - [2049] = {.lex_state = 2, .external_lex_state = 3}, + [2047] = {.lex_state = 0, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 2, .external_lex_state = 3}, - [2054] = {.lex_state = 2, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 2, .external_lex_state = 3}, - [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 0, .external_lex_state = 3}, + [2055] = {.lex_state = 2, .external_lex_state = 3}, + [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 2, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, [2059] = {.lex_state = 2, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 2, .external_lex_state = 3}, - [2063] = {.lex_state = 2, .external_lex_state = 3}, - [2064] = {.lex_state = 2, .external_lex_state = 3}, - [2065] = {.lex_state = 2, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, + [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2064] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 2, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 2, .external_lex_state = 3}, + [2068] = {.lex_state = 2, .external_lex_state = 3}, [2069] = {.lex_state = 2, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 2, .external_lex_state = 3}, - [2072] = {.lex_state = 2, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 2, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, [2076] = {.lex_state = 2, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 2, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 2, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 2, .external_lex_state = 3}, + [2081] = {.lex_state = 2, .external_lex_state = 3}, [2082] = {.lex_state = 2, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 2, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 6, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 2, .external_lex_state = 3}, + [2090] = {.lex_state = 2, .external_lex_state = 3}, + [2091] = {.lex_state = 2, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 2, .external_lex_state = 3}, - [2096] = {.lex_state = 2, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 2, .external_lex_state = 3}, + [2098] = {.lex_state = 2, .external_lex_state = 3}, [2099] = {.lex_state = 2, .external_lex_state = 3}, [2100] = {.lex_state = 2, .external_lex_state = 3}, [2101] = {.lex_state = 0, .external_lex_state = 3}, [2102] = {.lex_state = 0, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 2, .external_lex_state = 3}, - [2105] = {.lex_state = 2, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 2, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 2, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 6, .external_lex_state = 3}, + [2109] = {.lex_state = 2, .external_lex_state = 3}, + [2110] = {.lex_state = 6, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, - [2112] = {.lex_state = 0, .external_lex_state = 3}, + [2112] = {.lex_state = 2, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, [2114] = {.lex_state = 2, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, + [2116] = {.lex_state = 2, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 6, .external_lex_state = 3}, + [2118] = {.lex_state = 2, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 2, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 2, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 2, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 2, .external_lex_state = 3}, + [2125] = {.lex_state = 2, .external_lex_state = 3}, + [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 2, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 2, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 2, .external_lex_state = 3}, + [2128] = {.lex_state = 2, .external_lex_state = 3}, + [2129] = {.lex_state = 0, .external_lex_state = 3}, + [2130] = {.lex_state = 2, .external_lex_state = 3}, + [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 2, .external_lex_state = 3}, - [2134] = {.lex_state = 2, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 6, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 2, .external_lex_state = 3}, + [2137] = {.lex_state = 2, .external_lex_state = 3}, + [2138] = {.lex_state = 2, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, [2143] = {.lex_state = 0, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 2, .external_lex_state = 3}, - [2146] = {.lex_state = 2, .external_lex_state = 3}, - [2147] = {.lex_state = 2, .external_lex_state = 3}, - [2148] = {.lex_state = 2, .external_lex_state = 3}, - [2149] = {.lex_state = 2, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 0, .external_lex_state = 3}, + [2147] = {.lex_state = 0, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 2, .external_lex_state = 3}, [2151] = {.lex_state = 2, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 2, .external_lex_state = 3}, + [2152] = {.lex_state = 6, .external_lex_state = 3}, + [2153] = {.lex_state = 6, .external_lex_state = 3}, [2154] = {.lex_state = 2, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 2, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 2, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 2, .external_lex_state = 3}, - [2166] = {.lex_state = 2, .external_lex_state = 3}, - [2167] = {.lex_state = 2, .external_lex_state = 3}, + [2165] = {.lex_state = 0, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 2, .external_lex_state = 3}, - [2170] = {.lex_state = 2, .external_lex_state = 3}, - [2171] = {.lex_state = 2, .external_lex_state = 3}, - [2172] = {.lex_state = 2, .external_lex_state = 3}, + [2169] = {.lex_state = 0, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 2, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 2, .external_lex_state = 3}, + [2177] = {.lex_state = 2, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, - [2181] = {.lex_state = 0, .external_lex_state = 3}, + [2180] = {.lex_state = 2, .external_lex_state = 3}, + [2181] = {.lex_state = 2, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 2, .external_lex_state = 3}, + [2184] = {.lex_state = 0, .external_lex_state = 3}, [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2186] = {.lex_state = 2, .external_lex_state = 3}, + [2187] = {.lex_state = 2, .external_lex_state = 3}, + [2188] = {.lex_state = 2, .external_lex_state = 3}, [2189] = {.lex_state = 2, .external_lex_state = 3}, - [2190] = {.lex_state = 2, .external_lex_state = 3}, - [2191] = {.lex_state = 6, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 2, .external_lex_state = 3}, [2193] = {.lex_state = 2, .external_lex_state = 3}, - [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 6, .external_lex_state = 3}, + [2194] = {.lex_state = 6, .external_lex_state = 3}, + [2195] = {.lex_state = 2, .external_lex_state = 3}, + [2196] = {.lex_state = 2, .external_lex_state = 3}, [2197] = {.lex_state = 2, .external_lex_state = 3}, -}; - -enum { - ts_external_token__string_content = 0, - ts_external_token_raw_string_literal = 1, - ts_external_token_float_literal = 2, - ts_external_token_block_comment = 3, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__string_content] = sym__string_content, - [ts_external_token_raw_string_literal] = sym_raw_string_literal, - [ts_external_token_float_literal] = sym_float_literal, - [ts_external_token_block_comment] = sym_block_comment, -}; - -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__string_content] = true, - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [2] = { - [ts_external_token_raw_string_literal] = true, - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, - [3] = { - [ts_external_token_block_comment] = true, - }, - [4] = { - [ts_external_token__string_content] = true, - [ts_external_token_block_comment] = true, - }, - [5] = { - [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, - }, + [2198] = {.lex_state = 2, .external_lex_state = 3}, + [2199] = {.lex_state = 6, .external_lex_state = 3}, + [2200] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 2, .external_lex_state = 3}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14068,23 +9598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1), [anon_sym_predicate] = ACTIONS(1), [anon_sym_library] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_block] = ACTIONS(1), - [anon_sym_expr] = ACTIONS(1), - [anon_sym_ident] = ACTIONS(1), - [anon_sym_item] = ACTIONS(1), - [anon_sym_literal] = ACTIONS(1), - [anon_sym_meta] = ACTIONS(1), - [anon_sym_pat] = ACTIONS(1), - [anon_sym_path] = ACTIONS(1), - [anon_sym_stmt] = ACTIONS(1), - [anon_sym_tt] = ACTIONS(1), - [anon_sym_ty] = ACTIONS(1), - [anon_sym_vis] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_abi] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), @@ -14114,6 +9627,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -14177,75 +9695,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2128), - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_configurable_item] = STATE(7), - [sym_storage_item] = STATE(7), - [sym_const_item] = STATE(7), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(7), - [sym_abi_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_source_file] = STATE(2018), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_configurable_item] = STATE(5), + [sym_storage_item] = STATE(5), + [sym_const_item] = STATE(5), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(5), + [sym_abi_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(935), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14274,40 +9792,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -14324,74 +9842,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(899), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(846), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14419,41 +9937,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -14470,74 +9988,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(879), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(888), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14565,41 +10083,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -14616,74 +10134,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_configurable_item] = STATE(5), - [sym_storage_item] = STATE(5), - [sym_const_item] = STATE(5), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(5), - [sym_abi_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(891), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_configurable_item] = STATE(4), + [sym_storage_item] = STATE(4), + [sym_const_item] = STATE(4), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(4), + [sym_abi_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(935), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(103), + [sym_identifier] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_u8] = ACTIONS(111), + [anon_sym_i8] = ACTIONS(111), + [anon_sym_u16] = ACTIONS(111), + [anon_sym_i16] = ACTIONS(111), + [anon_sym_u32] = ACTIONS(111), + [anon_sym_i32] = ACTIONS(111), + [anon_sym_u64] = ACTIONS(111), + [anon_sym_i64] = ACTIONS(111), + [anon_sym_u128] = ACTIONS(111), + [anon_sym_i128] = ACTIONS(111), + [anon_sym_u256] = ACTIONS(111), + [anon_sym_i256] = ACTIONS(111), + [anon_sym_b256] = ACTIONS(111), + [anon_sym_isize] = ACTIONS(111), + [anon_sym_usize] = ACTIONS(111), + [anon_sym_f32] = ACTIONS(111), + [anon_sym_f64] = ACTIONS(111), + [anon_sym_bool] = ACTIONS(111), + [anon_sym_char] = ACTIONS(111), + [anon_sym_str] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_contract] = ACTIONS(120), + [anon_sym_script] = ACTIONS(120), + [anon_sym_predicate] = ACTIONS(120), + [anon_sym_library] = ACTIONS(120), + [anon_sym_SQUOTE] = ACTIONS(123), + [anon_sym_abi] = ACTIONS(126), + [anon_sym_break] = ACTIONS(129), + [anon_sym_configurable] = ACTIONS(132), + [anon_sym_const] = ACTIONS(135), + [anon_sym_continue] = ACTIONS(138), + [anon_sym_default] = ACTIONS(141), + [anon_sym_mod] = ACTIONS(144), + [anon_sym_enum] = ACTIONS(147), + [anon_sym_fn] = ACTIONS(150), + [anon_sym_for] = ACTIONS(153), + [anon_sym_if] = ACTIONS(156), + [anon_sym_impl] = ACTIONS(159), + [anon_sym_let] = ACTIONS(162), + [anon_sym_match] = ACTIONS(165), + [anon_sym_pub] = ACTIONS(168), + [anon_sym_return] = ACTIONS(171), + [anon_sym_storage] = ACTIONS(174), + [anon_sym_struct] = ACTIONS(177), + [anon_sym_trait] = ACTIONS(180), + [anon_sym_type] = ACTIONS(183), + [anon_sym_use] = ACTIONS(186), + [anon_sym_while] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(198), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(210), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_DOT_DOT] = ACTIONS(216), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(219), + [anon_sym_yield] = ACTIONS(222), + [anon_sym_move] = ACTIONS(225), + [sym_integer_literal] = ACTIONS(228), + [aux_sym_string_literal_token1] = ACTIONS(231), + [sym_char_literal] = ACTIONS(228), + [anon_sym_true] = ACTIONS(234), + [anon_sym_false] = ACTIONS(234), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(237), + [sym_metavariable] = ACTIONS(240), + [sym_raw_string_literal] = ACTIONS(228), + [sym_float_literal] = ACTIONS(228), + [sym_block_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_configurable_item] = STATE(4), + [sym_storage_item] = STATE(4), + [sym_const_item] = STATE(4), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(4), + [sym_abi_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(935), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(243), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14711,41 +10376,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -14761,75 +10425,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(888), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [6] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_configurable_item] = STATE(3), + [sym_storage_item] = STATE(3), + [sym_const_item] = STATE(3), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(3), + [sym_abi_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(892), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -14857,41 +10521,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(105), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -14907,75 +10571,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_configurable_item] = STATE(3), - [sym_storage_item] = STATE(3), - [sym_const_item] = STATE(3), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(3), - [sym_abi_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(885), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [7] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_configurable_item] = STATE(12), + [sym_storage_item] = STATE(12), + [sym_const_item] = STATE(12), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(12), + [sym_abi_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(852), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15003,41 +10667,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -15053,10 +10717,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [7] = { + [8] = { [sym__statement] = STATE(8), [sym_empty_statement] = STATE(8), - [sym_primitive_type] = STATE(729), + [sym_primitive_type] = STATE(712), [sym_program_type] = STATE(8), [sym_expression_statement] = STATE(8), [sym_attribute_item] = STATE(8), @@ -15067,62 +10731,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_configurable_item] = STATE(8), [sym_storage_item] = STATE(8), [sym_const_item] = STATE(8), - [sym_asm_item] = STATE(52), + [sym_asm_item] = STATE(83), [sym_type_item] = STATE(8), [sym_function_item] = STATE(8), [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2127), + [sym_function_modifiers] = STATE(2187), [sym_impl_item] = STATE(8), [sym_abi_item] = STATE(8), [sym_trait_item] = STATE(8), [sym_let_declaration] = STATE(8), [sym_use_declaration] = STATE(8), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(935), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_u8] = ACTIONS(111), + [anon_sym_i8] = ACTIONS(111), + [anon_sym_u16] = ACTIONS(111), + [anon_sym_i16] = ACTIONS(111), + [anon_sym_u32] = ACTIONS(111), + [anon_sym_i32] = ACTIONS(111), + [anon_sym_u64] = ACTIONS(111), + [anon_sym_i64] = ACTIONS(111), + [anon_sym_u128] = ACTIONS(111), + [anon_sym_i128] = ACTIONS(111), + [anon_sym_u256] = ACTIONS(111), + [anon_sym_i256] = ACTIONS(111), + [anon_sym_b256] = ACTIONS(111), + [anon_sym_isize] = ACTIONS(111), + [anon_sym_usize] = ACTIONS(111), + [anon_sym_f32] = ACTIONS(111), + [anon_sym_f64] = ACTIONS(111), + [anon_sym_bool] = ACTIONS(111), + [anon_sym_char] = ACTIONS(111), + [anon_sym_str] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(117), + [anon_sym_contract] = ACTIONS(120), + [anon_sym_script] = ACTIONS(120), + [anon_sym_predicate] = ACTIONS(120), + [anon_sym_library] = ACTIONS(120), + [anon_sym_SQUOTE] = ACTIONS(123), + [anon_sym_abi] = ACTIONS(126), + [anon_sym_break] = ACTIONS(129), + [anon_sym_configurable] = ACTIONS(132), + [anon_sym_const] = ACTIONS(135), + [anon_sym_continue] = ACTIONS(138), + [anon_sym_default] = ACTIONS(141), + [anon_sym_mod] = ACTIONS(144), + [anon_sym_enum] = ACTIONS(147), + [anon_sym_fn] = ACTIONS(150), + [anon_sym_for] = ACTIONS(153), + [anon_sym_if] = ACTIONS(156), + [anon_sym_impl] = ACTIONS(159), + [anon_sym_let] = ACTIONS(162), + [anon_sym_match] = ACTIONS(165), + [anon_sym_pub] = ACTIONS(168), + [anon_sym_return] = ACTIONS(171), + [anon_sym_storage] = ACTIONS(174), + [anon_sym_struct] = ACTIONS(177), + [anon_sym_trait] = ACTIONS(180), + [anon_sym_type] = ACTIONS(183), + [anon_sym_use] = ACTIONS(186), + [anon_sym_while] = ACTIONS(189), + [anon_sym_POUND] = ACTIONS(192), + [anon_sym_BANG] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(198), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(210), + [anon_sym_STAR] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(213), + [anon_sym_DOT_DOT] = ACTIONS(216), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(219), + [anon_sym_yield] = ACTIONS(222), + [anon_sym_move] = ACTIONS(225), + [sym_integer_literal] = ACTIONS(228), + [aux_sym_string_literal_token1] = ACTIONS(231), + [sym_char_literal] = ACTIONS(228), + [anon_sym_true] = ACTIONS(234), + [anon_sym_false] = ACTIONS(234), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(237), + [sym_metavariable] = ACTIONS(240), + [sym_raw_string_literal] = ACTIONS(228), + [sym_float_literal] = ACTIONS(228), + [sym_block_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(859), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(109), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15150,40 +10959,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -15199,221 +11009,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_configurable_item] = STATE(8), - [sym_storage_item] = STATE(8), - [sym_const_item] = STATE(8), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(8), - [sym_abi_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_u8] = ACTIONS(119), - [anon_sym_i8] = ACTIONS(119), - [anon_sym_u16] = ACTIONS(119), - [anon_sym_i16] = ACTIONS(119), - [anon_sym_u32] = ACTIONS(119), - [anon_sym_i32] = ACTIONS(119), - [anon_sym_u64] = ACTIONS(119), - [anon_sym_i64] = ACTIONS(119), - [anon_sym_u128] = ACTIONS(119), - [anon_sym_i128] = ACTIONS(119), - [anon_sym_u256] = ACTIONS(119), - [anon_sym_i256] = ACTIONS(119), - [anon_sym_b256] = ACTIONS(119), - [anon_sym_isize] = ACTIONS(119), - [anon_sym_usize] = ACTIONS(119), - [anon_sym_f32] = ACTIONS(119), - [anon_sym_f64] = ACTIONS(119), - [anon_sym_bool] = ACTIONS(119), - [anon_sym_char] = ACTIONS(119), - [anon_sym_str] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_contract] = ACTIONS(128), - [anon_sym_script] = ACTIONS(128), - [anon_sym_predicate] = ACTIONS(128), - [anon_sym_library] = ACTIONS(128), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_abi] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_configurable] = ACTIONS(146), - [anon_sym_const] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(152), - [anon_sym_default] = ACTIONS(155), - [anon_sym_mod] = ACTIONS(158), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_fn] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_impl] = ACTIONS(173), - [anon_sym_let] = ACTIONS(176), - [anon_sym_match] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_storage] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_asm] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(221), - [anon_sym_DOT_DOT] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_metavariable] = ACTIONS(248), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, - [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_configurable_item] = STATE(13), - [sym_storage_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(13), - [sym_abi_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(850), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [10] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_configurable_item] = STATE(9), + [sym_storage_item] = STATE(9), + [sym_const_item] = STATE(9), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(9), + [sym_abi_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(891), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15441,41 +11105,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -15491,10 +11155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [10] = { + [11] = { [sym__statement] = STATE(2), [sym_empty_statement] = STATE(2), - [sym_primitive_type] = STATE(729), + [sym_primitive_type] = STATE(712), [sym_program_type] = STATE(2), [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), @@ -15505,61 +11169,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_configurable_item] = STATE(2), [sym_storage_item] = STATE(2), [sym_const_item] = STATE(2), - [sym_asm_item] = STATE(52), + [sym_asm_item] = STATE(63), [sym_type_item] = STATE(2), [sym_function_item] = STATE(2), [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2127), + [sym_function_modifiers] = STATE(2187), [sym_impl_item] = STATE(2), [sym_abi_item] = STATE(2), [sym_trait_item] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(903), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(843), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15587,41 +11251,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -15637,75 +11301,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_configurable_item] = STATE(14), - [sym_storage_item] = STATE(14), - [sym_const_item] = STATE(14), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(14), - [sym_abi_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(872), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [12] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(854), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -15733,41 +11397,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -15783,221 +11447,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(81), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(913), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_u8] = ACTIONS(119), - [anon_sym_i8] = ACTIONS(119), - [anon_sym_u16] = ACTIONS(119), - [anon_sym_i16] = ACTIONS(119), - [anon_sym_u32] = ACTIONS(119), - [anon_sym_i32] = ACTIONS(119), - [anon_sym_u64] = ACTIONS(119), - [anon_sym_i64] = ACTIONS(119), - [anon_sym_u128] = ACTIONS(119), - [anon_sym_i128] = ACTIONS(119), - [anon_sym_u256] = ACTIONS(119), - [anon_sym_i256] = ACTIONS(119), - [anon_sym_b256] = ACTIONS(119), - [anon_sym_isize] = ACTIONS(119), - [anon_sym_usize] = ACTIONS(119), - [anon_sym_f32] = ACTIONS(119), - [anon_sym_f64] = ACTIONS(119), - [anon_sym_bool] = ACTIONS(119), - [anon_sym_char] = ACTIONS(119), - [anon_sym_str] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_contract] = ACTIONS(128), - [anon_sym_script] = ACTIONS(128), - [anon_sym_predicate] = ACTIONS(128), - [anon_sym_library] = ACTIONS(128), - [anon_sym_LPAREN] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(134), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_abi] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_configurable] = ACTIONS(146), - [anon_sym_const] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(152), - [anon_sym_default] = ACTIONS(155), - [anon_sym_mod] = ACTIONS(158), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_fn] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_impl] = ACTIONS(173), - [anon_sym_let] = ACTIONS(176), - [anon_sym_match] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_storage] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(209), - [anon_sym_asm] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(215), - [anon_sym_COLON_COLON] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(221), - [anon_sym_DOT_DOT] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(227), - [anon_sym_yield] = ACTIONS(230), - [anon_sym_move] = ACTIONS(233), - [sym_integer_literal] = ACTIONS(236), - [aux_sym_string_literal_token1] = ACTIONS(239), - [sym_char_literal] = ACTIONS(236), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(245), - [sym_metavariable] = ACTIONS(248), - [sym_raw_string_literal] = ACTIONS(236), - [sym_float_literal] = ACTIONS(236), - [sym_block_comment] = ACTIONS(3), - }, [13] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(869), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_configurable_item] = STATE(14), + [sym_storage_item] = STATE(14), + [sym_const_item] = STATE(14), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(14), + [sym_abi_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(856), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -16025,41 +11543,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -16076,74 +11594,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_primitive_type] = STATE(729), - [sym_program_type] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_configurable_item] = STATE(12), - [sym_storage_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_asm_item] = STATE(52), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2127), - [sym_impl_item] = STATE(12), - [sym_abi_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(1259), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(838), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(61), - [sym_match_expression] = STATE(61), - [sym_while_expression] = STATE(61), - [sym_for_expression] = STATE(61), - [sym_const_block] = STATE(61), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2118), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(61), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_primitive_type] = STATE(712), + [sym_program_type] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_configurable_item] = STATE(8), + [sym_storage_item] = STATE(8), + [sym_const_item] = STATE(8), + [sym_asm_item] = STATE(63), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2187), + [sym_impl_item] = STATE(8), + [sym_abi_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_visibility_modifier] = STATE(1265), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(858), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(65), + [sym_match_expression] = STATE(65), + [sym_while_expression] = STATE(65), + [sym_for_expression] = STATE(65), + [sym_const_block] = STATE(65), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2108), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(65), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_u8] = ACTIONS(11), @@ -16171,41 +11689,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(17), [anon_sym_predicate] = ACTIONS(17), [anon_sym_library] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(21), + [anon_sym_break] = ACTIONS(23), + [anon_sym_configurable] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(31), + [anon_sym_mod] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_trait] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_configurable] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_mod] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_if] = ACTIONS(45), - [anon_sym_impl] = ACTIONS(47), - [anon_sym_let] = ACTIONS(49), - [anon_sym_match] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_use] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(73), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -16222,50 +11740,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(764), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(769), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(261), [anon_sym_u8] = ACTIONS(11), @@ -16290,52 +11808,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(261), [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(263), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(265), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(261), [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(269), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(269), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(265), [anon_sym_QMARK] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), [anon_sym_DOT_DOT_DOT] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(265), [anon_sym_DOT_DOT_EQ] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(265), [anon_sym_AMP_AMP] = ACTIONS(261), [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), [anon_sym_EQ_EQ] = ACTIONS(261), [anon_sym_BANG_EQ] = ACTIONS(261), [anon_sym_LT_EQ] = ACTIONS(261), [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), [anon_sym_PLUS_EQ] = ACTIONS(261), [anon_sym_DASH_EQ] = ACTIONS(261), [anon_sym_STAR_EQ] = ACTIONS(261), @@ -16349,7 +11867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(85), [anon_sym_EQ_GT] = ACTIONS(261), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(265), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16363,50 +11881,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(758), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(15), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(289), [anon_sym_u8] = ACTIONS(11), @@ -16431,51 +11949,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(289), [anon_sym_RBRACK] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_RPAREN] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(293), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(291), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(289), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(291), [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_else] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_else] = ACTIONS(291), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(291), [anon_sym_DOT_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(291), [anon_sym_DOT_DOT_EQ] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(291), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), [anon_sym_EQ_EQ] = ACTIONS(289), [anon_sym_BANG_EQ] = ACTIONS(289), [anon_sym_LT_EQ] = ACTIONS(289), [anon_sym_GT_EQ] = ACTIONS(289), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_SLASH] = ACTIONS(293), - [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_LT_LT] = ACTIONS(291), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -16489,7 +12007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(85), [anon_sym_EQ_GT] = ACTIONS(289), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(291), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16503,52 +12021,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(756), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(293), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16569,67 +12087,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_RBRACK] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(297), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(295), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(293), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_QMARK] = ACTIONS(293), [anon_sym_LT] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(297), - [anon_sym_else] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_else] = ACTIONS(295), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_PERCENT_EQ] = ACTIONS(295), - [anon_sym_AMP_EQ] = ACTIONS(295), - [anon_sym_PIPE_EQ] = ACTIONS(295), - [anon_sym_CARET_EQ] = ACTIONS(295), - [anon_sym_LT_LT_EQ] = ACTIONS(295), - [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_LT] = ACTIONS(295), + [anon_sym_GT_GT] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_AMP_EQ] = ACTIONS(293), + [anon_sym_PIPE_EQ] = ACTIONS(293), + [anon_sym_CARET_EQ] = ACTIONS(293), + [anon_sym_LT_LT_EQ] = ACTIONS(293), + [anon_sym_GT_GT_EQ] = ACTIONS(293), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_EQ_GT] = ACTIONS(293), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(297), + [anon_sym_DOT] = ACTIONS(295), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16643,52 +12161,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(766), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(775), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(305), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16710,66 +12228,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(299), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(299), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(301), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(307), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(305), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(301), - [anon_sym_else] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_else] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(299), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(299), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_BANG_EQ] = ACTIONS(299), - [anon_sym_LT_EQ] = ACTIONS(299), - [anon_sym_GT_EQ] = ACTIONS(299), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(301), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_PLUS_EQ] = ACTIONS(299), - [anon_sym_DASH_EQ] = ACTIONS(299), - [anon_sym_STAR_EQ] = ACTIONS(299), - [anon_sym_SLASH_EQ] = ACTIONS(299), - [anon_sym_PERCENT_EQ] = ACTIONS(299), - [anon_sym_AMP_EQ] = ACTIONS(299), - [anon_sym_PIPE_EQ] = ACTIONS(299), - [anon_sym_CARET_EQ] = ACTIONS(299), - [anon_sym_LT_LT_EQ] = ACTIONS(299), - [anon_sym_GT_GT_EQ] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(299), + [anon_sym_EQ_GT] = ACTIONS(305), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(307), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16783,52 +12301,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(706), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(309), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16849,67 +12367,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_RBRACK] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(297), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(311), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(297), - [anon_sym_else] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_PERCENT_EQ] = ACTIONS(295), - [anon_sym_AMP_EQ] = ACTIONS(295), - [anon_sym_PIPE_EQ] = ACTIONS(295), - [anon_sym_CARET_EQ] = ACTIONS(295), - [anon_sym_LT_LT_EQ] = ACTIONS(295), - [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(295), + [anon_sym_EQ_GT] = ACTIONS(309), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(297), + [anon_sym_DOT] = ACTIONS(311), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -16923,52 +12441,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(753), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(289), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -16989,67 +12507,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(313), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(291), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_else] = ACTIONS(313), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_else] = ACTIONS(291), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(291), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_LT_LT_EQ] = ACTIONS(289), + [anon_sym_GT_GT_EQ] = ACTIONS(289), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(311), + [anon_sym_EQ_GT] = ACTIONS(289), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(291), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17063,52 +12581,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(744), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(771), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(15), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(313), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17129,65 +12647,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_SQUOTE] = ACTIONS(315), + [anon_sym_abi] = ACTIONS(263), [anon_sym_as] = ACTIONS(317), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(285), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_BANG] = ACTIONS(281), [anon_sym_EQ] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), [anon_sym_asm] = ACTIONS(287), [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_QMARK] = ACTIONS(313), [anon_sym_LT] = ACTIONS(317), [anon_sym_GT] = ACTIONS(317), [anon_sym_else] = ACTIONS(317), [anon_sym_COLON_COLON] = ACTIONS(77), [anon_sym_STAR] = ACTIONS(317), [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(313), [anon_sym_DOT_DOT] = ACTIONS(317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(313), [anon_sym_DASH] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), [anon_sym_PIPE] = ACTIONS(317), [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(313), + [anon_sym_BANG_EQ] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(313), [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_GT_GT] = ACTIONS(317), [anon_sym_SLASH] = ACTIONS(317), [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_PLUS_EQ] = ACTIONS(313), + [anon_sym_DASH_EQ] = ACTIONS(313), + [anon_sym_STAR_EQ] = ACTIONS(313), + [anon_sym_SLASH_EQ] = ACTIONS(313), + [anon_sym_PERCENT_EQ] = ACTIONS(313), + [anon_sym_AMP_EQ] = ACTIONS(313), + [anon_sym_PIPE_EQ] = ACTIONS(313), + [anon_sym_CARET_EQ] = ACTIONS(313), + [anon_sym_LT_LT_EQ] = ACTIONS(313), + [anon_sym_GT_GT_EQ] = ACTIONS(313), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_EQ_GT] = ACTIONS(313), [anon_sym_move] = ACTIONS(87), [anon_sym_DOT] = ACTIONS(317), [sym_integer_literal] = ACTIONS(89), @@ -17203,52 +12721,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(744), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(706), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(309), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -17269,67 +12787,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_RBRACK] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_RPAREN] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(317), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(311), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(309), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(317), - [anon_sym_GT] = ACTIONS(317), - [anon_sym_else] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), [anon_sym_yield] = ACTIONS(85), - [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_EQ_GT] = ACTIONS(309), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(311), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17343,50 +12861,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(846), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(893), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -17409,48 +12927,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(263), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(265), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(269), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(261), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(265), [anon_sym_QMARK] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(265), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), [anon_sym_DOT_DOT_DOT] = ACTIONS(261), - [anon_sym_DOT_DOT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(265), [anon_sym_DOT_DOT_EQ] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(265), [anon_sym_AMP_AMP] = ACTIONS(261), [anon_sym_PIPE_PIPE] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), [anon_sym_EQ_EQ] = ACTIONS(261), [anon_sym_BANG_EQ] = ACTIONS(261), [anon_sym_LT_EQ] = ACTIONS(261), [anon_sym_GT_EQ] = ACTIONS(261), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_PERCENT] = ACTIONS(269), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), [anon_sym_PLUS_EQ] = ACTIONS(261), [anon_sym_DASH_EQ] = ACTIONS(261), [anon_sym_STAR_EQ] = ACTIONS(261), @@ -17463,7 +12981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(261), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(265), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17477,50 +12995,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(744), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(848), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -17542,61 +13060,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(307), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(317), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_QMARK] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(305), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_SLASH] = ACTIONS(307), + [anon_sym_PERCENT] = ACTIONS(307), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(307), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17610,50 +13128,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(839), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(875), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(23), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -17675,61 +13193,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_SQUOTE] = ACTIONS(315), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(317), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(299), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(299), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(299), - [anon_sym_BANG_EQ] = ACTIONS(299), - [anon_sym_LT_EQ] = ACTIONS(299), - [anon_sym_GT_EQ] = ACTIONS(299), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(301), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_PLUS_EQ] = ACTIONS(299), - [anon_sym_DASH_EQ] = ACTIONS(299), - [anon_sym_STAR_EQ] = ACTIONS(299), - [anon_sym_SLASH_EQ] = ACTIONS(299), - [anon_sym_PERCENT_EQ] = ACTIONS(299), - [anon_sym_AMP_EQ] = ACTIONS(299), - [anon_sym_PIPE_EQ] = ACTIONS(299), - [anon_sym_CARET_EQ] = ACTIONS(299), - [anon_sym_LT_LT_EQ] = ACTIONS(299), - [anon_sym_GT_GT_EQ] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(313), + [anon_sym_DOT_DOT] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_EQ_EQ] = ACTIONS(313), + [anon_sym_BANG_EQ] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(317), + [anon_sym_SLASH] = ACTIONS(317), + [anon_sym_PERCENT] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(313), + [anon_sym_DASH_EQ] = ACTIONS(313), + [anon_sym_STAR_EQ] = ACTIONS(313), + [anon_sym_SLASH_EQ] = ACTIONS(313), + [anon_sym_PERCENT_EQ] = ACTIONS(313), + [anon_sym_AMP_EQ] = ACTIONS(313), + [anon_sym_PIPE_EQ] = ACTIONS(313), + [anon_sym_CARET_EQ] = ACTIONS(313), + [anon_sym_LT_LT_EQ] = ACTIONS(313), + [anon_sym_GT_GT_EQ] = ACTIONS(313), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(317), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17743,50 +13261,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(744), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(907), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -17808,61 +13326,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(295), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(317), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(295), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(295), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_LT] = ACTIONS(295), + [anon_sym_GT_GT] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_AMP_EQ] = ACTIONS(293), + [anon_sym_PIPE_EQ] = ACTIONS(293), + [anon_sym_CARET_EQ] = ACTIONS(293), + [anon_sym_LT_LT_EQ] = ACTIONS(293), + [anon_sym_GT_GT_EQ] = ACTIONS(293), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(295), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -17876,50 +13394,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(851), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -17941,61 +13459,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(291), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(313), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(313), - [anon_sym_EQ_EQ] = ACTIONS(311), - [anon_sym_BANG_EQ] = ACTIONS(311), - [anon_sym_LT_EQ] = ACTIONS(311), - [anon_sym_GT_EQ] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(313), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(313), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(291), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_LT_LT_EQ] = ACTIONS(289), + [anon_sym_GT_GT_EQ] = ACTIONS(289), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(313), + [anon_sym_DOT] = ACTIONS(291), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -18009,50 +13527,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(871), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(23), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18075,47 +13593,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(291), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(291), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(291), [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(291), [anon_sym_DOT_DOT_DOT] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(291), [anon_sym_DOT_DOT_EQ] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(291), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), [anon_sym_EQ_EQ] = ACTIONS(289), [anon_sym_BANG_EQ] = ACTIONS(289), [anon_sym_LT_EQ] = ACTIONS(289), [anon_sym_GT_EQ] = ACTIONS(289), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_SLASH] = ACTIONS(293), - [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_LT_LT] = ACTIONS(291), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -18128,7 +13646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(289), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(291), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -18142,50 +13660,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(706), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18207,61 +13725,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(311), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_PERCENT_EQ] = ACTIONS(295), - [anon_sym_AMP_EQ] = ACTIONS(295), - [anon_sym_PIPE_EQ] = ACTIONS(295), - [anon_sym_CARET_EQ] = ACTIONS(295), - [anon_sym_LT_LT_EQ] = ACTIONS(295), - [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(297), + [anon_sym_DOT] = ACTIONS(311), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -18275,50 +13793,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(706), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18340,61 +13858,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(11), [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_as] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_as] = ACTIONS(311), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), [anon_sym_BANG] = ACTIONS(327), - [anon_sym_EQ] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(309), [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(295), - [anon_sym_LT] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(311), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(295), - [anon_sym_PIPE_PIPE] = ACTIONS(295), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_EQ_EQ] = ACTIONS(295), - [anon_sym_BANG_EQ] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(297), - [anon_sym_GT_GT] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(295), - [anon_sym_DASH_EQ] = ACTIONS(295), - [anon_sym_STAR_EQ] = ACTIONS(295), - [anon_sym_SLASH_EQ] = ACTIONS(295), - [anon_sym_PERCENT_EQ] = ACTIONS(295), - [anon_sym_AMP_EQ] = ACTIONS(295), - [anon_sym_PIPE_EQ] = ACTIONS(295), - [anon_sym_CARET_EQ] = ACTIONS(295), - [anon_sym_LT_LT_EQ] = ACTIONS(295), - [anon_sym_GT_GT_EQ] = ACTIONS(295), + [anon_sym_STAR] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(309), + [anon_sym_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(309), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(309), + [anon_sym_BANG_EQ] = ACTIONS(309), + [anon_sym_LT_EQ] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_SLASH] = ACTIONS(311), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(309), + [anon_sym_DASH_EQ] = ACTIONS(309), + [anon_sym_STAR_EQ] = ACTIONS(309), + [anon_sym_SLASH_EQ] = ACTIONS(309), + [anon_sym_PERCENT_EQ] = ACTIONS(309), + [anon_sym_AMP_EQ] = ACTIONS(309), + [anon_sym_PIPE_EQ] = ACTIONS(309), + [anon_sym_CARET_EQ] = ACTIONS(309), + [anon_sym_LT_LT_EQ] = ACTIONS(309), + [anon_sym_GT_GT_EQ] = ACTIONS(309), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(297), + [anon_sym_DOT] = ACTIONS(311), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -18409,65 +13927,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [31] = { [sym_primitive_type] = STATE(802), - [sym_attribute_item] = STATE(49), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1710), - [sym_bracketed_type] = STATE(2163), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1403), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(814), - [sym_scoped_identifier] = STATE(797), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(49), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_attribute_item] = STATE(47), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(2166), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1427), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(812), + [sym_scoped_identifier] = STATE(803), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(47), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18491,32 +14009,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), [anon_sym_RBRACK] = ACTIONS(347), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(353), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(351), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(363), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(365), [anon_sym_STAR] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -18533,66 +14051,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_primitive_type] = STATE(806), - [sym_attribute_item] = STATE(80), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2164), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1420), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(849), - [sym_scoped_identifier] = STATE(809), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(80), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(809), + [sym_attribute_item] = STATE(84), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2167), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1433), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(896), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(84), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18615,32 +14133,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -18657,66 +14175,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_primitive_type] = STATE(806), - [sym_attribute_item] = STATE(80), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2164), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1420), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(849), - [sym_scoped_identifier] = STATE(809), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(80), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(809), + [sym_attribute_item] = STATE(84), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2167), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1433), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(896), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(84), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18739,32 +14257,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(363), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -18781,66 +14299,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_primitive_type] = STATE(806), - [sym_attribute_item] = STATE(80), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2164), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1420), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(849), - [sym_scoped_identifier] = STATE(809), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(80), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(809), + [sym_attribute_item] = STATE(84), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2167), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1433), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(896), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(84), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -18863,32 +14381,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(363), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -18905,65 +14423,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_primitive_type] = STATE(802), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2163), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1403), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(770), - [sym_scoped_identifier] = STATE(797), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(343), + [sym_primitive_type] = STATE(809), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2167), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1433), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -18985,31 +14503,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(353), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(385), [sym_mutable_specifier] = ACTIONS(395), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19019,72 +14537,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_metavariable] = ACTIONS(373), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_primitive_type] = STATE(811), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2162), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1394), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(770), - [sym_scoped_identifier] = STATE(906), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(399), + [sym_primitive_type] = STATE(802), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2166), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1427), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(803), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19106,31 +14624,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(403), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(351), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(363), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(365), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(407), - [sym_mutable_specifier] = ACTIONS(409), + [anon_sym_AMP] = ACTIONS(369), + [sym_mutable_specifier] = ACTIONS(399), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19140,72 +14658,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_metavariable] = ACTIONS(413), + [sym_self] = ACTIONS(371), + [sym_metavariable] = ACTIONS(373), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_primitive_type] = STATE(806), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2164), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1420), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(770), - [sym_scoped_identifier] = STATE(809), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(375), + [sym_primitive_type] = STATE(814), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2165), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1371), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(898), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(401), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19227,31 +14745,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(405), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(407), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(385), - [sym_mutable_specifier] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(409), + [sym_mutable_specifier] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19261,72 +14779,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(387), - [sym_metavariable] = ACTIONS(389), + [sym_self] = ACTIONS(413), + [sym_metavariable] = ACTIONS(415), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_primitive_type] = STATE(811), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2162), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1394), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(771), - [sym_scoped_identifier] = STATE(906), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(399), + [sym_primitive_type] = STATE(809), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2167), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1433), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(773), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(375), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19348,30 +14866,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(403), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(377), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19381,72 +14899,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_metavariable] = ACTIONS(413), + [sym_self] = ACTIONS(387), + [sym_metavariable] = ACTIONS(389), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_primitive_type] = STATE(806), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2164), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1420), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(771), - [sym_scoped_identifier] = STATE(809), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(375), + [sym_primitive_type] = STATE(814), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2165), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1371), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(773), + [sym_scoped_identifier] = STATE(898), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(401), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19468,30 +14986,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(403), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(405), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(407), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19501,71 +15019,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(387), - [sym_metavariable] = ACTIONS(389), + [sym_self] = ACTIONS(413), + [sym_metavariable] = ACTIONS(415), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [40] = { [sym_primitive_type] = STATE(802), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2163), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1403), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(771), - [sym_scoped_identifier] = STATE(797), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2166), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1427), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(773), + [sym_scoped_identifier] = STATE(803), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(343), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -19588,30 +15106,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(353), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(351), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(363), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(365), [anon_sym_STAR] = ACTIONS(367), [anon_sym_AMP] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19628,65 +15146,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_primitive_type] = STATE(811), - [sym_asm_item] = STATE(675), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1697), - [sym_bracketed_type] = STATE(2162), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_function] = STATE(649), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1394), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(942), - [sym_scoped_identifier] = STATE(906), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_scoped_type_identifier] = STATE(1112), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(832), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(832), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(399), + [sym_primitive_type] = STATE(814), + [sym_asm_item] = STATE(751), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1618), + [sym_bracketed_type] = STATE(2165), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_function] = STATE(653), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1371), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(941), + [sym_scoped_identifier] = STATE(898), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_scoped_type_identifier] = STATE(1170), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(819), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(819), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(401), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -19708,30 +15226,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(351), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(403), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(363), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(405), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(407), [anon_sym_STAR] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -19742,13 +15260,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(417), - [sym_metavariable] = ACTIONS(413), + [sym_metavariable] = ACTIONS(415), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_else_clause] = STATE(59), + [sym_else_clause] = STATE(79), [ts_builtin_sym_end] = ACTIONS(419), [sym_identifier] = ACTIONS(421), [anon_sym_SEMI] = ACTIONS(419), @@ -19777,9 +15295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(421), [anon_sym_predicate] = ACTIONS(421), [anon_sym_library] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_SQUOTE] = ACTIONS(421), [anon_sym_abi] = ACTIONS(421), [anon_sym_as] = ACTIONS(421), @@ -19807,6 +15322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(419), [anon_sym_BANG] = ACTIONS(421), [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), [anon_sym_asm] = ACTIONS(421), [anon_sym_PLUS] = ACTIONS(421), [anon_sym_QMARK] = ACTIONS(419), @@ -19858,161 +15376,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [ts_builtin_sym_end] = ACTIONS(425), - [sym_identifier] = ACTIONS(427), + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(757), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(425), - [anon_sym_u8] = ACTIONS(427), - [anon_sym_i8] = ACTIONS(427), - [anon_sym_u16] = ACTIONS(427), - [anon_sym_i16] = ACTIONS(427), - [anon_sym_u32] = ACTIONS(427), - [anon_sym_i32] = ACTIONS(427), - [anon_sym_u64] = ACTIONS(427), - [anon_sym_i64] = ACTIONS(427), - [anon_sym_u128] = ACTIONS(427), - [anon_sym_i128] = ACTIONS(427), - [anon_sym_u256] = ACTIONS(427), - [anon_sym_i256] = ACTIONS(427), - [anon_sym_b256] = ACTIONS(427), - [anon_sym_isize] = ACTIONS(427), - [anon_sym_usize] = ACTIONS(427), - [anon_sym_f32] = ACTIONS(427), - [anon_sym_f64] = ACTIONS(427), - [anon_sym_bool] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_str] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_contract] = ACTIONS(427), - [anon_sym_script] = ACTIONS(427), - [anon_sym_predicate] = ACTIONS(427), - [anon_sym_library] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_SQUOTE] = ACTIONS(427), - [anon_sym_abi] = ACTIONS(427), - [anon_sym_as] = ACTIONS(427), - [anon_sym_break] = ACTIONS(427), - [anon_sym_configurable] = ACTIONS(427), - [anon_sym_const] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_mod] = ACTIONS(427), - [anon_sym_enum] = ACTIONS(427), - [anon_sym_fn] = ACTIONS(427), - [anon_sym_for] = ACTIONS(427), - [anon_sym_if] = ACTIONS(427), - [anon_sym_impl] = ACTIONS(427), - [anon_sym_let] = ACTIONS(427), - [anon_sym_match] = ACTIONS(427), - [anon_sym_pub] = ACTIONS(427), - [anon_sym_return] = ACTIONS(427), - [anon_sym_storage] = ACTIONS(427), - [anon_sym_struct] = ACTIONS(427), - [anon_sym_trait] = ACTIONS(427), - [anon_sym_type] = ACTIONS(427), - [anon_sym_use] = ACTIONS(427), - [anon_sym_while] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_BANG] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(427), - [anon_sym_asm] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_else] = ACTIONS(427), - [anon_sym_COLON_COLON] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(425), - [anon_sym_PIPE_PIPE] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_EQ_EQ] = ACTIONS(425), - [anon_sym_BANG_EQ] = ACTIONS(425), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_EQ] = ACTIONS(425), - [anon_sym_DASH_EQ] = ACTIONS(425), - [anon_sym_STAR_EQ] = ACTIONS(425), - [anon_sym_SLASH_EQ] = ACTIONS(425), - [anon_sym_PERCENT_EQ] = ACTIONS(425), - [anon_sym_AMP_EQ] = ACTIONS(425), - [anon_sym_PIPE_EQ] = ACTIONS(425), - [anon_sym_CARET_EQ] = ACTIONS(425), - [anon_sym_LT_LT_EQ] = ACTIONS(425), - [anon_sym_GT_GT_EQ] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_move] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(425), - [aux_sym_string_literal_token1] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [anon_sym_true] = ACTIONS(427), - [anon_sym_false] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(427), - [sym_metavariable] = ACTIONS(425), - [sym_raw_string_literal] = ACTIONS(425), - [sym_float_literal] = ACTIONS(425), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(49), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(814), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_u256] = ACTIONS(429), + [anon_sym_i256] = ACTIONS(429), + [anon_sym_b256] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_contract] = ACTIONS(429), + [anon_sym_script] = ACTIONS(429), + [anon_sym_predicate] = ACTIONS(429), + [anon_sym_library] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_abi] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_configurable] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_mod] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(429), + [anon_sym_fn] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_impl] = ACTIONS(429), + [anon_sym_let] = ACTIONS(429), + [anon_sym_match] = ACTIONS(429), + [anon_sym_pub] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_storage] = ACTIONS(429), + [anon_sym_struct] = ACTIONS(429), + [anon_sym_trait] = ACTIONS(429), + [anon_sym_type] = ACTIONS(429), + [anon_sym_use] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_move] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [45] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(80), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(830), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(80), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -20035,140 +15662,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(347), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(433), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [45] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(772), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -20185,115 +15703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(84), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(829), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { [ts_builtin_sym_end] = ACTIONS(435), [sym_identifier] = ACTIONS(437), [anon_sym_SEMI] = ACTIONS(435), @@ -20322,9 +15731,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(437), [anon_sym_predicate] = ACTIONS(437), [anon_sym_library] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_SQUOTE] = ACTIONS(437), [anon_sym_abi] = ACTIONS(437), [anon_sym_as] = ACTIONS(437), @@ -20352,6 +15758,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(437), [anon_sym_EQ] = ACTIONS(437), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), [anon_sym_asm] = ACTIONS(437), [anon_sym_PLUS] = ACTIONS(437), [anon_sym_QMARK] = ACTIONS(435), @@ -20402,162 +15811,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_u256] = ACTIONS(441), - [anon_sym_i256] = ACTIONS(441), - [anon_sym_b256] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_contract] = ACTIONS(441), - [anon_sym_script] = ACTIONS(441), - [anon_sym_predicate] = ACTIONS(441), - [anon_sym_library] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_abi] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_configurable] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_mod] = ACTIONS(441), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_fn] = ACTIONS(441), - [anon_sym_for] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_impl] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_match] = ACTIONS(441), - [anon_sym_pub] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_storage] = ACTIONS(441), - [anon_sym_struct] = ACTIONS(441), - [anon_sym_trait] = ACTIONS(441), - [anon_sym_type] = ACTIONS(441), - [anon_sym_use] = ACTIONS(441), - [anon_sym_while] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_asm] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_else] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(441), - [anon_sym_move] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), + [47] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(474), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(816), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(439), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(476), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(810), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(476), + [48] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(47), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(812), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(47), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -20580,31 +15989,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(445), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -20620,6 +16029,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [49] = { + [ts_builtin_sym_end] = ACTIONS(443), + [sym_identifier] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(443), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_u256] = ACTIONS(445), + [anon_sym_i256] = ACTIONS(445), + [anon_sym_b256] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_contract] = ACTIONS(445), + [anon_sym_script] = ACTIONS(445), + [anon_sym_predicate] = ACTIONS(445), + [anon_sym_library] = ACTIONS(445), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_abi] = ACTIONS(445), + [anon_sym_as] = ACTIONS(445), + [anon_sym_break] = ACTIONS(445), + [anon_sym_configurable] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_mod] = ACTIONS(445), + [anon_sym_enum] = ACTIONS(445), + [anon_sym_fn] = ACTIONS(445), + [anon_sym_for] = ACTIONS(445), + [anon_sym_if] = ACTIONS(445), + [anon_sym_impl] = ACTIONS(445), + [anon_sym_let] = ACTIONS(445), + [anon_sym_match] = ACTIONS(445), + [anon_sym_pub] = ACTIONS(445), + [anon_sym_return] = ACTIONS(445), + [anon_sym_storage] = ACTIONS(445), + [anon_sym_struct] = ACTIONS(445), + [anon_sym_trait] = ACTIONS(445), + [anon_sym_type] = ACTIONS(445), + [anon_sym_use] = ACTIONS(445), + [anon_sym_while] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_asm] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_else] = ACTIONS(445), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(443), + [anon_sym_PIPE_PIPE] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(443), + [anon_sym_LT_EQ] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(443), + [anon_sym_DASH_EQ] = ACTIONS(443), + [anon_sym_STAR_EQ] = ACTIONS(443), + [anon_sym_SLASH_EQ] = ACTIONS(443), + [anon_sym_PERCENT_EQ] = ACTIONS(443), + [anon_sym_AMP_EQ] = ACTIONS(443), + [anon_sym_PIPE_EQ] = ACTIONS(443), + [anon_sym_CARET_EQ] = ACTIONS(443), + [anon_sym_LT_LT_EQ] = ACTIONS(443), + [anon_sym_GT_GT_EQ] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), + [sym_block_comment] = ACTIONS(3), + }, [50] = { [ts_builtin_sym_end] = ACTIONS(447), [sym_identifier] = ACTIONS(449), @@ -20649,9 +16167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(449), [anon_sym_predicate] = ACTIONS(449), [anon_sym_library] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_SQUOTE] = ACTIONS(449), [anon_sym_abi] = ACTIONS(449), [anon_sym_as] = ACTIONS(449), @@ -20679,6 +16194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(447), [anon_sym_BANG] = ACTIONS(449), [anon_sym_EQ] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(447), [anon_sym_asm] = ACTIONS(449), [anon_sym_PLUS] = ACTIONS(449), [anon_sym_QMARK] = ACTIONS(447), @@ -20729,52 +16247,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(876), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(83), + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(82), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(868), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(82), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -20797,30 +16315,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_RPAREN] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -20839,7 +16357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [52] = { [ts_builtin_sym_end] = ACTIONS(453), [sym_identifier] = ACTIONS(455), - [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(453), [anon_sym_u8] = ACTIONS(455), [anon_sym_i8] = ACTIONS(455), [anon_sym_u16] = ACTIONS(455), @@ -20860,17 +16378,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(455), [anon_sym_char] = ACTIONS(455), [anon_sym_str] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_LBRACK] = ACTIONS(453), [anon_sym_contract] = ACTIONS(455), [anon_sym_script] = ACTIONS(455), [anon_sym_predicate] = ACTIONS(455), [anon_sym_library] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(457), [anon_sym_SQUOTE] = ACTIONS(455), [anon_sym_abi] = ACTIONS(455), - [anon_sym_as] = ACTIONS(460), + [anon_sym_as] = ACTIONS(455), [anon_sym_break] = ACTIONS(455), [anon_sym_configurable] = ACTIONS(455), [anon_sym_const] = ACTIONS(455), @@ -20894,44 +16409,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(455), [anon_sym_POUND] = ACTIONS(453), [anon_sym_BANG] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(453), [anon_sym_asm] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), [anon_sym_COLON_COLON] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT] = ACTIONS(464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), [anon_sym_yield] = ACTIONS(455), [anon_sym_move] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(455), [sym_integer_literal] = ACTIONS(453), [aux_sym_string_literal_token1] = ACTIONS(453), [sym_char_literal] = ACTIONS(453), @@ -20945,54 +16463,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1841), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [ts_builtin_sym_end] = ACTIONS(457), + [sym_identifier] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_u256] = ACTIONS(459), + [anon_sym_i256] = ACTIONS(459), + [anon_sym_b256] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(457), + [anon_sym_contract] = ACTIONS(459), + [anon_sym_script] = ACTIONS(459), + [anon_sym_predicate] = ACTIONS(459), + [anon_sym_library] = ACTIONS(459), + [anon_sym_SQUOTE] = ACTIONS(459), + [anon_sym_abi] = ACTIONS(459), + [anon_sym_as] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_configurable] = ACTIONS(459), + [anon_sym_const] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_default] = ACTIONS(459), + [anon_sym_mod] = ACTIONS(459), + [anon_sym_enum] = ACTIONS(459), + [anon_sym_fn] = ACTIONS(459), + [anon_sym_for] = ACTIONS(459), + [anon_sym_if] = ACTIONS(459), + [anon_sym_impl] = ACTIONS(459), + [anon_sym_let] = ACTIONS(459), + [anon_sym_match] = ACTIONS(459), + [anon_sym_pub] = ACTIONS(459), + [anon_sym_return] = ACTIONS(459), + [anon_sym_storage] = ACTIONS(459), + [anon_sym_struct] = ACTIONS(459), + [anon_sym_trait] = ACTIONS(459), + [anon_sym_type] = ACTIONS(459), + [anon_sym_use] = ACTIONS(459), + [anon_sym_while] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_asm] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(459), + [anon_sym_QMARK] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_COLON_COLON] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_PIPE] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(459), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_move] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(457), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(457), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(459), + [sym_metavariable] = ACTIONS(457), + [sym_raw_string_literal] = ACTIONS(457), + [sym_float_literal] = ACTIONS(457), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(461), + [sym_identifier] = ACTIONS(463), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_u8] = ACTIONS(463), + [anon_sym_i8] = ACTIONS(463), + [anon_sym_u16] = ACTIONS(463), + [anon_sym_i16] = ACTIONS(463), + [anon_sym_u32] = ACTIONS(463), + [anon_sym_i32] = ACTIONS(463), + [anon_sym_u64] = ACTIONS(463), + [anon_sym_i64] = ACTIONS(463), + [anon_sym_u128] = ACTIONS(463), + [anon_sym_i128] = ACTIONS(463), + [anon_sym_u256] = ACTIONS(463), + [anon_sym_i256] = ACTIONS(463), + [anon_sym_b256] = ACTIONS(463), + [anon_sym_isize] = ACTIONS(463), + [anon_sym_usize] = ACTIONS(463), + [anon_sym_f32] = ACTIONS(463), + [anon_sym_f64] = ACTIONS(463), + [anon_sym_bool] = ACTIONS(463), + [anon_sym_char] = ACTIONS(463), + [anon_sym_str] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_contract] = ACTIONS(463), + [anon_sym_script] = ACTIONS(463), + [anon_sym_predicate] = ACTIONS(463), + [anon_sym_library] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(463), + [anon_sym_abi] = ACTIONS(463), + [anon_sym_as] = ACTIONS(463), + [anon_sym_break] = ACTIONS(463), + [anon_sym_configurable] = ACTIONS(463), + [anon_sym_const] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(463), + [anon_sym_default] = ACTIONS(463), + [anon_sym_mod] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(463), + [anon_sym_fn] = ACTIONS(463), + [anon_sym_for] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_impl] = ACTIONS(463), + [anon_sym_let] = ACTIONS(463), + [anon_sym_match] = ACTIONS(463), + [anon_sym_pub] = ACTIONS(463), + [anon_sym_return] = ACTIONS(463), + [anon_sym_storage] = ACTIONS(463), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_trait] = ACTIONS(463), + [anon_sym_type] = ACTIONS(463), + [anon_sym_use] = ACTIONS(463), + [anon_sym_while] = ACTIONS(463), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_asm] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_PERCENT] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_STAR_EQ] = ACTIONS(461), + [anon_sym_SLASH_EQ] = ACTIONS(461), + [anon_sym_PERCENT_EQ] = ACTIONS(461), + [anon_sym_AMP_EQ] = ACTIONS(461), + [anon_sym_PIPE_EQ] = ACTIONS(461), + [anon_sym_CARET_EQ] = ACTIONS(461), + [anon_sym_LT_LT_EQ] = ACTIONS(461), + [anon_sym_GT_GT_EQ] = ACTIONS(461), + [anon_sym_yield] = ACTIONS(463), + [anon_sym_move] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(463), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(461), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(463), + [sym_metavariable] = ACTIONS(461), + [sym_raw_string_literal] = ACTIONS(461), + [sym_float_literal] = ACTIONS(461), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(82), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(868), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21014,45 +16747,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(465), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [54] = { + [56] = { + [ts_builtin_sym_end] = ACTIONS(467), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_u256] = ACTIONS(469), + [anon_sym_i256] = ACTIONS(469), + [anon_sym_b256] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_contract] = ACTIONS(469), + [anon_sym_script] = ACTIONS(469), + [anon_sym_predicate] = ACTIONS(469), + [anon_sym_library] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_abi] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_configurable] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(467), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_asm] = ACTIONS(469), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_move] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(467), + [aux_sym_string_literal_token1] = ACTIONS(467), + [sym_char_literal] = ACTIONS(467), + [anon_sym_true] = ACTIONS(469), + [anon_sym_false] = ACTIONS(469), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_metavariable] = ACTIONS(467), + [sym_raw_string_literal] = ACTIONS(467), + [sym_float_literal] = ACTIONS(467), + [sym_block_comment] = ACTIONS(3), + }, + [57] = { + [ts_builtin_sym_end] = ACTIONS(471), + [sym_identifier] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_u256] = ACTIONS(473), + [anon_sym_i256] = ACTIONS(473), + [anon_sym_b256] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_contract] = ACTIONS(473), + [anon_sym_script] = ACTIONS(473), + [anon_sym_predicate] = ACTIONS(473), + [anon_sym_library] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_abi] = ACTIONS(473), + [anon_sym_as] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_configurable] = ACTIONS(473), + [anon_sym_const] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_mod] = ACTIONS(473), + [anon_sym_enum] = ACTIONS(473), + [anon_sym_fn] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_impl] = ACTIONS(473), + [anon_sym_let] = ACTIONS(473), + [anon_sym_match] = ACTIONS(473), + [anon_sym_pub] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_storage] = ACTIONS(473), + [anon_sym_struct] = ACTIONS(473), + [anon_sym_trait] = ACTIONS(473), + [anon_sym_type] = ACTIONS(473), + [anon_sym_use] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_asm] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [sym_integer_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(471), + [sym_char_literal] = ACTIONS(471), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(473), + [sym_metavariable] = ACTIONS(471), + [sym_raw_string_literal] = ACTIONS(471), + [sym_float_literal] = ACTIONS(471), + [sym_block_comment] = ACTIONS(3), + }, + [58] = { [ts_builtin_sym_end] = ACTIONS(475), [sym_identifier] = ACTIONS(477), [anon_sym_SEMI] = ACTIONS(475), @@ -21081,9 +17031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(477), [anon_sym_predicate] = ACTIONS(477), [anon_sym_library] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(477), [anon_sym_abi] = ACTIONS(477), [anon_sym_as] = ACTIONS(477), @@ -21111,6 +17058,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(475), [anon_sym_BANG] = ACTIONS(477), [anon_sym_EQ] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), [anon_sym_asm] = ACTIONS(477), [anon_sym_PLUS] = ACTIONS(477), [anon_sym_QMARK] = ACTIONS(475), @@ -21160,55 +17110,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(475), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(939), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1862), - [sym__let_chain] = STATE(1861), - [sym__condition] = STATE(2102), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [59] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1987), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21230,200 +17180,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), [anon_sym_let] = ACTIONS(479), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u128] = ACTIONS(483), - [anon_sym_i128] = ACTIONS(483), - [anon_sym_u256] = ACTIONS(483), - [anon_sym_i256] = ACTIONS(483), - [anon_sym_b256] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_str] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_contract] = ACTIONS(483), - [anon_sym_script] = ACTIONS(483), - [anon_sym_predicate] = ACTIONS(483), - [anon_sym_library] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(483), - [anon_sym_abi] = ACTIONS(483), - [anon_sym_as] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_configurable] = ACTIONS(483), - [anon_sym_const] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_mod] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_impl] = ACTIONS(483), - [anon_sym_let] = ACTIONS(483), - [anon_sym_match] = ACTIONS(483), - [anon_sym_pub] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_storage] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_trait] = ACTIONS(483), - [anon_sym_type] = ACTIONS(483), - [anon_sym_use] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_asm] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_PERCENT_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [sym_integer_literal] = ACTIONS(481), - [aux_sym_string_literal_token1] = ACTIONS(481), - [sym_char_literal] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(483), - [sym_metavariable] = ACTIONS(481), - [sym_raw_string_literal] = ACTIONS(481), - [sym_float_literal] = ACTIONS(481), - [sym_block_comment] = ACTIONS(3), - }, - [57] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1801), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [60] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1833), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -21446,29 +17288,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -21484,55 +17326,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1954), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [61] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(84), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(896), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -21554,739 +17395,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_u8] = ACTIONS(487), - [anon_sym_i8] = ACTIONS(487), - [anon_sym_u16] = ACTIONS(487), - [anon_sym_i16] = ACTIONS(487), - [anon_sym_u32] = ACTIONS(487), - [anon_sym_i32] = ACTIONS(487), - [anon_sym_u64] = ACTIONS(487), - [anon_sym_i64] = ACTIONS(487), - [anon_sym_u128] = ACTIONS(487), - [anon_sym_i128] = ACTIONS(487), - [anon_sym_u256] = ACTIONS(487), - [anon_sym_i256] = ACTIONS(487), - [anon_sym_b256] = ACTIONS(487), - [anon_sym_isize] = ACTIONS(487), - [anon_sym_usize] = ACTIONS(487), - [anon_sym_f32] = ACTIONS(487), - [anon_sym_f64] = ACTIONS(487), - [anon_sym_bool] = ACTIONS(487), - [anon_sym_char] = ACTIONS(487), - [anon_sym_str] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_contract] = ACTIONS(487), - [anon_sym_script] = ACTIONS(487), - [anon_sym_predicate] = ACTIONS(487), - [anon_sym_library] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_SQUOTE] = ACTIONS(487), - [anon_sym_abi] = ACTIONS(487), - [anon_sym_as] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_configurable] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_mod] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [anon_sym_fn] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_impl] = ACTIONS(487), - [anon_sym_let] = ACTIONS(487), - [anon_sym_match] = ACTIONS(487), - [anon_sym_pub] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_storage] = ACTIONS(487), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_trait] = ACTIONS(487), - [anon_sym_type] = ACTIONS(487), - [anon_sym_use] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_asm] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_COLON_COLON] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_CARET] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_BANG_EQ] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(485), - [anon_sym_GT_EQ] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_PERCENT] = ACTIONS(487), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [anon_sym_DASH_EQ] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(485), - [anon_sym_SLASH_EQ] = ACTIONS(485), - [anon_sym_PERCENT_EQ] = ACTIONS(485), - [anon_sym_AMP_EQ] = ACTIONS(485), - [anon_sym_PIPE_EQ] = ACTIONS(485), - [anon_sym_CARET_EQ] = ACTIONS(485), - [anon_sym_LT_LT_EQ] = ACTIONS(485), - [anon_sym_GT_GT_EQ] = ACTIONS(485), - [anon_sym_yield] = ACTIONS(487), - [anon_sym_move] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(487), - [sym_integer_literal] = ACTIONS(485), - [aux_sym_string_literal_token1] = ACTIONS(485), - [sym_char_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(487), - [sym_metavariable] = ACTIONS(485), - [sym_raw_string_literal] = ACTIONS(485), - [sym_float_literal] = ACTIONS(485), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1945), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(487), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(489), - [sym_identifier] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_u8] = ACTIONS(491), - [anon_sym_i8] = ACTIONS(491), - [anon_sym_u16] = ACTIONS(491), - [anon_sym_i16] = ACTIONS(491), - [anon_sym_u32] = ACTIONS(491), - [anon_sym_i32] = ACTIONS(491), - [anon_sym_u64] = ACTIONS(491), - [anon_sym_i64] = ACTIONS(491), - [anon_sym_u128] = ACTIONS(491), - [anon_sym_i128] = ACTIONS(491), - [anon_sym_u256] = ACTIONS(491), - [anon_sym_i256] = ACTIONS(491), - [anon_sym_b256] = ACTIONS(491), - [anon_sym_isize] = ACTIONS(491), - [anon_sym_usize] = ACTIONS(491), - [anon_sym_f32] = ACTIONS(491), - [anon_sym_f64] = ACTIONS(491), - [anon_sym_bool] = ACTIONS(491), - [anon_sym_char] = ACTIONS(491), - [anon_sym_str] = ACTIONS(491), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_contract] = ACTIONS(491), - [anon_sym_script] = ACTIONS(491), - [anon_sym_predicate] = ACTIONS(491), - [anon_sym_library] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_SQUOTE] = ACTIONS(491), - [anon_sym_abi] = ACTIONS(491), - [anon_sym_as] = ACTIONS(493), - [anon_sym_break] = ACTIONS(491), - [anon_sym_configurable] = ACTIONS(491), - [anon_sym_const] = ACTIONS(491), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_default] = ACTIONS(491), - [anon_sym_mod] = ACTIONS(491), - [anon_sym_enum] = ACTIONS(491), - [anon_sym_fn] = ACTIONS(491), - [anon_sym_for] = ACTIONS(491), - [anon_sym_if] = ACTIONS(491), - [anon_sym_impl] = ACTIONS(491), - [anon_sym_let] = ACTIONS(491), - [anon_sym_match] = ACTIONS(491), - [anon_sym_pub] = ACTIONS(491), - [anon_sym_return] = ACTIONS(491), - [anon_sym_storage] = ACTIONS(491), - [anon_sym_struct] = ACTIONS(491), - [anon_sym_trait] = ACTIONS(491), - [anon_sym_type] = ACTIONS(491), - [anon_sym_use] = ACTIONS(491), - [anon_sym_while] = ACTIONS(491), - [anon_sym_POUND] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_EQ] = ACTIONS(493), - [anon_sym_asm] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_COLON_COLON] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(491), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(491), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_CARET] = ACTIONS(493), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(495), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(493), - [anon_sym_PLUS_EQ] = ACTIONS(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), - [anon_sym_yield] = ACTIONS(491), - [anon_sym_move] = ACTIONS(491), - [anon_sym_DOT] = ACTIONS(493), - [sym_integer_literal] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), - [sym_char_literal] = ACTIONS(489), - [anon_sym_true] = ACTIONS(491), - [anon_sym_false] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(491), - [sym_metavariable] = ACTIONS(489), - [sym_raw_string_literal] = ACTIONS(489), - [sym_float_literal] = ACTIONS(489), - [sym_block_comment] = ACTIONS(3), - }, [62] = { - [ts_builtin_sym_end] = ACTIONS(497), - [sym_identifier] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(497), - [anon_sym_u8] = ACTIONS(499), - [anon_sym_i8] = ACTIONS(499), - [anon_sym_u16] = ACTIONS(499), - [anon_sym_i16] = ACTIONS(499), - [anon_sym_u32] = ACTIONS(499), - [anon_sym_i32] = ACTIONS(499), - [anon_sym_u64] = ACTIONS(499), - [anon_sym_i64] = ACTIONS(499), - [anon_sym_u128] = ACTIONS(499), - [anon_sym_i128] = ACTIONS(499), - [anon_sym_u256] = ACTIONS(499), - [anon_sym_i256] = ACTIONS(499), - [anon_sym_b256] = ACTIONS(499), - [anon_sym_isize] = ACTIONS(499), - [anon_sym_usize] = ACTIONS(499), - [anon_sym_f32] = ACTIONS(499), - [anon_sym_f64] = ACTIONS(499), - [anon_sym_bool] = ACTIONS(499), - [anon_sym_char] = ACTIONS(499), - [anon_sym_str] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_contract] = ACTIONS(499), - [anon_sym_script] = ACTIONS(499), - [anon_sym_predicate] = ACTIONS(499), - [anon_sym_library] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_abi] = ACTIONS(499), - [anon_sym_as] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_configurable] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(499), - [anon_sym_mod] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [anon_sym_fn] = ACTIONS(499), - [anon_sym_for] = ACTIONS(499), - [anon_sym_if] = ACTIONS(499), - [anon_sym_impl] = ACTIONS(499), - [anon_sym_let] = ACTIONS(499), - [anon_sym_match] = ACTIONS(499), - [anon_sym_pub] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_storage] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_trait] = ACTIONS(499), - [anon_sym_type] = ACTIONS(499), - [anon_sym_use] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_asm] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_QMARK] = ACTIONS(497), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(497), - [anon_sym_DOT_DOT] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_yield] = ACTIONS(499), - [anon_sym_move] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(499), - [sym_integer_literal] = ACTIONS(497), - [aux_sym_string_literal_token1] = ACTIONS(497), - [sym_char_literal] = ACTIONS(497), - [anon_sym_true] = ACTIONS(499), - [anon_sym_false] = ACTIONS(499), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(499), - [sym_metavariable] = ACTIONS(497), - [sym_raw_string_literal] = ACTIONS(497), - [sym_float_literal] = ACTIONS(497), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1860), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1943), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(80), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(849), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(80), + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(82), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(868), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(82), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -22309,30 +17503,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(489), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -22348,629 +17542,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_u8] = ACTIONS(505), - [anon_sym_i8] = ACTIONS(505), - [anon_sym_u16] = ACTIONS(505), - [anon_sym_i16] = ACTIONS(505), - [anon_sym_u32] = ACTIONS(505), - [anon_sym_i32] = ACTIONS(505), - [anon_sym_u64] = ACTIONS(505), - [anon_sym_i64] = ACTIONS(505), - [anon_sym_u128] = ACTIONS(505), - [anon_sym_i128] = ACTIONS(505), - [anon_sym_u256] = ACTIONS(505), - [anon_sym_i256] = ACTIONS(505), - [anon_sym_b256] = ACTIONS(505), - [anon_sym_isize] = ACTIONS(505), - [anon_sym_usize] = ACTIONS(505), - [anon_sym_f32] = ACTIONS(505), - [anon_sym_f64] = ACTIONS(505), - [anon_sym_bool] = ACTIONS(505), - [anon_sym_char] = ACTIONS(505), - [anon_sym_str] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_contract] = ACTIONS(505), - [anon_sym_script] = ACTIONS(505), - [anon_sym_predicate] = ACTIONS(505), - [anon_sym_library] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_abi] = ACTIONS(505), - [anon_sym_as] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_configurable] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_mod] = ACTIONS(505), - [anon_sym_enum] = ACTIONS(505), - [anon_sym_fn] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_impl] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_match] = ACTIONS(505), - [anon_sym_pub] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_storage] = ACTIONS(505), - [anon_sym_struct] = ACTIONS(505), - [anon_sym_trait] = ACTIONS(505), - [anon_sym_type] = ACTIONS(505), - [anon_sym_use] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_POUND] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(505), - [anon_sym_asm] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_COLON_COLON] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(503), - [anon_sym_DOT_DOT] = ACTIONS(505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ] = ACTIONS(503), - [anon_sym_LT_EQ] = ACTIONS(503), - [anon_sym_GT_EQ] = ACTIONS(503), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(503), - [anon_sym_DASH_EQ] = ACTIONS(503), - [anon_sym_STAR_EQ] = ACTIONS(503), - [anon_sym_SLASH_EQ] = ACTIONS(503), - [anon_sym_PERCENT_EQ] = ACTIONS(503), - [anon_sym_AMP_EQ] = ACTIONS(503), - [anon_sym_PIPE_EQ] = ACTIONS(503), - [anon_sym_CARET_EQ] = ACTIONS(503), - [anon_sym_LT_LT_EQ] = ACTIONS(503), - [anon_sym_GT_GT_EQ] = ACTIONS(503), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [sym_integer_literal] = ACTIONS(503), - [aux_sym_string_literal_token1] = ACTIONS(503), - [sym_char_literal] = ACTIONS(503), - [anon_sym_true] = ACTIONS(505), - [anon_sym_false] = ACTIONS(505), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(505), - [sym_metavariable] = ACTIONS(503), - [sym_raw_string_literal] = ACTIONS(503), - [sym_float_literal] = ACTIONS(503), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(507), - [sym_identifier] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(507), - [anon_sym_u8] = ACTIONS(509), - [anon_sym_i8] = ACTIONS(509), - [anon_sym_u16] = ACTIONS(509), - [anon_sym_i16] = ACTIONS(509), - [anon_sym_u32] = ACTIONS(509), - [anon_sym_i32] = ACTIONS(509), - [anon_sym_u64] = ACTIONS(509), - [anon_sym_i64] = ACTIONS(509), - [anon_sym_u128] = ACTIONS(509), - [anon_sym_i128] = ACTIONS(509), - [anon_sym_u256] = ACTIONS(509), - [anon_sym_i256] = ACTIONS(509), - [anon_sym_b256] = ACTIONS(509), - [anon_sym_isize] = ACTIONS(509), - [anon_sym_usize] = ACTIONS(509), - [anon_sym_f32] = ACTIONS(509), - [anon_sym_f64] = ACTIONS(509), - [anon_sym_bool] = ACTIONS(509), - [anon_sym_char] = ACTIONS(509), - [anon_sym_str] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_contract] = ACTIONS(509), - [anon_sym_script] = ACTIONS(509), - [anon_sym_predicate] = ACTIONS(509), - [anon_sym_library] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [anon_sym_abi] = ACTIONS(509), - [anon_sym_as] = ACTIONS(509), - [anon_sym_break] = ACTIONS(509), - [anon_sym_configurable] = ACTIONS(509), - [anon_sym_const] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(509), - [anon_sym_default] = ACTIONS(509), - [anon_sym_mod] = ACTIONS(509), - [anon_sym_enum] = ACTIONS(509), - [anon_sym_fn] = ACTIONS(509), - [anon_sym_for] = ACTIONS(509), - [anon_sym_if] = ACTIONS(509), - [anon_sym_impl] = ACTIONS(509), - [anon_sym_let] = ACTIONS(509), - [anon_sym_match] = ACTIONS(509), - [anon_sym_pub] = ACTIONS(509), - [anon_sym_return] = ACTIONS(509), - [anon_sym_storage] = ACTIONS(509), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_trait] = ACTIONS(509), - [anon_sym_type] = ACTIONS(509), - [anon_sym_use] = ACTIONS(509), - [anon_sym_while] = ACTIONS(509), - [anon_sym_POUND] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_asm] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(507), - [anon_sym_DOT_DOT] = ACTIONS(509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(507), - [anon_sym_GT_EQ] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(507), - [anon_sym_DASH_EQ] = ACTIONS(507), - [anon_sym_STAR_EQ] = ACTIONS(507), - [anon_sym_SLASH_EQ] = ACTIONS(507), - [anon_sym_PERCENT_EQ] = ACTIONS(507), - [anon_sym_AMP_EQ] = ACTIONS(507), - [anon_sym_PIPE_EQ] = ACTIONS(507), - [anon_sym_CARET_EQ] = ACTIONS(507), - [anon_sym_LT_LT_EQ] = ACTIONS(507), - [anon_sym_GT_GT_EQ] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_move] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [sym_integer_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(507), - [sym_char_literal] = ACTIONS(507), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(509), - [sym_metavariable] = ACTIONS(507), - [sym_raw_string_literal] = ACTIONS(507), - [sym_float_literal] = ACTIONS(507), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1933), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), + [63] = { + [ts_builtin_sym_end] = ACTIONS(491), + [sym_identifier] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_u8] = ACTIONS(493), + [anon_sym_i8] = ACTIONS(493), + [anon_sym_u16] = ACTIONS(493), + [anon_sym_i16] = ACTIONS(493), + [anon_sym_u32] = ACTIONS(493), + [anon_sym_i32] = ACTIONS(493), + [anon_sym_u64] = ACTIONS(493), + [anon_sym_i64] = ACTIONS(493), + [anon_sym_u128] = ACTIONS(493), + [anon_sym_i128] = ACTIONS(493), + [anon_sym_u256] = ACTIONS(493), + [anon_sym_i256] = ACTIONS(493), + [anon_sym_b256] = ACTIONS(493), + [anon_sym_isize] = ACTIONS(493), + [anon_sym_usize] = ACTIONS(493), + [anon_sym_f32] = ACTIONS(493), + [anon_sym_f64] = ACTIONS(493), + [anon_sym_bool] = ACTIONS(493), + [anon_sym_char] = ACTIONS(493), + [anon_sym_str] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_contract] = ACTIONS(493), + [anon_sym_script] = ACTIONS(493), + [anon_sym_predicate] = ACTIONS(493), + [anon_sym_library] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(493), + [anon_sym_abi] = ACTIONS(493), + [anon_sym_as] = ACTIONS(498), + [anon_sym_break] = ACTIONS(493), + [anon_sym_configurable] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_default] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_if] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(493), + [anon_sym_let] = ACTIONS(493), + [anon_sym_match] = ACTIONS(493), + [anon_sym_pub] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_storage] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(493), + [anon_sym_type] = ACTIONS(493), + [anon_sym_use] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [anon_sym_POUND] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_asm] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(491), + [sym_char_literal] = ACTIONS(491), + [anon_sym_true] = ACTIONS(493), + [anon_sym_false] = ACTIONS(493), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_self] = ACTIONS(493), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(491), + [sym_float_literal] = ACTIONS(491), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1852), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), + [64] = { + [ts_builtin_sym_end] = ACTIONS(505), + [sym_identifier] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_u256] = ACTIONS(507), + [anon_sym_i256] = ACTIONS(507), + [anon_sym_b256] = ACTIONS(507), + [anon_sym_isize] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_f32] = ACTIONS(507), + [anon_sym_f64] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_char] = ACTIONS(507), + [anon_sym_str] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_contract] = ACTIONS(507), + [anon_sym_script] = ACTIONS(507), + [anon_sym_predicate] = ACTIONS(507), + [anon_sym_library] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_abi] = ACTIONS(507), + [anon_sym_as] = ACTIONS(507), + [anon_sym_break] = ACTIONS(507), + [anon_sym_configurable] = ACTIONS(507), + [anon_sym_const] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(507), + [anon_sym_mod] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(507), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_for] = ACTIONS(507), + [anon_sym_if] = ACTIONS(507), + [anon_sym_impl] = ACTIONS(507), + [anon_sym_let] = ACTIONS(507), + [anon_sym_match] = ACTIONS(507), + [anon_sym_pub] = ACTIONS(507), + [anon_sym_return] = ACTIONS(507), + [anon_sym_storage] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_trait] = ACTIONS(507), + [anon_sym_type] = ACTIONS(507), + [anon_sym_use] = ACTIONS(507), + [anon_sym_while] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_asm] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(505), + [anon_sym_DOT_DOT] = ACTIONS(507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_AMP_EQ] = ACTIONS(505), + [anon_sym_PIPE_EQ] = ACTIONS(505), + [anon_sym_CARET_EQ] = ACTIONS(505), + [anon_sym_LT_LT_EQ] = ACTIONS(505), + [anon_sym_GT_GT_EQ] = ACTIONS(505), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(507), + [sym_integer_literal] = ACTIONS(505), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_char_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_self] = ACTIONS(507), + [sym_metavariable] = ACTIONS(505), + [sym_raw_string_literal] = ACTIONS(505), + [sym_float_literal] = ACTIONS(505), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(511), - [sym_identifier] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_u8] = ACTIONS(513), - [anon_sym_i8] = ACTIONS(513), - [anon_sym_u16] = ACTIONS(513), - [anon_sym_i16] = ACTIONS(513), - [anon_sym_u32] = ACTIONS(513), - [anon_sym_i32] = ACTIONS(513), - [anon_sym_u64] = ACTIONS(513), - [anon_sym_i64] = ACTIONS(513), - [anon_sym_u128] = ACTIONS(513), - [anon_sym_i128] = ACTIONS(513), - [anon_sym_u256] = ACTIONS(513), - [anon_sym_i256] = ACTIONS(513), - [anon_sym_b256] = ACTIONS(513), - [anon_sym_isize] = ACTIONS(513), - [anon_sym_usize] = ACTIONS(513), - [anon_sym_f32] = ACTIONS(513), - [anon_sym_f64] = ACTIONS(513), - [anon_sym_bool] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_str] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_contract] = ACTIONS(513), - [anon_sym_script] = ACTIONS(513), - [anon_sym_predicate] = ACTIONS(513), - [anon_sym_library] = ACTIONS(513), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_SQUOTE] = ACTIONS(513), - [anon_sym_abi] = ACTIONS(513), + [65] = { + [ts_builtin_sym_end] = ACTIONS(509), + [sym_identifier] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_u8] = ACTIONS(511), + [anon_sym_i8] = ACTIONS(511), + [anon_sym_u16] = ACTIONS(511), + [anon_sym_i16] = ACTIONS(511), + [anon_sym_u32] = ACTIONS(511), + [anon_sym_i32] = ACTIONS(511), + [anon_sym_u64] = ACTIONS(511), + [anon_sym_i64] = ACTIONS(511), + [anon_sym_u128] = ACTIONS(511), + [anon_sym_i128] = ACTIONS(511), + [anon_sym_u256] = ACTIONS(511), + [anon_sym_i256] = ACTIONS(511), + [anon_sym_b256] = ACTIONS(511), + [anon_sym_isize] = ACTIONS(511), + [anon_sym_usize] = ACTIONS(511), + [anon_sym_f32] = ACTIONS(511), + [anon_sym_f64] = ACTIONS(511), + [anon_sym_bool] = ACTIONS(511), + [anon_sym_char] = ACTIONS(511), + [anon_sym_str] = ACTIONS(511), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_contract] = ACTIONS(511), + [anon_sym_script] = ACTIONS(511), + [anon_sym_predicate] = ACTIONS(511), + [anon_sym_library] = ACTIONS(511), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_abi] = ACTIONS(511), [anon_sym_as] = ACTIONS(513), - [anon_sym_break] = ACTIONS(513), - [anon_sym_configurable] = ACTIONS(513), - [anon_sym_const] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_default] = ACTIONS(513), - [anon_sym_mod] = ACTIONS(513), - [anon_sym_enum] = ACTIONS(513), - [anon_sym_fn] = ACTIONS(513), - [anon_sym_for] = ACTIONS(513), - [anon_sym_if] = ACTIONS(513), - [anon_sym_impl] = ACTIONS(513), - [anon_sym_let] = ACTIONS(513), - [anon_sym_match] = ACTIONS(513), - [anon_sym_pub] = ACTIONS(513), - [anon_sym_return] = ACTIONS(513), - [anon_sym_storage] = ACTIONS(513), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_trait] = ACTIONS(513), - [anon_sym_type] = ACTIONS(513), - [anon_sym_use] = ACTIONS(513), - [anon_sym_while] = ACTIONS(513), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), + [anon_sym_break] = ACTIONS(511), + [anon_sym_configurable] = ACTIONS(511), + [anon_sym_const] = ACTIONS(511), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(511), + [anon_sym_mod] = ACTIONS(511), + [anon_sym_enum] = ACTIONS(511), + [anon_sym_fn] = ACTIONS(511), + [anon_sym_for] = ACTIONS(511), + [anon_sym_if] = ACTIONS(511), + [anon_sym_impl] = ACTIONS(511), + [anon_sym_let] = ACTIONS(511), + [anon_sym_match] = ACTIONS(511), + [anon_sym_pub] = ACTIONS(511), + [anon_sym_return] = ACTIONS(511), + [anon_sym_storage] = ACTIONS(511), + [anon_sym_struct] = ACTIONS(511), + [anon_sym_trait] = ACTIONS(511), + [anon_sym_type] = ACTIONS(511), + [anon_sym_use] = ACTIONS(511), + [anon_sym_while] = ACTIONS(511), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), [anon_sym_EQ] = ACTIONS(513), - [anon_sym_asm] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_asm] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_COLON_COLON] = ACTIONS(511), - [anon_sym_STAR] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(511), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_SLASH] = ACTIONS(513), - [anon_sym_PERCENT] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(511), - [anon_sym_DASH_EQ] = ACTIONS(511), - [anon_sym_STAR_EQ] = ACTIONS(511), - [anon_sym_SLASH_EQ] = ACTIONS(511), - [anon_sym_PERCENT_EQ] = ACTIONS(511), - [anon_sym_AMP_EQ] = ACTIONS(511), - [anon_sym_PIPE_EQ] = ACTIONS(511), - [anon_sym_CARET_EQ] = ACTIONS(511), - [anon_sym_LT_LT_EQ] = ACTIONS(511), - [anon_sym_GT_GT_EQ] = ACTIONS(511), - [anon_sym_yield] = ACTIONS(513), - [anon_sym_move] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(513), - [sym_integer_literal] = ACTIONS(511), - [aux_sym_string_literal_token1] = ACTIONS(511), - [sym_char_literal] = ACTIONS(511), - [anon_sym_true] = ACTIONS(513), - [anon_sym_false] = ACTIONS(513), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(513), - [sym_metavariable] = ACTIONS(511), - [sym_raw_string_literal] = ACTIONS(511), - [sym_float_literal] = ACTIONS(511), - [sym_block_comment] = ACTIONS(3), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_u8] = ACTIONS(517), - [anon_sym_i8] = ACTIONS(517), - [anon_sym_u16] = ACTIONS(517), - [anon_sym_i16] = ACTIONS(517), - [anon_sym_u32] = ACTIONS(517), - [anon_sym_i32] = ACTIONS(517), - [anon_sym_u64] = ACTIONS(517), - [anon_sym_i64] = ACTIONS(517), - [anon_sym_u128] = ACTIONS(517), - [anon_sym_i128] = ACTIONS(517), - [anon_sym_u256] = ACTIONS(517), - [anon_sym_i256] = ACTIONS(517), - [anon_sym_b256] = ACTIONS(517), - [anon_sym_isize] = ACTIONS(517), - [anon_sym_usize] = ACTIONS(517), - [anon_sym_f32] = ACTIONS(517), - [anon_sym_f64] = ACTIONS(517), - [anon_sym_bool] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_str] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_contract] = ACTIONS(517), - [anon_sym_script] = ACTIONS(517), - [anon_sym_predicate] = ACTIONS(517), - [anon_sym_library] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(517), - [anon_sym_abi] = ACTIONS(517), - [anon_sym_as] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_configurable] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_mod] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_fn] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_impl] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_match] = ACTIONS(517), - [anon_sym_pub] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_storage] = ACTIONS(517), - [anon_sym_struct] = ACTIONS(517), - [anon_sym_trait] = ACTIONS(517), - [anon_sym_type] = ACTIONS(517), - [anon_sym_use] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_asm] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_COLON_COLON] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(511), [anon_sym_DOT_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(511), [anon_sym_DOT_DOT_EQ] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(511), [anon_sym_AMP_AMP] = ACTIONS(515), [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(513), [anon_sym_EQ_EQ] = ACTIONS(515), [anon_sym_BANG_EQ] = ACTIONS(515), [anon_sym_LT_EQ] = ACTIONS(515), [anon_sym_GT_EQ] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_SLASH] = ACTIONS(513), + [anon_sym_PERCENT] = ACTIONS(513), [anon_sym_PLUS_EQ] = ACTIONS(515), [anon_sym_DASH_EQ] = ACTIONS(515), [anon_sym_STAR_EQ] = ACTIONS(515), @@ -22981,238 +17851,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(515), [anon_sym_LT_LT_EQ] = ACTIONS(515), [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(517), - [sym_integer_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(515), - [sym_char_literal] = ACTIONS(515), - [anon_sym_true] = ACTIONS(517), - [anon_sym_false] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(511), + [anon_sym_DOT] = ACTIONS(513), + [sym_integer_literal] = ACTIONS(509), + [aux_sym_string_literal_token1] = ACTIONS(509), + [sym_char_literal] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(517), - [sym_metavariable] = ACTIONS(515), - [sym_raw_string_literal] = ACTIONS(515), - [sym_float_literal] = ACTIONS(515), + [sym_self] = ACTIONS(511), + [sym_metavariable] = ACTIONS(509), + [sym_raw_string_literal] = ACTIONS(509), + [sym_float_literal] = ACTIONS(509), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(521), - [anon_sym_i8] = ACTIONS(521), - [anon_sym_u16] = ACTIONS(521), - [anon_sym_i16] = ACTIONS(521), - [anon_sym_u32] = ACTIONS(521), - [anon_sym_i32] = ACTIONS(521), - [anon_sym_u64] = ACTIONS(521), - [anon_sym_i64] = ACTIONS(521), - [anon_sym_u128] = ACTIONS(521), - [anon_sym_i128] = ACTIONS(521), - [anon_sym_u256] = ACTIONS(521), - [anon_sym_i256] = ACTIONS(521), - [anon_sym_b256] = ACTIONS(521), - [anon_sym_isize] = ACTIONS(521), - [anon_sym_usize] = ACTIONS(521), - [anon_sym_f32] = ACTIONS(521), - [anon_sym_f64] = ACTIONS(521), - [anon_sym_bool] = ACTIONS(521), - [anon_sym_char] = ACTIONS(521), - [anon_sym_str] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_contract] = ACTIONS(521), - [anon_sym_script] = ACTIONS(521), - [anon_sym_predicate] = ACTIONS(521), - [anon_sym_library] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(521), - [anon_sym_abi] = ACTIONS(521), - [anon_sym_as] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_configurable] = ACTIONS(521), - [anon_sym_const] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_mod] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(521), - [anon_sym_fn] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_impl] = ACTIONS(521), - [anon_sym_let] = ACTIONS(521), - [anon_sym_match] = ACTIONS(521), - [anon_sym_pub] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_storage] = ACTIONS(521), - [anon_sym_struct] = ACTIONS(521), - [anon_sym_trait] = ACTIONS(521), - [anon_sym_type] = ACTIONS(521), - [anon_sym_use] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_POUND] = ACTIONS(519), - [anon_sym_BANG] = ACTIONS(521), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_asm] = ACTIONS(521), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(519), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_move] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(519), - [aux_sym_string_literal_token1] = ACTIONS(519), - [sym_char_literal] = ACTIONS(519), - [anon_sym_true] = ACTIONS(521), - [anon_sym_false] = ACTIONS(521), + [66] = { + [ts_builtin_sym_end] = ACTIONS(517), + [sym_identifier] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_u256] = ACTIONS(519), + [anon_sym_i256] = ACTIONS(519), + [anon_sym_b256] = ACTIONS(519), + [anon_sym_isize] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_f32] = ACTIONS(519), + [anon_sym_f64] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_char] = ACTIONS(519), + [anon_sym_str] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_contract] = ACTIONS(519), + [anon_sym_script] = ACTIONS(519), + [anon_sym_predicate] = ACTIONS(519), + [anon_sym_library] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_abi] = ACTIONS(519), + [anon_sym_as] = ACTIONS(519), + [anon_sym_break] = ACTIONS(519), + [anon_sym_configurable] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_mod] = ACTIONS(519), + [anon_sym_enum] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(519), + [anon_sym_for] = ACTIONS(519), + [anon_sym_if] = ACTIONS(519), + [anon_sym_impl] = ACTIONS(519), + [anon_sym_let] = ACTIONS(519), + [anon_sym_match] = ACTIONS(519), + [anon_sym_pub] = ACTIONS(519), + [anon_sym_return] = ACTIONS(519), + [anon_sym_storage] = ACTIONS(519), + [anon_sym_struct] = ACTIONS(519), + [anon_sym_trait] = ACTIONS(519), + [anon_sym_type] = ACTIONS(519), + [anon_sym_use] = ACTIONS(519), + [anon_sym_while] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_asm] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(519), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_COLON_COLON] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(519), + [anon_sym_PLUS_EQ] = ACTIONS(517), + [anon_sym_DASH_EQ] = ACTIONS(517), + [anon_sym_STAR_EQ] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(517), + [anon_sym_AMP_EQ] = ACTIONS(517), + [anon_sym_PIPE_EQ] = ACTIONS(517), + [anon_sym_CARET_EQ] = ACTIONS(517), + [anon_sym_LT_LT_EQ] = ACTIONS(517), + [anon_sym_GT_GT_EQ] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(519), + [anon_sym_DOT] = ACTIONS(519), + [sym_integer_literal] = ACTIONS(517), + [aux_sym_string_literal_token1] = ACTIONS(517), + [sym_char_literal] = ACTIONS(517), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(521), - [sym_metavariable] = ACTIONS(519), - [sym_raw_string_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(519), + [sym_self] = ACTIONS(519), + [sym_metavariable] = ACTIONS(517), + [sym_raw_string_literal] = ACTIONS(517), + [sym_float_literal] = ACTIONS(517), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(876), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), + [67] = { + [ts_builtin_sym_end] = ACTIONS(521), + [sym_identifier] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_u8] = ACTIONS(523), + [anon_sym_i8] = ACTIONS(523), + [anon_sym_u16] = ACTIONS(523), + [anon_sym_i16] = ACTIONS(523), + [anon_sym_u32] = ACTIONS(523), + [anon_sym_i32] = ACTIONS(523), + [anon_sym_u64] = ACTIONS(523), + [anon_sym_i64] = ACTIONS(523), + [anon_sym_u128] = ACTIONS(523), + [anon_sym_i128] = ACTIONS(523), + [anon_sym_u256] = ACTIONS(523), + [anon_sym_i256] = ACTIONS(523), + [anon_sym_b256] = ACTIONS(523), + [anon_sym_isize] = ACTIONS(523), + [anon_sym_usize] = ACTIONS(523), + [anon_sym_f32] = ACTIONS(523), + [anon_sym_f64] = ACTIONS(523), + [anon_sym_bool] = ACTIONS(523), + [anon_sym_char] = ACTIONS(523), + [anon_sym_str] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_contract] = ACTIONS(523), + [anon_sym_script] = ACTIONS(523), + [anon_sym_predicate] = ACTIONS(523), + [anon_sym_library] = ACTIONS(523), + [anon_sym_SQUOTE] = ACTIONS(523), + [anon_sym_abi] = ACTIONS(523), + [anon_sym_as] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_configurable] = ACTIONS(523), + [anon_sym_const] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_default] = ACTIONS(523), + [anon_sym_mod] = ACTIONS(523), + [anon_sym_enum] = ACTIONS(523), + [anon_sym_fn] = ACTIONS(523), + [anon_sym_for] = ACTIONS(523), + [anon_sym_if] = ACTIONS(523), + [anon_sym_impl] = ACTIONS(523), + [anon_sym_let] = ACTIONS(523), + [anon_sym_match] = ACTIONS(523), + [anon_sym_pub] = ACTIONS(523), + [anon_sym_return] = ACTIONS(523), + [anon_sym_storage] = ACTIONS(523), + [anon_sym_struct] = ACTIONS(523), + [anon_sym_trait] = ACTIONS(523), + [anon_sym_type] = ACTIONS(523), + [anon_sym_use] = ACTIONS(523), + [anon_sym_while] = ACTIONS(523), + [anon_sym_POUND] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_asm] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(523), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(523), + [anon_sym_GT_GT] = ACTIONS(523), + [anon_sym_SLASH] = ACTIONS(523), + [anon_sym_PERCENT] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_STAR_EQ] = ACTIONS(521), + [anon_sym_SLASH_EQ] = ACTIONS(521), + [anon_sym_PERCENT_EQ] = ACTIONS(521), + [anon_sym_AMP_EQ] = ACTIONS(521), + [anon_sym_PIPE_EQ] = ACTIONS(521), + [anon_sym_CARET_EQ] = ACTIONS(521), + [anon_sym_LT_LT_EQ] = ACTIONS(521), + [anon_sym_GT_GT_EQ] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_move] = ACTIONS(523), + [anon_sym_DOT] = ACTIONS(523), + [sym_integer_literal] = ACTIONS(521), + [aux_sym_string_literal_token1] = ACTIONS(521), + [sym_char_literal] = ACTIONS(521), + [anon_sym_true] = ACTIONS(523), + [anon_sym_false] = ACTIONS(523), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_self] = ACTIONS(523), + [sym_metavariable] = ACTIONS(521), + [sym_raw_string_literal] = ACTIONS(521), + [sym_float_literal] = ACTIONS(521), [sym_block_comment] = ACTIONS(3), }, - [74] = { + [68] = { [ts_builtin_sym_end] = ACTIONS(525), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(525), @@ -23241,9 +18111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(527), [anon_sym_predicate] = ACTIONS(527), [anon_sym_library] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_SQUOTE] = ACTIONS(527), [anon_sym_abi] = ACTIONS(527), [anon_sym_as] = ACTIONS(527), @@ -23271,6 +18138,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(525), [anon_sym_BANG] = ACTIONS(527), [anon_sym_EQ] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(525), [anon_sym_asm] = ACTIONS(527), [anon_sym_PLUS] = ACTIONS(527), [anon_sym_QMARK] = ACTIONS(525), @@ -23320,115 +18190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(525), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(933), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1916), - [sym__let_chain] = STATE(1919), - [sym__condition] = STATE(1966), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { + [69] = { [ts_builtin_sym_end] = ACTIONS(529), [sym_identifier] = ACTIONS(531), [anon_sym_SEMI] = ACTIONS(529), @@ -23457,9 +18219,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(531), [anon_sym_predicate] = ACTIONS(531), [anon_sym_library] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_SQUOTE] = ACTIONS(531), [anon_sym_abi] = ACTIONS(531), [anon_sym_as] = ACTIONS(531), @@ -23487,6 +18246,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(529), [anon_sym_BANG] = ACTIONS(531), [anon_sym_EQ] = ACTIONS(531), + [anon_sym_LBRACE] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(529), [anon_sym_asm] = ACTIONS(531), [anon_sym_PLUS] = ACTIONS(531), [anon_sym_QMARK] = ACTIONS(529), @@ -23536,269 +18298,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(529), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_u8] = ACTIONS(535), - [anon_sym_i8] = ACTIONS(535), - [anon_sym_u16] = ACTIONS(535), - [anon_sym_i16] = ACTIONS(535), - [anon_sym_u32] = ACTIONS(535), - [anon_sym_i32] = ACTIONS(535), - [anon_sym_u64] = ACTIONS(535), - [anon_sym_i64] = ACTIONS(535), - [anon_sym_u128] = ACTIONS(535), - [anon_sym_i128] = ACTIONS(535), - [anon_sym_u256] = ACTIONS(535), - [anon_sym_i256] = ACTIONS(535), - [anon_sym_b256] = ACTIONS(535), - [anon_sym_isize] = ACTIONS(535), - [anon_sym_usize] = ACTIONS(535), - [anon_sym_f32] = ACTIONS(535), - [anon_sym_f64] = ACTIONS(535), - [anon_sym_bool] = ACTIONS(535), - [anon_sym_char] = ACTIONS(535), - [anon_sym_str] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_contract] = ACTIONS(535), - [anon_sym_script] = ACTIONS(535), - [anon_sym_predicate] = ACTIONS(535), - [anon_sym_library] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_abi] = ACTIONS(535), - [anon_sym_as] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_configurable] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_mod] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_fn] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_impl] = ACTIONS(535), - [anon_sym_let] = ACTIONS(535), - [anon_sym_match] = ACTIONS(535), - [anon_sym_pub] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_storage] = ACTIONS(535), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_trait] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_use] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_asm] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_QMARK] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(533), - [anon_sym_DOT_DOT] = ACTIONS(535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(535), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(533), - [anon_sym_GT_EQ] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(535), - [anon_sym_GT_GT] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_yield] = ACTIONS(535), - [anon_sym_move] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(535), - [sym_integer_literal] = ACTIONS(533), - [aux_sym_string_literal_token1] = ACTIONS(533), - [sym_char_literal] = ACTIONS(533), - [anon_sym_true] = ACTIONS(535), - [anon_sym_false] = ACTIONS(535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(535), - [sym_metavariable] = ACTIONS(533), - [sym_raw_string_literal] = ACTIONS(533), - [sym_float_literal] = ACTIONS(533), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_u8] = ACTIONS(539), - [anon_sym_i8] = ACTIONS(539), - [anon_sym_u16] = ACTIONS(539), - [anon_sym_i16] = ACTIONS(539), - [anon_sym_u32] = ACTIONS(539), - [anon_sym_i32] = ACTIONS(539), - [anon_sym_u64] = ACTIONS(539), - [anon_sym_i64] = ACTIONS(539), - [anon_sym_u128] = ACTIONS(539), - [anon_sym_i128] = ACTIONS(539), - [anon_sym_u256] = ACTIONS(539), - [anon_sym_i256] = ACTIONS(539), - [anon_sym_b256] = ACTIONS(539), - [anon_sym_isize] = ACTIONS(539), - [anon_sym_usize] = ACTIONS(539), - [anon_sym_f32] = ACTIONS(539), - [anon_sym_f64] = ACTIONS(539), - [anon_sym_bool] = ACTIONS(539), - [anon_sym_char] = ACTIONS(539), - [anon_sym_str] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_contract] = ACTIONS(539), - [anon_sym_script] = ACTIONS(539), - [anon_sym_predicate] = ACTIONS(539), - [anon_sym_library] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_abi] = ACTIONS(539), - [anon_sym_as] = ACTIONS(539), - [anon_sym_break] = ACTIONS(539), - [anon_sym_configurable] = ACTIONS(539), - [anon_sym_const] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_mod] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_fn] = ACTIONS(539), - [anon_sym_for] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_impl] = ACTIONS(539), - [anon_sym_let] = ACTIONS(539), - [anon_sym_match] = ACTIONS(539), - [anon_sym_pub] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_storage] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(539), - [anon_sym_trait] = ACTIONS(539), - [anon_sym_type] = ACTIONS(539), - [anon_sym_use] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_asm] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_QMARK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [anon_sym_COLON_COLON] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(537), - [anon_sym_DOT_DOT] = ACTIONS(539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_CARET] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(539), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_PLUS_EQ] = ACTIONS(537), - [anon_sym_DASH_EQ] = ACTIONS(537), - [anon_sym_STAR_EQ] = ACTIONS(537), - [anon_sym_SLASH_EQ] = ACTIONS(537), - [anon_sym_PERCENT_EQ] = ACTIONS(537), - [anon_sym_AMP_EQ] = ACTIONS(537), - [anon_sym_PIPE_EQ] = ACTIONS(537), - [anon_sym_CARET_EQ] = ACTIONS(537), - [anon_sym_LT_LT_EQ] = ACTIONS(537), - [anon_sym_GT_GT_EQ] = ACTIONS(537), - [anon_sym_yield] = ACTIONS(539), - [anon_sym_move] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(537), - [aux_sym_string_literal_token1] = ACTIONS(537), - [sym_char_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(539), - [anon_sym_false] = ACTIONS(539), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(539), - [sym_metavariable] = ACTIONS(537), - [sym_raw_string_literal] = ACTIONS(537), - [sym_float_literal] = ACTIONS(537), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(876), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(83), + [70] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(916), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1914), + [sym__let_chain] = STATE(1917), + [sym__condition] = STATE(2072), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -23821,30 +18368,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(533), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -23860,54 +18406,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(476), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(935), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [71] = { + [ts_builtin_sym_end] = ACTIONS(535), + [sym_identifier] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(537), + [anon_sym_i8] = ACTIONS(537), + [anon_sym_u16] = ACTIONS(537), + [anon_sym_i16] = ACTIONS(537), + [anon_sym_u32] = ACTIONS(537), + [anon_sym_i32] = ACTIONS(537), + [anon_sym_u64] = ACTIONS(537), + [anon_sym_i64] = ACTIONS(537), + [anon_sym_u128] = ACTIONS(537), + [anon_sym_i128] = ACTIONS(537), + [anon_sym_u256] = ACTIONS(537), + [anon_sym_i256] = ACTIONS(537), + [anon_sym_b256] = ACTIONS(537), + [anon_sym_isize] = ACTIONS(537), + [anon_sym_usize] = ACTIONS(537), + [anon_sym_f32] = ACTIONS(537), + [anon_sym_f64] = ACTIONS(537), + [anon_sym_bool] = ACTIONS(537), + [anon_sym_char] = ACTIONS(537), + [anon_sym_str] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(535), + [anon_sym_contract] = ACTIONS(537), + [anon_sym_script] = ACTIONS(537), + [anon_sym_predicate] = ACTIONS(537), + [anon_sym_library] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_abi] = ACTIONS(537), + [anon_sym_as] = ACTIONS(537), + [anon_sym_break] = ACTIONS(537), + [anon_sym_configurable] = ACTIONS(537), + [anon_sym_const] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(537), + [anon_sym_default] = ACTIONS(537), + [anon_sym_mod] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(537), + [anon_sym_fn] = ACTIONS(537), + [anon_sym_for] = ACTIONS(537), + [anon_sym_if] = ACTIONS(537), + [anon_sym_impl] = ACTIONS(537), + [anon_sym_let] = ACTIONS(537), + [anon_sym_match] = ACTIONS(537), + [anon_sym_pub] = ACTIONS(537), + [anon_sym_return] = ACTIONS(537), + [anon_sym_storage] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(537), + [anon_sym_trait] = ACTIONS(537), + [anon_sym_type] = ACTIONS(537), + [anon_sym_use] = ACTIONS(537), + [anon_sym_while] = ACTIONS(537), + [anon_sym_POUND] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_asm] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_COLON_COLON] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT] = ACTIONS(537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_PERCENT] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [anon_sym_DASH_EQ] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(535), + [anon_sym_SLASH_EQ] = ACTIONS(535), + [anon_sym_PERCENT_EQ] = ACTIONS(535), + [anon_sym_AMP_EQ] = ACTIONS(535), + [anon_sym_PIPE_EQ] = ACTIONS(535), + [anon_sym_CARET_EQ] = ACTIONS(535), + [anon_sym_LT_LT_EQ] = ACTIONS(535), + [anon_sym_GT_GT_EQ] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(537), + [anon_sym_move] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(537), + [sym_integer_literal] = ACTIONS(535), + [aux_sym_string_literal_token1] = ACTIONS(535), + [sym_char_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(537), + [sym_metavariable] = ACTIONS(535), + [sym_raw_string_literal] = ACTIONS(535), + [sym_float_literal] = ACTIONS(535), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1952), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -23929,199 +18584,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_identifier] = ACTIONS(455), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_u8] = ACTIONS(455), - [anon_sym_i8] = ACTIONS(455), - [anon_sym_u16] = ACTIONS(455), - [anon_sym_i16] = ACTIONS(455), - [anon_sym_u32] = ACTIONS(455), - [anon_sym_i32] = ACTIONS(455), - [anon_sym_u64] = ACTIONS(455), - [anon_sym_i64] = ACTIONS(455), - [anon_sym_u128] = ACTIONS(455), - [anon_sym_i128] = ACTIONS(455), - [anon_sym_u256] = ACTIONS(455), - [anon_sym_i256] = ACTIONS(455), - [anon_sym_b256] = ACTIONS(455), - [anon_sym_isize] = ACTIONS(455), - [anon_sym_usize] = ACTIONS(455), - [anon_sym_f32] = ACTIONS(455), - [anon_sym_f64] = ACTIONS(455), - [anon_sym_bool] = ACTIONS(455), - [anon_sym_char] = ACTIONS(455), - [anon_sym_str] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_contract] = ACTIONS(455), - [anon_sym_script] = ACTIONS(455), - [anon_sym_predicate] = ACTIONS(455), - [anon_sym_library] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(455), - [anon_sym_abi] = ACTIONS(455), - [anon_sym_as] = ACTIONS(460), - [anon_sym_break] = ACTIONS(455), - [anon_sym_configurable] = ACTIONS(455), - [anon_sym_const] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_default] = ACTIONS(455), - [anon_sym_mod] = ACTIONS(455), - [anon_sym_enum] = ACTIONS(455), - [anon_sym_fn] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_impl] = ACTIONS(455), - [anon_sym_let] = ACTIONS(455), - [anon_sym_match] = ACTIONS(455), - [anon_sym_pub] = ACTIONS(455), - [anon_sym_return] = ACTIONS(455), - [anon_sym_storage] = ACTIONS(455), - [anon_sym_struct] = ACTIONS(455), - [anon_sym_trait] = ACTIONS(455), - [anon_sym_type] = ACTIONS(455), - [anon_sym_use] = ACTIONS(455), - [anon_sym_while] = ACTIONS(455), - [anon_sym_POUND] = ACTIONS(453), - [anon_sym_BANG] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_asm] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT] = ACTIONS(464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_move] = ACTIONS(455), - [anon_sym_DOT] = ACTIONS(460), - [sym_integer_literal] = ACTIONS(453), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(453), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(455), - [sym_metavariable] = ACTIONS(453), - [sym_raw_string_literal] = ACTIONS(453), - [sym_float_literal] = ACTIONS(453), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(83), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(876), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [73] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1918), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24143,92 +18692,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(476), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(854), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [74] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1931), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24250,92 +18800,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_primitive_type] = STATE(729), - [sym_attribute_item] = STATE(476), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(831), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [75] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1828), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24357,90 +18908,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(892), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1644), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [76] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1887), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24463,29 +19016,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -24501,53 +19054,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(884), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [77] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1889), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_tuple_expression_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -24569,90 +19124,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(929), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1644), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [78] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(927), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1830), + [sym__let_chain] = STATE(1831), + [sym__condition] = STATE(1899), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24675,29 +19232,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(467), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -24713,52 +19270,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(889), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_tuple_expression_repeat1] = STATE(89), + [79] = { + [ts_builtin_sym_end] = ACTIONS(539), + [sym_identifier] = ACTIONS(541), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(541), + [anon_sym_i8] = ACTIONS(541), + [anon_sym_u16] = ACTIONS(541), + [anon_sym_i16] = ACTIONS(541), + [anon_sym_u32] = ACTIONS(541), + [anon_sym_i32] = ACTIONS(541), + [anon_sym_u64] = ACTIONS(541), + [anon_sym_i64] = ACTIONS(541), + [anon_sym_u128] = ACTIONS(541), + [anon_sym_i128] = ACTIONS(541), + [anon_sym_u256] = ACTIONS(541), + [anon_sym_i256] = ACTIONS(541), + [anon_sym_b256] = ACTIONS(541), + [anon_sym_isize] = ACTIONS(541), + [anon_sym_usize] = ACTIONS(541), + [anon_sym_f32] = ACTIONS(541), + [anon_sym_f64] = ACTIONS(541), + [anon_sym_bool] = ACTIONS(541), + [anon_sym_char] = ACTIONS(541), + [anon_sym_str] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_contract] = ACTIONS(541), + [anon_sym_script] = ACTIONS(541), + [anon_sym_predicate] = ACTIONS(541), + [anon_sym_library] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(541), + [anon_sym_abi] = ACTIONS(541), + [anon_sym_as] = ACTIONS(541), + [anon_sym_break] = ACTIONS(541), + [anon_sym_configurable] = ACTIONS(541), + [anon_sym_const] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(541), + [anon_sym_default] = ACTIONS(541), + [anon_sym_mod] = ACTIONS(541), + [anon_sym_enum] = ACTIONS(541), + [anon_sym_fn] = ACTIONS(541), + [anon_sym_for] = ACTIONS(541), + [anon_sym_if] = ACTIONS(541), + [anon_sym_impl] = ACTIONS(541), + [anon_sym_let] = ACTIONS(541), + [anon_sym_match] = ACTIONS(541), + [anon_sym_pub] = ACTIONS(541), + [anon_sym_return] = ACTIONS(541), + [anon_sym_storage] = ACTIONS(541), + [anon_sym_struct] = ACTIONS(541), + [anon_sym_trait] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_use] = ACTIONS(541), + [anon_sym_while] = ACTIONS(541), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(541), + [anon_sym_EQ] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_asm] = ACTIONS(541), + [anon_sym_PLUS] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT] = ACTIONS(541), + [anon_sym_DOT_DOT_EQ] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(541), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(541), + [anon_sym_SLASH] = ACTIONS(541), + [anon_sym_PERCENT] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(539), + [anon_sym_STAR_EQ] = ACTIONS(539), + [anon_sym_SLASH_EQ] = ACTIONS(539), + [anon_sym_PERCENT_EQ] = ACTIONS(539), + [anon_sym_AMP_EQ] = ACTIONS(539), + [anon_sym_PIPE_EQ] = ACTIONS(539), + [anon_sym_CARET_EQ] = ACTIONS(539), + [anon_sym_LT_LT_EQ] = ACTIONS(539), + [anon_sym_GT_GT_EQ] = ACTIONS(539), + [anon_sym_yield] = ACTIONS(541), + [anon_sym_move] = ACTIONS(541), + [anon_sym_DOT] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(539), + [aux_sym_string_literal_token1] = ACTIONS(539), + [sym_char_literal] = ACTIONS(539), + [anon_sym_true] = ACTIONS(541), + [anon_sym_false] = ACTIONS(541), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(541), + [sym_metavariable] = ACTIONS(539), + [sym_raw_string_literal] = ACTIONS(539), + [sym_float_literal] = ACTIONS(539), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(474), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(829), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(474), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24781,29 +19447,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -24819,52 +19485,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(884), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_tuple_expression_repeat1] = STATE(93), + [81] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(82), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(868), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(82), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24887,29 +19554,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -24925,52 +19592,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(936), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1644), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [82] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(474), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(869), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(474), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -24993,29 +19661,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(479), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25031,52 +19699,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(757), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_let_condition] = STATE(1644), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [83] = { + [sym_identifier] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_u8] = ACTIONS(493), + [anon_sym_i8] = ACTIONS(493), + [anon_sym_u16] = ACTIONS(493), + [anon_sym_i16] = ACTIONS(493), + [anon_sym_u32] = ACTIONS(493), + [anon_sym_i32] = ACTIONS(493), + [anon_sym_u64] = ACTIONS(493), + [anon_sym_i64] = ACTIONS(493), + [anon_sym_u128] = ACTIONS(493), + [anon_sym_i128] = ACTIONS(493), + [anon_sym_u256] = ACTIONS(493), + [anon_sym_i256] = ACTIONS(493), + [anon_sym_b256] = ACTIONS(493), + [anon_sym_isize] = ACTIONS(493), + [anon_sym_usize] = ACTIONS(493), + [anon_sym_f32] = ACTIONS(493), + [anon_sym_f64] = ACTIONS(493), + [anon_sym_bool] = ACTIONS(493), + [anon_sym_char] = ACTIONS(493), + [anon_sym_str] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_contract] = ACTIONS(493), + [anon_sym_script] = ACTIONS(493), + [anon_sym_predicate] = ACTIONS(493), + [anon_sym_library] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(493), + [anon_sym_abi] = ACTIONS(493), + [anon_sym_as] = ACTIONS(498), + [anon_sym_break] = ACTIONS(493), + [anon_sym_configurable] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_default] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_if] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(493), + [anon_sym_let] = ACTIONS(493), + [anon_sym_match] = ACTIONS(493), + [anon_sym_pub] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_storage] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(493), + [anon_sym_type] = ACTIONS(493), + [anon_sym_use] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [anon_sym_POUND] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_asm] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(491), + [sym_char_literal] = ACTIONS(491), + [anon_sym_true] = ACTIONS(493), + [anon_sym_false] = ACTIONS(493), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(493), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(491), + [sym_float_literal] = ACTIONS(491), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [sym_primitive_type] = STATE(712), + [sym_attribute_item] = STATE(474), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(929), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_enum_variant_list_repeat1] = STATE(474), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25099,29 +19875,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_let] = ACTIONS(479), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25137,53 +19913,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(856), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [85] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(882), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1758), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_tuple_expression_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25205,195 +19981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(914), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [aux_sym_tuple_expression_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(554), - [anon_sym_i8] = ACTIONS(554), - [anon_sym_u16] = ACTIONS(554), - [anon_sym_i16] = ACTIONS(554), - [anon_sym_u32] = ACTIONS(554), - [anon_sym_i32] = ACTIONS(554), - [anon_sym_u64] = ACTIONS(554), - [anon_sym_i64] = ACTIONS(554), - [anon_sym_u128] = ACTIONS(554), - [anon_sym_i128] = ACTIONS(554), - [anon_sym_u256] = ACTIONS(554), - [anon_sym_i256] = ACTIONS(554), - [anon_sym_b256] = ACTIONS(554), - [anon_sym_isize] = ACTIONS(554), - [anon_sym_usize] = ACTIONS(554), - [anon_sym_f32] = ACTIONS(554), - [anon_sym_f64] = ACTIONS(554), - [anon_sym_bool] = ACTIONS(554), - [anon_sym_char] = ACTIONS(554), - [anon_sym_str] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_abi] = ACTIONS(574), - [anon_sym_break] = ACTIONS(577), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_default] = ACTIONS(586), - [anon_sym_for] = ACTIONS(589), - [anon_sym_if] = ACTIONS(592), - [anon_sym_match] = ACTIONS(595), - [anon_sym_return] = ACTIONS(598), - [anon_sym_storage] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_asm] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_yield] = ACTIONS(628), - [anon_sym_move] = ACTIONS(631), - [sym_integer_literal] = ACTIONS(634), - [aux_sym_string_literal_token1] = ACTIONS(637), - [sym_char_literal] = ACTIONS(634), - [anon_sym_true] = ACTIONS(640), - [anon_sym_false] = ACTIONS(640), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(643), - [sym_metavariable] = ACTIONS(646), - [sym_raw_string_literal] = ACTIONS(634), - [sym_float_literal] = ACTIONS(634), - [sym_block_comment] = ACTIONS(3), - }, - [94] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(770), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [86] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(904), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_tuple_expression_repeat1] = STATE(92), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25416,29 +20087,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [sym_mutable_specifier] = ACTIONS(649), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25454,51 +20125,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(867), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [87] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(924), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1758), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25521,29 +20193,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(479), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(651), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(327), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -25559,51 +20231,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(772), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [88] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(910), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1758), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25626,29 +20299,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(533), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [sym_mutable_specifier] = ACTIONS(655), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25664,51 +20337,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [89] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(836), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_tuple_expression_repeat1] = STATE(90), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25731,29 +20405,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(547), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25769,51 +20443,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(775), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [90] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(899), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_tuple_expression_repeat1] = STATE(92), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -25836,29 +20511,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_asm] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(659), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -25874,52 +20549,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(842), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [91] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(766), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_let_condition] = STATE(1758), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -25941,89 +20617,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_let] = ACTIONS(533), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [sym_mutable_specifier] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [92] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(939), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_tuple_expression_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(554), + [anon_sym_i8] = ACTIONS(554), + [anon_sym_u16] = ACTIONS(554), + [anon_sym_i16] = ACTIONS(554), + [anon_sym_u32] = ACTIONS(554), + [anon_sym_i32] = ACTIONS(554), + [anon_sym_u64] = ACTIONS(554), + [anon_sym_i64] = ACTIONS(554), + [anon_sym_u128] = ACTIONS(554), + [anon_sym_i128] = ACTIONS(554), + [anon_sym_u256] = ACTIONS(554), + [anon_sym_i256] = ACTIONS(554), + [anon_sym_b256] = ACTIONS(554), + [anon_sym_isize] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_f32] = ACTIONS(554), + [anon_sym_f64] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_char] = ACTIONS(554), + [anon_sym_str] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(563), + [anon_sym_abi] = ACTIONS(566), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_default] = ACTIONS(578), + [anon_sym_for] = ACTIONS(581), + [anon_sym_if] = ACTIONS(584), + [anon_sym_match] = ACTIONS(587), + [anon_sym_return] = ACTIONS(590), + [anon_sym_storage] = ACTIONS(593), + [anon_sym_while] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_asm] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_move] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(634), + [aux_sym_string_literal_token1] = ACTIONS(637), + [sym_char_literal] = ACTIONS(634), + [anon_sym_true] = ACTIONS(640), + [anon_sym_false] = ACTIONS(640), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(643), + [sym_metavariable] = ACTIONS(646), + [sym_raw_string_literal] = ACTIONS(634), + [sym_float_literal] = ACTIONS(634), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(899), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [aux_sym_tuple_expression_repeat1] = STATE(86), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26046,29 +20829,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26084,51 +20867,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(762), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [94] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(761), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26151,29 +20934,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_DASH_GT] = ACTIONS(649), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(281), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26189,51 +20972,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [95] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(886), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26256,29 +21039,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26294,51 +21077,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(853), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [96] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(900), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26361,29 +21144,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(659), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [sym_mutable_specifier] = ACTIONS(653), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -26399,51 +21182,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(902), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [97] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(757), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(655), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(890), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26466,28 +21354,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(649), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -26503,51 +21392,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(893), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [99] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(901), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26570,28 +21459,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(659), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(327), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -26607,51 +21497,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(912), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [100] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(772), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26674,28 +21564,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [sym_mutable_specifier] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26711,51 +21602,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(769), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [101] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(886), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26778,28 +21669,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26815,51 +21707,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(763), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [102] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(777), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26882,28 +21774,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(659), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(281), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -26919,51 +21812,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(897), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2196), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(224), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [103] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(886), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -26986,28 +21879,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(671), - [anon_sym_if] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27023,51 +21917,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(773), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [104] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(866), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27090,28 +21984,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27127,52 +22021,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(928), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [105] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(873), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27194,88 +22088,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(754), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [106] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(937), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27298,28 +22192,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27335,51 +22229,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(768), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [107] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(774), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27402,28 +22296,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27439,51 +22333,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(859), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [108] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(863), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27506,28 +22400,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27543,51 +22437,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(757), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [109] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(841), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -27610,28 +22504,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27647,52 +22541,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [110] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(850), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(217), + [sym_match_expression] = STATE(217), + [sym_while_expression] = STATE(217), + [sym_for_expression] = STATE(217), + [sym_const_block] = STATE(217), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2199), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(217), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -27714,236 +22608,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [117] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(908), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [118] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(855), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_match] = ACTIONS(673), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -27959,51 +22645,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [111] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(931), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28026,28 +22712,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28063,51 +22749,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(934), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [112] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(918), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(215), + [sym_match_expression] = STATE(215), + [sym_while_expression] = STATE(215), + [sym_for_expression] = STATE(215), + [sym_const_block] = STATE(215), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2199), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(215), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28130,28 +22816,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_match] = ACTIONS(673), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28167,51 +22853,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(861), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [113] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(940), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(217), + [sym_match_expression] = STATE(217), + [sym_while_expression] = STATE(217), + [sym_for_expression] = STATE(217), + [sym_const_block] = STATE(217), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2199), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(217), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28234,28 +22920,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_match] = ACTIONS(673), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28271,51 +22957,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(857), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [114] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(928), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28338,28 +23024,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -28375,52 +23061,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(756), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [115] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(908), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -28442,88 +23128,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(925), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [116] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(776), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28546,28 +23232,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28583,51 +23269,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(755), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [117] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(933), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28650,28 +23336,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28687,51 +23373,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(765), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [118] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(872), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28754,28 +23440,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28791,155 +23477,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(852), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [128] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(865), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [119] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(773), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -28962,28 +23544,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -28999,51 +23581,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(760), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [120] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(865), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29066,28 +23648,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -29103,51 +23685,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(761), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [121] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(867), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29170,28 +23752,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -29207,52 +23789,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(875), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [122] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(860), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -29274,88 +23856,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(870), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [123] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(932), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29378,28 +23960,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -29415,259 +23997,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(848), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(918), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [124] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(871), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), - [anon_sym_u8] = ACTIONS(11), - [anon_sym_i8] = ACTIONS(11), - [anon_sym_u16] = ACTIONS(11), - [anon_sym_i16] = ACTIONS(11), - [anon_sym_u32] = ACTIONS(11), - [anon_sym_i32] = ACTIONS(11), - [anon_sym_u64] = ACTIONS(11), - [anon_sym_i64] = ACTIONS(11), - [anon_sym_u128] = ACTIONS(11), - [anon_sym_i128] = ACTIONS(11), - [anon_sym_u256] = ACTIONS(11), - [anon_sym_i256] = ACTIONS(11), - [anon_sym_b256] = ACTIONS(11), - [anon_sym_isize] = ACTIONS(11), - [anon_sym_usize] = ACTIONS(11), - [anon_sym_f32] = ACTIONS(11), - [anon_sym_f64] = ACTIONS(11), - [anon_sym_bool] = ACTIONS(11), - [anon_sym_char] = ACTIONS(11), - [anon_sym_str] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_asm] = ACTIONS(287), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [135] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(887), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29690,28 +24064,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -29727,51 +24101,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(886), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [125] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(877), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29794,28 +24168,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -29831,51 +24205,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(862), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [126] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(879), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -29898,28 +24272,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -29935,51 +24309,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(873), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [127] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(862), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30002,28 +24376,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -30039,51 +24413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(847), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [128] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(881), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30106,28 +24480,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -30143,51 +24517,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [129] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30210,28 +24584,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -30247,52 +24621,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(845), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(220), - [sym_match_expression] = STATE(220), - [sym_while_expression] = STATE(220), - [sym_for_expression] = STATE(220), - [sym_const_block] = STATE(220), - [sym_closure_expression] = STATE(649), + [130] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(857), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2196), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(220), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30314,89 +24688,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(671), - [anon_sym_if] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(881), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [131] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(882), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30418,89 +24792,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(882), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [132] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(883), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30522,89 +24896,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(921), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [133] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(885), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30626,88 +25000,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(880), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [134] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(887), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -30730,28 +25104,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -30767,52 +25141,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(911), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [135] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(889), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30834,89 +25208,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(883), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [136] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(897), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(7), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -30938,88 +25312,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_metavariable] = ACTIONS(97), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(932), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [137] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(925), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31042,28 +25416,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -31079,52 +25453,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(868), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [138] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(912), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -31146,89 +25520,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(835), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [139] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(919), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -31250,88 +25624,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(863), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [140] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(906), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31354,28 +25728,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -31391,51 +25765,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(896), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [141] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31458,28 +25832,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -31495,51 +25869,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(915), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [142] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(923), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31562,28 +25936,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -31599,51 +25973,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(844), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [143] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(886), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31666,28 +26040,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -31703,51 +26077,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(930), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [144] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(759), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31770,28 +26144,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -31807,51 +26181,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(858), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [145] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31874,28 +26248,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -31911,51 +26285,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(907), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [146] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(880), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -31978,28 +26352,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -32015,52 +26389,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(747), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [147] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(760), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32082,88 +26456,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(877), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [148] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(884), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32186,28 +26560,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -32223,52 +26597,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(843), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [149] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(921), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32290,89 +26664,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(901), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [150] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(763), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32394,88 +26768,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(916), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2196), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(224), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [151] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(764), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [152] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(876), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32498,28 +26976,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(671), - [anon_sym_if] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -32535,51 +27013,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(926), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(220), - [sym_match_expression] = STATE(220), - [sym_while_expression] = STATE(220), - [sym_for_expression] = STATE(220), - [sym_const_block] = STATE(220), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2196), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(220), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [153] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(870), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32602,28 +27080,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(671), - [anon_sym_if] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -32639,51 +27117,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(895), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [154] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(878), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(215), + [sym_match_expression] = STATE(215), + [sym_while_expression] = STATE(215), + [sym_for_expression] = STATE(215), + [sym_const_block] = STATE(215), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2199), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(215), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32706,28 +27184,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_match] = ACTIONS(673), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -32743,52 +27221,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(898), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), - [sym_identifier] = ACTIONS(319), + [155] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(765), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), [anon_sym_u16] = ACTIONS(11), @@ -32810,88 +27288,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), - [anon_sym_yield] = ACTIONS(331), - [anon_sym_move] = ACTIONS(333), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(335), - [sym_metavariable] = ACTIONS(337), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(904), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [156] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(674), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(839), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -32914,28 +27496,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -32951,51 +27533,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(905), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [158] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(757), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33018,28 +27600,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33055,51 +27637,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(772), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [159] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(938), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33122,28 +27704,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33159,51 +27741,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(900), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [160] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(864), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33226,28 +27808,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -33263,51 +27845,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(920), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [161] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(766), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(767), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(913), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33330,28 +28120,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33367,51 +28157,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(919), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [164] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(894), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33434,28 +28224,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33471,51 +28261,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(927), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [165] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(909), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33538,28 +28328,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33575,51 +28365,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(923), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [166] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(926), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33642,28 +28432,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33679,51 +28469,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(892), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [167] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(837), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [168] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(838), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33746,28 +28640,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -33783,51 +28677,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_primitive_type] = STATE(821), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1642), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(890), - [sym_scoped_identifier] = STATE(826), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), - [sym_closure_parameters] = STATE(103), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(816), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [169] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(840), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [170] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(934), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [171] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(842), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(319), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33850,28 +28952,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), [anon_sym_break] = ACTIONS(321), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), [anon_sym_default] = ACTIONS(323), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), [anon_sym_return] = ACTIONS(325), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(331), [anon_sym_move] = ACTIONS(333), @@ -33887,51 +28989,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(771), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [172] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(895), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(847), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(768), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -33954,28 +29264,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -33991,51 +29301,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_primitive_type] = STATE(729), - [sym_asm_item] = STATE(675), - [sym_bracketed_type] = STATE(2123), - [sym_generic_function] = STATE(649), - [sym_generic_type_with_turbofish] = STATE(1740), - [sym__expression_except_range] = STATE(649), - [sym__expression] = STATE(834), - [sym_scoped_identifier] = STATE(740), - [sym_scoped_type_identifier_in_expression_position] = STATE(1872), - [sym_range_expression] = STATE(741), - [sym_unary_expression] = STATE(649), - [sym_try_expression] = STATE(649), - [sym_reference_expression] = STATE(649), - [sym_binary_expression] = STATE(649), - [sym_assignment_expression] = STATE(649), - [sym_compound_assignment_expr] = STATE(649), - [sym_type_cast_expression] = STATE(649), - [sym_return_expression] = STATE(649), - [sym_yield_expression] = STATE(649), - [sym_call_expression] = STATE(649), - [sym_abi_call_expression] = STATE(649), - [sym_abi_instance_expression] = STATE(649), - [sym_array_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_tuple_expression] = STATE(649), - [sym_unit_expression] = STATE(649), - [sym_struct_expression] = STATE(649), - [sym_if_expression] = STATE(649), - [sym_match_expression] = STATE(649), - [sym_while_expression] = STATE(649), - [sym_for_expression] = STATE(649), - [sym_const_block] = STATE(649), - [sym_closure_expression] = STATE(649), + [175] = { + [sym_primitive_type] = STATE(827), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1703), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(851), + [sym_scoped_identifier] = STATE(828), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), [sym_closure_parameters] = STATE(98), - [sym_loop_label] = STATE(2191), - [sym_break_expression] = STATE(649), - [sym_continue_expression] = STATE(649), - [sym_index_expression] = STATE(649), - [sym_field_expression] = STATE(630), - [sym_block] = STATE(649), - [sym__literal] = STATE(649), - [sym_string_literal] = STATE(685), - [sym_boolean_literal] = STATE(685), - [sym_storage] = STATE(649), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(808), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(321), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(323), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(325), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_move] = ACTIONS(333), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(335), + [sym_metavariable] = ACTIONS(337), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(770), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), [sym_identifier] = ACTIONS(7), [anon_sym_u8] = ACTIONS(11), [anon_sym_i8] = ACTIONS(11), @@ -34058,28 +29472,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(11), [anon_sym_str] = ACTIONS(13), [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_abi] = ACTIONS(267), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(271), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(273), - [anon_sym_for] = ACTIONS(275), - [anon_sym_if] = ACTIONS(277), - [anon_sym_match] = ACTIONS(279), - [anon_sym_return] = ACTIONS(55), - [anon_sym_storage] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_asm] = ACTIONS(287), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(67), [anon_sym_AMP] = ACTIONS(79), - [anon_sym_DOT_DOT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_PIPE] = ACTIONS(83), [anon_sym_yield] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), @@ -34095,36 +29509,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_identifier] = ACTIONS(679), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_u8] = ACTIONS(679), - [anon_sym_i8] = ACTIONS(679), - [anon_sym_u16] = ACTIONS(679), - [anon_sym_i16] = ACTIONS(679), - [anon_sym_u32] = ACTIONS(679), - [anon_sym_i32] = ACTIONS(679), - [anon_sym_u64] = ACTIONS(679), - [anon_sym_i64] = ACTIONS(679), - [anon_sym_u128] = ACTIONS(679), - [anon_sym_i128] = ACTIONS(679), - [anon_sym_u256] = ACTIONS(679), - [anon_sym_i256] = ACTIONS(679), - [anon_sym_b256] = ACTIONS(679), - [anon_sym_isize] = ACTIONS(679), - [anon_sym_usize] = ACTIONS(679), - [anon_sym_f32] = ACTIONS(679), - [anon_sym_f64] = ACTIONS(679), + [177] = { + [sym_primitive_type] = STATE(712), + [sym_asm_item] = STATE(751), + [sym_bracketed_type] = STATE(2000), + [sym_generic_function] = STATE(653), + [sym_generic_type_with_turbofish] = STATE(1781), + [sym__expression_except_range] = STATE(653), + [sym__expression] = STATE(874), + [sym_scoped_identifier] = STATE(725), + [sym_scoped_type_identifier_in_expression_position] = STATE(1970), + [sym_range_expression] = STATE(728), + [sym_unary_expression] = STATE(653), + [sym_try_expression] = STATE(653), + [sym_reference_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_compound_assignment_expr] = STATE(653), + [sym_type_cast_expression] = STATE(653), + [sym_return_expression] = STATE(653), + [sym_yield_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_abi_call_expression] = STATE(653), + [sym_abi_instance_expression] = STATE(653), + [sym_array_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(653), + [sym_tuple_expression] = STATE(653), + [sym_unit_expression] = STATE(653), + [sym_struct_expression] = STATE(653), + [sym_if_expression] = STATE(653), + [sym_match_expression] = STATE(653), + [sym_while_expression] = STATE(653), + [sym_for_expression] = STATE(653), + [sym_const_block] = STATE(653), + [sym_closure_expression] = STATE(653), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2194), + [sym_break_expression] = STATE(653), + [sym_continue_expression] = STATE(653), + [sym_index_expression] = STATE(653), + [sym_field_expression] = STATE(629), + [sym_block] = STATE(653), + [sym__literal] = STATE(653), + [sym_string_literal] = STATE(688), + [sym_boolean_literal] = STATE(688), + [sym_storage] = STATE(653), + [sym_identifier] = ACTIONS(7), + [anon_sym_u8] = ACTIONS(11), + [anon_sym_i8] = ACTIONS(11), + [anon_sym_u16] = ACTIONS(11), + [anon_sym_i16] = ACTIONS(11), + [anon_sym_u32] = ACTIONS(11), + [anon_sym_i32] = ACTIONS(11), + [anon_sym_u64] = ACTIONS(11), + [anon_sym_i64] = ACTIONS(11), + [anon_sym_u128] = ACTIONS(11), + [anon_sym_i128] = ACTIONS(11), + [anon_sym_u256] = ACTIONS(11), + [anon_sym_i256] = ACTIONS(11), + [anon_sym_b256] = ACTIONS(11), + [anon_sym_isize] = ACTIONS(11), + [anon_sym_usize] = ACTIONS(11), + [anon_sym_f32] = ACTIONS(11), + [anon_sym_f64] = ACTIONS(11), + [anon_sym_bool] = ACTIONS(11), + [anon_sym_char] = ACTIONS(11), + [anon_sym_str] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_SQUOTE] = ACTIONS(19), + [anon_sym_abi] = ACTIONS(263), + [anon_sym_break] = ACTIONS(23), + [anon_sym_const] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_default] = ACTIONS(269), + [anon_sym_for] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_match] = ACTIONS(275), + [anon_sym_return] = ACTIONS(51), + [anon_sym_storage] = ACTIONS(277), + [anon_sym_while] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_asm] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_DOT_DOT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_yield] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_metavariable] = ACTIONS(97), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_u256] = ACTIONS(679), + [anon_sym_i256] = ACTIONS(679), + [anon_sym_b256] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), [anon_sym_bool] = ACTIONS(679), [anon_sym_char] = ACTIONS(679), [anon_sym_str] = ACTIONS(679), [anon_sym_LBRACK] = ACTIONS(681), [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_SQUOTE] = ACTIONS(679), [anon_sym_abi] = ACTIONS(679), [anon_sym_as] = ACTIONS(679), @@ -34141,6 +29654,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(681), [anon_sym_BANG] = ACTIONS(679), [anon_sym_EQ] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(681), [anon_sym_asm] = ACTIONS(679), [anon_sym_PLUS] = ACTIONS(679), [anon_sym_QMARK] = ACTIONS(681), @@ -34193,46 +29711,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [179] = { - [sym_primitive_type] = STATE(1312), + [sym_primitive_type] = STATE(1325), [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1577), - [sym_variadic_parameter] = STATE(1577), - [sym_parameter] = STATE(1577), - [sym__type] = STATE(1548), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1473), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1586), + [sym_variadic_parameter] = STATE(1586), + [sym_parameter] = STATE(1586), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -34255,15 +29773,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), @@ -34288,46 +29806,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_primitive_type] = STATE(1312), - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1577), - [sym_variadic_parameter] = STATE(1577), - [sym_parameter] = STATE(1577), - [sym__type] = STATE(1548), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1473), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1766), + [sym_variadic_parameter] = STATE(1766), + [sym_parameter] = STATE(1766), + [sym__type] = STATE(1557), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -34350,19 +29868,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(709), + [anon_sym__] = ACTIONS(739), [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), @@ -34383,47 +29901,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_primitive_type] = STATE(1312), + [sym_primitive_type] = STATE(1321), [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1577), - [sym_variadic_parameter] = STATE(1577), - [sym_parameter] = STATE(1577), - [sym__type] = STATE(1548), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1473), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1586), + [sym_variadic_parameter] = STATE(1586), + [sym_parameter] = STATE(1586), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1441), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34445,20 +29963,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(745), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), + [anon_sym__] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34471,54 +29989,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(731), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(757), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_primitive_type] = STATE(1304), + [sym_primitive_type] = STATE(1321), [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1577), - [sym_variadic_parameter] = STATE(1577), - [sym_parameter] = STATE(1577), - [sym__type] = STATE(1548), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1586), + [sym_variadic_parameter] = STATE(1586), + [sym_parameter] = STATE(1586), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1441), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34540,20 +30058,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(763), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(755), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym__] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34566,54 +30084,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(757), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1791), - [sym_variadic_parameter] = STATE(1791), - [sym_parameter] = STATE(1791), - [sym__type] = STATE(1479), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1321), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1586), + [sym_variadic_parameter] = STATE(1586), + [sym_parameter] = STATE(1586), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1441), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34635,20 +30153,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(767), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym__] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34661,54 +30179,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(757), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34730,19 +30248,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34755,54 +30273,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34824,19 +30342,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34849,54 +30367,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -34918,19 +30436,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -34943,54 +30461,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35012,19 +30530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35037,54 +30555,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35106,19 +30624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35131,54 +30649,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35200,19 +30718,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35225,54 +30743,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_primitive_type] = STATE(1304), - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_attribute_item] = STATE(191), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1876), + [sym_variadic_parameter] = STATE(1876), + [sym_parameter] = STATE(1876), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35294,18 +30812,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35318,53 +30836,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1714), - [sym_variadic_parameter] = STATE(1714), - [sym_parameter] = STATE(1714), - [sym__type] = STATE(1510), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1827), + [sym_variadic_parameter] = STATE(1827), + [sym_parameter] = STATE(1827), + [sym__type] = STATE(1730), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35386,17 +30904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(783), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35409,53 +30927,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1846), - [sym_variadic_parameter] = STATE(1846), - [sym_parameter] = STATE(1846), - [sym__type] = STATE(1766), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1582), + [sym_variadic_parameter] = STATE(1582), + [sym_parameter] = STATE(1582), + [sym__type] = STATE(1485), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35477,17 +30995,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35500,53 +31018,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym_self_parameter] = STATE(1574), - [sym_variadic_parameter] = STATE(1574), - [sym_parameter] = STATE(1574), - [sym__type] = STATE(1551), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1932), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym_self_parameter] = STATE(1635), + [sym_variadic_parameter] = STATE(1635), + [sym_parameter] = STATE(1635), + [sym__type] = STATE(1487), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1862), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35568,17 +31086,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), [anon_sym__] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(711), [anon_sym_ref] = ACTIONS(713), [anon_sym_DOT_DOT_DOT] = ACTIONS(715), [sym_mutable_specifier] = ACTIONS(717), @@ -35591,50 +31109,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(731), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [194] = { [sym_primitive_type] = STATE(1321), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1710), - [sym_bracketed_type] = STATE(2160), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1489), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1351), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1481), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(789), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1503), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35656,22 +31174,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(795), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(791), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -35680,50 +31198,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(811), - [sym_metavariable] = ACTIONS(813), + [sym_self] = ACTIONS(803), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1484), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1313), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1543), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1359), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1529), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(805), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35745,22 +31263,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(809), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(813), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -35769,50 +31287,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(821), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(819), + [sym_metavariable] = ACTIONS(821), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1484), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1503), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35834,22 +31352,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -35858,50 +31376,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(821), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(803), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1511), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1484), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1489), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1503), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -35923,22 +31441,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(703), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -35947,37 +31465,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(821), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(803), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1216), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1218), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), [sym_identifier] = ACTIONS(827), [anon_sym_u8] = ACTIONS(827), [anon_sym_i8] = ACTIONS(827), @@ -36000,8 +31518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(827), [anon_sym_str] = ACTIONS(827), [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), [anon_sym_SQUOTE] = ACTIONS(827), [anon_sym_abi] = ACTIONS(827), [anon_sym_break] = ACTIONS(827), @@ -36015,15 +31531,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_storage] = ACTIONS(827), [anon_sym_while] = ACTIONS(827), [anon_sym_BANG] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), [anon_sym_asm] = ACTIONS(827), [anon_sym_DASH_GT] = ACTIONS(829), [anon_sym_LT] = ACTIONS(829), [anon_sym_COLON_COLON] = ACTIONS(829), [anon_sym_STAR] = ACTIONS(829), - [anon_sym__] = ACTIONS(801), + [anon_sym__] = ACTIONS(793), [anon_sym_AMP] = ACTIONS(829), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), [anon_sym_DOT_DOT] = ACTIONS(829), [anon_sym_DASH] = ACTIONS(827), [anon_sym_PIPE] = ACTIONS(829), @@ -36043,43 +31561,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_primitive_type] = STATE(1321), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), [sym_bracketed_type] = STATE(2160), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1489), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1351), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(789), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36101,20 +31619,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(795), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(831), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36123,50 +31641,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(811), - [sym_metavariable] = ACTIONS(813), + [sym_self] = ACTIONS(833), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1313), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1543), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1359), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(805), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36188,20 +31706,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(809), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(813), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(835), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36210,50 +31728,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(835), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(819), + [sym_metavariable] = ACTIONS(821), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [201] = { [sym_primitive_type] = STATE(1321), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2160), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1489), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1351), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(789), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36275,20 +31793,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(795), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(799), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36297,50 +31815,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(811), - [sym_metavariable] = ACTIONS(813), + [sym_self] = ACTIONS(803), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36362,20 +31880,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(831), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(839), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36384,50 +31902,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(837), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(841), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36449,20 +31967,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(839), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36471,50 +31989,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(841), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(843), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36536,20 +32054,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(843), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(831), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36558,50 +32076,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(845), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(841), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36623,20 +32141,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36645,50 +32163,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(847), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(803), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_primitive_type] = STATE(1304), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2157), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1475), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1364), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(743), + [sym_primitive_type] = STATE(1325), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2160), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1511), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1418), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(683), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36710,20 +32228,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(693), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(701), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(753), + [anon_sym_COLON_COLON] = ACTIONS(705), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(849), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(831), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(845), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36732,50 +32250,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(835), - [sym_metavariable] = ACTIONS(761), + [sym_self] = ACTIONS(847), + [sym_metavariable] = ACTIONS(733), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1188), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1321), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1186), + [sym_bracketed_type] = STATE(2164), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1549), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(741), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36797,20 +32315,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(743), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(747), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(751), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(851), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36819,50 +32337,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(821), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(851), + [sym_metavariable] = ACTIONS(759), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_primitive_type] = STATE(1312), - [sym_function_modifiers] = STATE(2000), - [sym__type] = STATE(1187), - [sym_bracketed_type] = STATE(2161), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1483), - [sym_bounded_type] = STATE(1176), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(1297), - [sym_scoped_type_identifier] = STATE(1267), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_function_modifiers_repeat1] = STATE(1496), - [sym_identifier] = ACTIONS(683), + [sym_primitive_type] = STATE(1313), + [sym_function_modifiers] = STATE(2059), + [sym__type] = STATE(1189), + [sym_bracketed_type] = STATE(2163), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1543), + [sym_bounded_type] = STATE(1179), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(1359), + [sym_scoped_type_identifier] = STATE(1276), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(1521), + [sym_identifier] = ACTIONS(805), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -36884,20 +32402,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_const] = ACTIONS(695), - [anon_sym_default] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(355), - [anon_sym_impl] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(691), + [anon_sym_default] = ACTIONS(809), + [anon_sym_fn] = ACTIONS(353), + [anon_sym_impl] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(813), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(707), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -36906,14 +32424,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(821), - [sym_metavariable] = ACTIONS(733), + [sym_self] = ACTIONS(819), + [sym_metavariable] = ACTIONS(821), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_else_clause] = STATE(215), + [sym_else_clause] = STATE(220), [sym_identifier] = ACTIONS(421), [anon_sym_u8] = ACTIONS(421), [anon_sym_i8] = ACTIONS(421), @@ -36936,14 +32454,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(421), [anon_sym_str] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_as] = ACTIONS(421), [anon_sym_const] = ACTIONS(421), [anon_sym_default] = ACTIONS(421), [anon_sym_POUND] = ACTIONS(419), [anon_sym_COMMA] = ACTIONS(419), [anon_sym_EQ] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), [anon_sym_PLUS] = ACTIONS(421), [anon_sym_QMARK] = ACTIONS(419), [anon_sym_LT] = ACTIONS(421), @@ -36996,170 +32514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(427), - [anon_sym_u8] = ACTIONS(427), - [anon_sym_i8] = ACTIONS(427), - [anon_sym_u16] = ACTIONS(427), - [anon_sym_i16] = ACTIONS(427), - [anon_sym_u32] = ACTIONS(427), - [anon_sym_i32] = ACTIONS(427), - [anon_sym_u64] = ACTIONS(427), - [anon_sym_i64] = ACTIONS(427), - [anon_sym_u128] = ACTIONS(427), - [anon_sym_i128] = ACTIONS(427), - [anon_sym_u256] = ACTIONS(427), - [anon_sym_i256] = ACTIONS(427), - [anon_sym_b256] = ACTIONS(427), - [anon_sym_isize] = ACTIONS(427), - [anon_sym_usize] = ACTIONS(427), - [anon_sym_f32] = ACTIONS(427), - [anon_sym_f64] = ACTIONS(427), - [anon_sym_bool] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_str] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_as] = ACTIONS(427), - [anon_sym_const] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_COMMA] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_else] = ACTIONS(427), - [anon_sym_COLON_COLON] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym__] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_ref] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(425), - [sym_mutable_specifier] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(425), - [anon_sym_PIPE_PIPE] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_EQ_EQ] = ACTIONS(425), - [anon_sym_BANG_EQ] = ACTIONS(425), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_EQ] = ACTIONS(425), - [anon_sym_DASH_EQ] = ACTIONS(425), - [anon_sym_STAR_EQ] = ACTIONS(425), - [anon_sym_SLASH_EQ] = ACTIONS(425), - [anon_sym_PERCENT_EQ] = ACTIONS(425), - [anon_sym_AMP_EQ] = ACTIONS(425), - [anon_sym_PIPE_EQ] = ACTIONS(425), - [anon_sym_CARET_EQ] = ACTIONS(425), - [anon_sym_LT_LT_EQ] = ACTIONS(425), - [anon_sym_GT_GT_EQ] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(427), - [anon_sym_deref] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(425), - [aux_sym_string_literal_token1] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [anon_sym_true] = ACTIONS(427), - [anon_sym_false] = ACTIONS(427), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(427), - [sym_metavariable] = ACTIONS(425), - [sym_raw_string_literal] = ACTIONS(425), - [sym_float_literal] = ACTIONS(425), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_u256] = ACTIONS(441), - [anon_sym_i256] = ACTIONS(441), - [anon_sym_b256] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_as] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_else] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym__] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_ref] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [sym_mutable_specifier] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_deref] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { [sym_identifier] = ACTIONS(437), [anon_sym_u8] = ACTIONS(437), [anon_sym_i8] = ACTIONS(437), @@ -37182,14 +32536,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(437), [anon_sym_str] = ACTIONS(437), [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_as] = ACTIONS(437), [anon_sym_const] = ACTIONS(437), [anon_sym_default] = ACTIONS(437), [anon_sym_POUND] = ACTIONS(435), [anon_sym_COMMA] = ACTIONS(435), [anon_sym_EQ] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(437), [anon_sym_QMARK] = ACTIONS(435), [anon_sym_LT] = ACTIONS(437), @@ -37241,574 +32595,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(535), - [anon_sym_u8] = ACTIONS(535), - [anon_sym_i8] = ACTIONS(535), - [anon_sym_u16] = ACTIONS(535), - [anon_sym_i16] = ACTIONS(535), - [anon_sym_u32] = ACTIONS(535), - [anon_sym_i32] = ACTIONS(535), - [anon_sym_u64] = ACTIONS(535), - [anon_sym_i64] = ACTIONS(535), - [anon_sym_u128] = ACTIONS(535), - [anon_sym_i128] = ACTIONS(535), - [anon_sym_u256] = ACTIONS(535), - [anon_sym_i256] = ACTIONS(535), - [anon_sym_b256] = ACTIONS(535), - [anon_sym_isize] = ACTIONS(535), - [anon_sym_usize] = ACTIONS(535), - [anon_sym_f32] = ACTIONS(535), - [anon_sym_f64] = ACTIONS(535), - [anon_sym_bool] = ACTIONS(535), - [anon_sym_char] = ACTIONS(535), - [anon_sym_str] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_as] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_QMARK] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym__] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_ref] = ACTIONS(535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(533), - [sym_mutable_specifier] = ACTIONS(535), - [anon_sym_DOT_DOT] = ACTIONS(535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(535), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(533), - [anon_sym_GT_EQ] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(535), - [anon_sym_GT_GT] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_AMP_EQ] = ACTIONS(533), - [anon_sym_PIPE_EQ] = ACTIONS(533), - [anon_sym_CARET_EQ] = ACTIONS(533), - [anon_sym_LT_LT_EQ] = ACTIONS(533), - [anon_sym_GT_GT_EQ] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_deref] = ACTIONS(535), - [sym_integer_literal] = ACTIONS(533), - [aux_sym_string_literal_token1] = ACTIONS(533), - [sym_char_literal] = ACTIONS(533), - [anon_sym_true] = ACTIONS(535), - [anon_sym_false] = ACTIONS(535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(535), - [sym_metavariable] = ACTIONS(533), - [sym_raw_string_literal] = ACTIONS(533), - [sym_float_literal] = ACTIONS(533), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(483), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u128] = ACTIONS(483), - [anon_sym_i128] = ACTIONS(483), - [anon_sym_u256] = ACTIONS(483), - [anon_sym_i256] = ACTIONS(483), - [anon_sym_b256] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_str] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_as] = ACTIONS(483), - [anon_sym_const] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym__] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_ref] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_mutable_specifier] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_PERCENT_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_deref] = ACTIONS(483), - [sym_integer_literal] = ACTIONS(481), - [aux_sym_string_literal_token1] = ACTIONS(481), - [sym_char_literal] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(483), - [sym_metavariable] = ACTIONS(481), - [sym_raw_string_literal] = ACTIONS(481), - [sym_float_literal] = ACTIONS(481), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(487), - [anon_sym_u8] = ACTIONS(487), - [anon_sym_i8] = ACTIONS(487), - [anon_sym_u16] = ACTIONS(487), - [anon_sym_i16] = ACTIONS(487), - [anon_sym_u32] = ACTIONS(487), - [anon_sym_i32] = ACTIONS(487), - [anon_sym_u64] = ACTIONS(487), - [anon_sym_i64] = ACTIONS(487), - [anon_sym_u128] = ACTIONS(487), - [anon_sym_i128] = ACTIONS(487), - [anon_sym_u256] = ACTIONS(487), - [anon_sym_i256] = ACTIONS(487), - [anon_sym_b256] = ACTIONS(487), - [anon_sym_isize] = ACTIONS(487), - [anon_sym_usize] = ACTIONS(487), - [anon_sym_f32] = ACTIONS(487), - [anon_sym_f64] = ACTIONS(487), - [anon_sym_bool] = ACTIONS(487), - [anon_sym_char] = ACTIONS(487), - [anon_sym_str] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_as] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_COLON_COLON] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym__] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(487), - [anon_sym_ref] = ACTIONS(487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(485), - [sym_mutable_specifier] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_CARET] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_BANG_EQ] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(485), - [anon_sym_GT_EQ] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_PERCENT] = ACTIONS(487), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [anon_sym_DASH_EQ] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(485), - [anon_sym_SLASH_EQ] = ACTIONS(485), - [anon_sym_PERCENT_EQ] = ACTIONS(485), - [anon_sym_AMP_EQ] = ACTIONS(485), - [anon_sym_PIPE_EQ] = ACTIONS(485), - [anon_sym_CARET_EQ] = ACTIONS(485), - [anon_sym_LT_LT_EQ] = ACTIONS(485), - [anon_sym_GT_GT_EQ] = ACTIONS(485), - [anon_sym_DOT] = ACTIONS(487), - [anon_sym_deref] = ACTIONS(487), - [sym_integer_literal] = ACTIONS(485), - [aux_sym_string_literal_token1] = ACTIONS(485), - [sym_char_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(487), - [sym_metavariable] = ACTIONS(485), - [sym_raw_string_literal] = ACTIONS(485), - [sym_float_literal] = ACTIONS(485), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(517), - [anon_sym_i8] = ACTIONS(517), - [anon_sym_u16] = ACTIONS(517), - [anon_sym_i16] = ACTIONS(517), - [anon_sym_u32] = ACTIONS(517), - [anon_sym_i32] = ACTIONS(517), - [anon_sym_u64] = ACTIONS(517), - [anon_sym_i64] = ACTIONS(517), - [anon_sym_u128] = ACTIONS(517), - [anon_sym_i128] = ACTIONS(517), - [anon_sym_u256] = ACTIONS(517), - [anon_sym_i256] = ACTIONS(517), - [anon_sym_b256] = ACTIONS(517), - [anon_sym_isize] = ACTIONS(517), - [anon_sym_usize] = ACTIONS(517), - [anon_sym_f32] = ACTIONS(517), - [anon_sym_f64] = ACTIONS(517), - [anon_sym_bool] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_str] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_as] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_STAR] = ACTIONS(517), - [anon_sym__] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(517), - [anon_sym_ref] = ACTIONS(517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(515), - [sym_mutable_specifier] = ACTIONS(517), - [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(515), - [anon_sym_PIPE_PIPE] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(515), - [anon_sym_BANG_EQ] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(515), - [anon_sym_GT_EQ] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_PERCENT] = ACTIONS(517), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_STAR_EQ] = ACTIONS(515), - [anon_sym_SLASH_EQ] = ACTIONS(515), - [anon_sym_PERCENT_EQ] = ACTIONS(515), - [anon_sym_AMP_EQ] = ACTIONS(515), - [anon_sym_PIPE_EQ] = ACTIONS(515), - [anon_sym_CARET_EQ] = ACTIONS(515), - [anon_sym_LT_LT_EQ] = ACTIONS(515), - [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_DOT] = ACTIONS(517), - [anon_sym_deref] = ACTIONS(517), - [sym_integer_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(515), - [sym_char_literal] = ACTIONS(515), - [anon_sym_true] = ACTIONS(517), - [anon_sym_false] = ACTIONS(517), + [211] = { + [sym_identifier] = ACTIONS(429), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_u256] = ACTIONS(429), + [anon_sym_i256] = ACTIONS(429), + [anon_sym_b256] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_as] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_else] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym__] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [sym_mutable_specifier] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_deref] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(517), - [sym_metavariable] = ACTIONS(515), - [sym_raw_string_literal] = ACTIONS(515), - [sym_float_literal] = ACTIONS(515), + [sym_self] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(449), - [anon_sym_u8] = ACTIONS(449), - [anon_sym_i8] = ACTIONS(449), - [anon_sym_u16] = ACTIONS(449), - [anon_sym_i16] = ACTIONS(449), - [anon_sym_u32] = ACTIONS(449), - [anon_sym_i32] = ACTIONS(449), - [anon_sym_u64] = ACTIONS(449), - [anon_sym_i64] = ACTIONS(449), - [anon_sym_u128] = ACTIONS(449), - [anon_sym_i128] = ACTIONS(449), - [anon_sym_u256] = ACTIONS(449), - [anon_sym_i256] = ACTIONS(449), - [anon_sym_b256] = ACTIONS(449), - [anon_sym_isize] = ACTIONS(449), - [anon_sym_usize] = ACTIONS(449), - [anon_sym_f32] = ACTIONS(449), - [anon_sym_f64] = ACTIONS(449), - [anon_sym_bool] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_str] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_as] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_default] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_COMMA] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym__] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_ref] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(447), - [sym_mutable_specifier] = ACTIONS(449), - [anon_sym_DOT_DOT] = ACTIONS(449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(447), - [anon_sym_SLASH_EQ] = ACTIONS(447), - [anon_sym_PERCENT_EQ] = ACTIONS(447), - [anon_sym_AMP_EQ] = ACTIONS(447), - [anon_sym_PIPE_EQ] = ACTIONS(447), - [anon_sym_CARET_EQ] = ACTIONS(447), - [anon_sym_LT_LT_EQ] = ACTIONS(447), - [anon_sym_GT_GT_EQ] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_deref] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(447), - [aux_sym_string_literal_token1] = ACTIONS(447), - [sym_char_literal] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), + [212] = { + [sym_identifier] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_u256] = ACTIONS(445), + [anon_sym_i256] = ACTIONS(445), + [anon_sym_b256] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_as] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_COMMA] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_else] = ACTIONS(445), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym__] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_ref] = ACTIONS(445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(443), + [anon_sym_PIPE_PIPE] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(443), + [anon_sym_LT_EQ] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(443), + [anon_sym_DASH_EQ] = ACTIONS(443), + [anon_sym_STAR_EQ] = ACTIONS(443), + [anon_sym_SLASH_EQ] = ACTIONS(443), + [anon_sym_PERCENT_EQ] = ACTIONS(443), + [anon_sym_AMP_EQ] = ACTIONS(443), + [anon_sym_PIPE_EQ] = ACTIONS(443), + [anon_sym_CARET_EQ] = ACTIONS(443), + [anon_sym_LT_LT_EQ] = ACTIONS(443), + [anon_sym_GT_GT_EQ] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(445), + [anon_sym_deref] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), + [sym_self] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(539), - [anon_sym_u8] = ACTIONS(539), - [anon_sym_i8] = ACTIONS(539), - [anon_sym_u16] = ACTIONS(539), - [anon_sym_i16] = ACTIONS(539), - [anon_sym_u32] = ACTIONS(539), - [anon_sym_i32] = ACTIONS(539), - [anon_sym_u64] = ACTIONS(539), - [anon_sym_i64] = ACTIONS(539), - [anon_sym_u128] = ACTIONS(539), - [anon_sym_i128] = ACTIONS(539), - [anon_sym_u256] = ACTIONS(539), - [anon_sym_i256] = ACTIONS(539), - [anon_sym_b256] = ACTIONS(539), - [anon_sym_isize] = ACTIONS(539), - [anon_sym_usize] = ACTIONS(539), - [anon_sym_f32] = ACTIONS(539), - [anon_sym_f64] = ACTIONS(539), - [anon_sym_bool] = ACTIONS(539), - [anon_sym_char] = ACTIONS(539), - [anon_sym_str] = ACTIONS(539), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_as] = ACTIONS(539), - [anon_sym_const] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(537), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_QMARK] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [anon_sym_COLON_COLON] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym__] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_ref] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(537), - [sym_mutable_specifier] = ACTIONS(539), - [anon_sym_DOT_DOT] = ACTIONS(539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_CARET] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(539), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_PLUS_EQ] = ACTIONS(537), - [anon_sym_DASH_EQ] = ACTIONS(537), - [anon_sym_STAR_EQ] = ACTIONS(537), - [anon_sym_SLASH_EQ] = ACTIONS(537), - [anon_sym_PERCENT_EQ] = ACTIONS(537), - [anon_sym_AMP_EQ] = ACTIONS(537), - [anon_sym_PIPE_EQ] = ACTIONS(537), - [anon_sym_CARET_EQ] = ACTIONS(537), - [anon_sym_LT_LT_EQ] = ACTIONS(537), - [anon_sym_GT_GT_EQ] = ACTIONS(537), - [anon_sym_DOT] = ACTIONS(539), - [anon_sym_deref] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(537), - [aux_sym_string_literal_token1] = ACTIONS(537), - [sym_char_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(539), - [anon_sym_false] = ACTIONS(539), + [213] = { + [sym_identifier] = ACTIONS(463), + [anon_sym_u8] = ACTIONS(463), + [anon_sym_i8] = ACTIONS(463), + [anon_sym_u16] = ACTIONS(463), + [anon_sym_i16] = ACTIONS(463), + [anon_sym_u32] = ACTIONS(463), + [anon_sym_i32] = ACTIONS(463), + [anon_sym_u64] = ACTIONS(463), + [anon_sym_i64] = ACTIONS(463), + [anon_sym_u128] = ACTIONS(463), + [anon_sym_i128] = ACTIONS(463), + [anon_sym_u256] = ACTIONS(463), + [anon_sym_i256] = ACTIONS(463), + [anon_sym_b256] = ACTIONS(463), + [anon_sym_isize] = ACTIONS(463), + [anon_sym_usize] = ACTIONS(463), + [anon_sym_f32] = ACTIONS(463), + [anon_sym_f64] = ACTIONS(463), + [anon_sym_bool] = ACTIONS(463), + [anon_sym_char] = ACTIONS(463), + [anon_sym_str] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_as] = ACTIONS(463), + [anon_sym_const] = ACTIONS(463), + [anon_sym_default] = ACTIONS(463), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym__] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_ref] = ACTIONS(463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(461), + [sym_mutable_specifier] = ACTIONS(463), + [anon_sym_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_PERCENT] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_STAR_EQ] = ACTIONS(461), + [anon_sym_SLASH_EQ] = ACTIONS(461), + [anon_sym_PERCENT_EQ] = ACTIONS(461), + [anon_sym_AMP_EQ] = ACTIONS(461), + [anon_sym_PIPE_EQ] = ACTIONS(461), + [anon_sym_CARET_EQ] = ACTIONS(461), + [anon_sym_LT_LT_EQ] = ACTIONS(461), + [anon_sym_GT_GT_EQ] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(463), + [anon_sym_deref] = ACTIONS(463), + [sym_integer_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(461), + [sym_char_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(539), - [sym_metavariable] = ACTIONS(537), - [sym_raw_string_literal] = ACTIONS(537), - [sym_float_literal] = ACTIONS(537), + [sym_self] = ACTIONS(463), + [sym_metavariable] = ACTIONS(461), + [sym_raw_string_literal] = ACTIONS(461), + [sym_float_literal] = ACTIONS(461), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(509), - [anon_sym_u8] = ACTIONS(509), - [anon_sym_i8] = ACTIONS(509), - [anon_sym_u16] = ACTIONS(509), - [anon_sym_i16] = ACTIONS(509), - [anon_sym_u32] = ACTIONS(509), - [anon_sym_i32] = ACTIONS(509), - [anon_sym_u64] = ACTIONS(509), - [anon_sym_i64] = ACTIONS(509), - [anon_sym_u128] = ACTIONS(509), - [anon_sym_i128] = ACTIONS(509), - [anon_sym_u256] = ACTIONS(509), - [anon_sym_i256] = ACTIONS(509), - [anon_sym_b256] = ACTIONS(509), - [anon_sym_isize] = ACTIONS(509), - [anon_sym_usize] = ACTIONS(509), - [anon_sym_f32] = ACTIONS(509), - [anon_sym_f64] = ACTIONS(509), - [anon_sym_bool] = ACTIONS(509), - [anon_sym_char] = ACTIONS(509), - [anon_sym_str] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_as] = ACTIONS(509), - [anon_sym_const] = ACTIONS(509), - [anon_sym_default] = ACTIONS(509), - [anon_sym_POUND] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym__] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_ref] = ACTIONS(509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(507), - [sym_mutable_specifier] = ACTIONS(509), - [anon_sym_DOT_DOT] = ACTIONS(509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(507), - [anon_sym_GT_EQ] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(507), - [anon_sym_DASH_EQ] = ACTIONS(507), - [anon_sym_STAR_EQ] = ACTIONS(507), - [anon_sym_SLASH_EQ] = ACTIONS(507), - [anon_sym_PERCENT_EQ] = ACTIONS(507), - [anon_sym_AMP_EQ] = ACTIONS(507), - [anon_sym_PIPE_EQ] = ACTIONS(507), - [anon_sym_CARET_EQ] = ACTIONS(507), - [anon_sym_LT_LT_EQ] = ACTIONS(507), - [anon_sym_GT_GT_EQ] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_deref] = ACTIONS(509), - [sym_integer_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(507), - [sym_char_literal] = ACTIONS(507), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), + [214] = { + [sym_identifier] = ACTIONS(523), + [anon_sym_u8] = ACTIONS(523), + [anon_sym_i8] = ACTIONS(523), + [anon_sym_u16] = ACTIONS(523), + [anon_sym_i16] = ACTIONS(523), + [anon_sym_u32] = ACTIONS(523), + [anon_sym_i32] = ACTIONS(523), + [anon_sym_u64] = ACTIONS(523), + [anon_sym_i64] = ACTIONS(523), + [anon_sym_u128] = ACTIONS(523), + [anon_sym_i128] = ACTIONS(523), + [anon_sym_u256] = ACTIONS(523), + [anon_sym_i256] = ACTIONS(523), + [anon_sym_b256] = ACTIONS(523), + [anon_sym_isize] = ACTIONS(523), + [anon_sym_usize] = ACTIONS(523), + [anon_sym_f32] = ACTIONS(523), + [anon_sym_f64] = ACTIONS(523), + [anon_sym_bool] = ACTIONS(523), + [anon_sym_char] = ACTIONS(523), + [anon_sym_str] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_as] = ACTIONS(523), + [anon_sym_const] = ACTIONS(523), + [anon_sym_default] = ACTIONS(523), + [anon_sym_POUND] = ACTIONS(521), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym__] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_ref] = ACTIONS(523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [sym_mutable_specifier] = ACTIONS(523), + [anon_sym_DOT_DOT] = ACTIONS(523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(523), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(523), + [anon_sym_GT_GT] = ACTIONS(523), + [anon_sym_SLASH] = ACTIONS(523), + [anon_sym_PERCENT] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_STAR_EQ] = ACTIONS(521), + [anon_sym_SLASH_EQ] = ACTIONS(521), + [anon_sym_PERCENT_EQ] = ACTIONS(521), + [anon_sym_AMP_EQ] = ACTIONS(521), + [anon_sym_PIPE_EQ] = ACTIONS(521), + [anon_sym_CARET_EQ] = ACTIONS(521), + [anon_sym_LT_LT_EQ] = ACTIONS(521), + [anon_sym_GT_GT_EQ] = ACTIONS(521), + [anon_sym_DOT] = ACTIONS(523), + [anon_sym_deref] = ACTIONS(523), + [sym_integer_literal] = ACTIONS(521), + [aux_sym_string_literal_token1] = ACTIONS(521), + [sym_char_literal] = ACTIONS(521), + [anon_sym_true] = ACTIONS(523), + [anon_sym_false] = ACTIONS(523), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(509), - [sym_metavariable] = ACTIONS(507), - [sym_raw_string_literal] = ACTIONS(507), - [sym_float_literal] = ACTIONS(507), + [sym_self] = ACTIONS(523), + [sym_metavariable] = ACTIONS(521), + [sym_raw_string_literal] = ACTIONS(521), + [sym_float_literal] = ACTIONS(521), [sym_block_comment] = ACTIONS(3), }, - [220] = { + [215] = { [sym_identifier] = ACTIONS(855), [anon_sym_u8] = ACTIONS(855), [anon_sym_i8] = ACTIONS(855), @@ -37831,51 +32944,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(855), [anon_sym_str] = ACTIONS(855), [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_as] = ACTIONS(493), + [anon_sym_as] = ACTIONS(513), [anon_sym_const] = ACTIONS(855), [anon_sym_default] = ACTIONS(855), [anon_sym_POUND] = ACTIONS(857), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(515), [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(513), [anon_sym_COLON_COLON] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(513), [anon_sym__] = ACTIONS(855), [anon_sym_AMP] = ACTIONS(855), [anon_sym_ref] = ACTIONS(855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(515), [sym_mutable_specifier] = ACTIONS(855), [anon_sym_DOT_DOT] = ACTIONS(855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(515), [anon_sym_DASH] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(493), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(495), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(493), - [anon_sym_PLUS_EQ] = ACTIONS(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(493), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_SLASH] = ACTIONS(513), + [anon_sym_PERCENT] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_STAR_EQ] = ACTIONS(515), + [anon_sym_SLASH_EQ] = ACTIONS(515), + [anon_sym_PERCENT_EQ] = ACTIONS(515), + [anon_sym_AMP_EQ] = ACTIONS(515), + [anon_sym_PIPE_EQ] = ACTIONS(515), + [anon_sym_CARET_EQ] = ACTIONS(515), + [anon_sym_LT_LT_EQ] = ACTIONS(515), + [anon_sym_GT_GT_EQ] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(513), [anon_sym_deref] = ACTIONS(855), [sym_integer_literal] = ACTIONS(857), [aux_sym_string_literal_token1] = ACTIONS(857), @@ -37889,88 +33002,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(527), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_u256] = ACTIONS(527), - [anon_sym_i256] = ACTIONS(527), - [anon_sym_b256] = ACTIONS(527), - [anon_sym_isize] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_f32] = ACTIONS(527), - [anon_sym_f64] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_char] = ACTIONS(527), - [anon_sym_str] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_as] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(525), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(525), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_COLON_COLON] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_ref] = ACTIONS(527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(525), - [sym_mutable_specifier] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [anon_sym_DASH_EQ] = ACTIONS(525), - [anon_sym_STAR_EQ] = ACTIONS(525), - [anon_sym_SLASH_EQ] = ACTIONS(525), - [anon_sym_PERCENT_EQ] = ACTIONS(525), - [anon_sym_AMP_EQ] = ACTIONS(525), - [anon_sym_PIPE_EQ] = ACTIONS(525), - [anon_sym_CARET_EQ] = ACTIONS(525), - [anon_sym_LT_LT_EQ] = ACTIONS(525), - [anon_sym_GT_GT_EQ] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_deref] = ACTIONS(527), - [sym_integer_literal] = ACTIONS(525), - [aux_sym_string_literal_token1] = ACTIONS(525), - [sym_char_literal] = ACTIONS(525), - [anon_sym_true] = ACTIONS(527), - [anon_sym_false] = ACTIONS(527), + [216] = { + [sym_identifier] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_u256] = ACTIONS(469), + [anon_sym_i256] = ACTIONS(469), + [anon_sym_b256] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_as] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_ref] = ACTIONS(469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [sym_mutable_specifier] = ACTIONS(469), + [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_deref] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(467), + [aux_sym_string_literal_token1] = ACTIONS(467), + [sym_char_literal] = ACTIONS(467), + [anon_sym_true] = ACTIONS(469), + [anon_sym_false] = ACTIONS(469), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(527), - [sym_metavariable] = ACTIONS(525), - [sym_raw_string_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(525), + [sym_self] = ACTIONS(469), + [sym_metavariable] = ACTIONS(467), + [sym_raw_string_literal] = ACTIONS(467), + [sym_float_literal] = ACTIONS(467), [sym_block_comment] = ACTIONS(3), }, - [222] = { + [217] = { + [sym_identifier] = ACTIONS(859), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_u256] = ACTIONS(859), + [anon_sym_i256] = ACTIONS(859), + [anon_sym_b256] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_as] = ACTIONS(513), + [anon_sym_const] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_EQ] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(513), + [anon_sym_COLON_COLON] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(513), + [anon_sym__] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_ref] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(515), + [sym_mutable_specifier] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_SLASH] = ACTIONS(513), + [anon_sym_PERCENT] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(515), + [anon_sym_DASH_EQ] = ACTIONS(515), + [anon_sym_STAR_EQ] = ACTIONS(515), + [anon_sym_SLASH_EQ] = ACTIONS(515), + [anon_sym_PERCENT_EQ] = ACTIONS(515), + [anon_sym_AMP_EQ] = ACTIONS(515), + [anon_sym_PIPE_EQ] = ACTIONS(515), + [anon_sym_CARET_EQ] = ACTIONS(515), + [anon_sym_LT_LT_EQ] = ACTIONS(515), + [anon_sym_GT_GT_EQ] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(513), + [anon_sym_deref] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym_raw_string_literal] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { [sym_identifier] = ACTIONS(477), [anon_sym_u8] = ACTIONS(477), [anon_sym_i8] = ACTIONS(477), @@ -37993,14 +33187,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(477), [anon_sym_str] = ACTIONS(477), [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_as] = ACTIONS(477), [anon_sym_const] = ACTIONS(477), [anon_sym_default] = ACTIONS(477), [anon_sym_POUND] = ACTIONS(475), [anon_sym_COMMA] = ACTIONS(475), [anon_sym_EQ] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), [anon_sym_PLUS] = ACTIONS(477), [anon_sym_QMARK] = ACTIONS(475), [anon_sym_LT] = ACTIONS(477), @@ -38051,169 +33245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(475), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(499), - [anon_sym_u8] = ACTIONS(499), - [anon_sym_i8] = ACTIONS(499), - [anon_sym_u16] = ACTIONS(499), - [anon_sym_i16] = ACTIONS(499), - [anon_sym_u32] = ACTIONS(499), - [anon_sym_i32] = ACTIONS(499), - [anon_sym_u64] = ACTIONS(499), - [anon_sym_i64] = ACTIONS(499), - [anon_sym_u128] = ACTIONS(499), - [anon_sym_i128] = ACTIONS(499), - [anon_sym_u256] = ACTIONS(499), - [anon_sym_i256] = ACTIONS(499), - [anon_sym_b256] = ACTIONS(499), - [anon_sym_isize] = ACTIONS(499), - [anon_sym_usize] = ACTIONS(499), - [anon_sym_f32] = ACTIONS(499), - [anon_sym_f64] = ACTIONS(499), - [anon_sym_bool] = ACTIONS(499), - [anon_sym_char] = ACTIONS(499), - [anon_sym_str] = ACTIONS(499), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LPAREN] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_as] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_default] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(497), - [anon_sym_COMMA] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_QMARK] = ACTIONS(497), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym__] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_ref] = ACTIONS(499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(497), - [sym_mutable_specifier] = ACTIONS(499), - [anon_sym_DOT_DOT] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_AMP_EQ] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(497), - [anon_sym_CARET_EQ] = ACTIONS(497), - [anon_sym_LT_LT_EQ] = ACTIONS(497), - [anon_sym_GT_GT_EQ] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(499), - [anon_sym_deref] = ACTIONS(499), - [sym_integer_literal] = ACTIONS(497), - [aux_sym_string_literal_token1] = ACTIONS(497), - [sym_char_literal] = ACTIONS(497), - [anon_sym_true] = ACTIONS(499), - [anon_sym_false] = ACTIONS(499), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(499), - [sym_metavariable] = ACTIONS(497), - [sym_raw_string_literal] = ACTIONS(497), - [sym_float_literal] = ACTIONS(497), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(859), - [anon_sym_u8] = ACTIONS(859), - [anon_sym_i8] = ACTIONS(859), - [anon_sym_u16] = ACTIONS(859), - [anon_sym_i16] = ACTIONS(859), - [anon_sym_u32] = ACTIONS(859), - [anon_sym_i32] = ACTIONS(859), - [anon_sym_u64] = ACTIONS(859), - [anon_sym_i64] = ACTIONS(859), - [anon_sym_u128] = ACTIONS(859), - [anon_sym_i128] = ACTIONS(859), - [anon_sym_u256] = ACTIONS(859), - [anon_sym_i256] = ACTIONS(859), - [anon_sym_b256] = ACTIONS(859), - [anon_sym_isize] = ACTIONS(859), - [anon_sym_usize] = ACTIONS(859), - [anon_sym_f32] = ACTIONS(859), - [anon_sym_f64] = ACTIONS(859), - [anon_sym_bool] = ACTIONS(859), - [anon_sym_char] = ACTIONS(859), - [anon_sym_str] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_as] = ACTIONS(493), - [anon_sym_const] = ACTIONS(859), - [anon_sym_default] = ACTIONS(859), - [anon_sym_POUND] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(493), - [anon_sym_COLON_COLON] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym__] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_ref] = ACTIONS(859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(495), - [sym_mutable_specifier] = ACTIONS(859), - [anon_sym_DOT_DOT] = ACTIONS(859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_AMP_AMP] = ACTIONS(495), - [anon_sym_PIPE_PIPE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(493), - [anon_sym_CARET] = ACTIONS(493), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_LT_EQ] = ACTIONS(495), - [anon_sym_GT_EQ] = ACTIONS(495), - [anon_sym_LT_LT] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(493), - [anon_sym_PLUS_EQ] = ACTIONS(495), - [anon_sym_DASH_EQ] = ACTIONS(495), - [anon_sym_STAR_EQ] = ACTIONS(495), - [anon_sym_SLASH_EQ] = ACTIONS(495), - [anon_sym_PERCENT_EQ] = ACTIONS(495), - [anon_sym_AMP_EQ] = ACTIONS(495), - [anon_sym_PIPE_EQ] = ACTIONS(495), - [anon_sym_CARET_EQ] = ACTIONS(495), - [anon_sym_LT_LT_EQ] = ACTIONS(495), - [anon_sym_GT_GT_EQ] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(493), - [anon_sym_deref] = ACTIONS(859), - [sym_integer_literal] = ACTIONS(861), - [aux_sym_string_literal_token1] = ACTIONS(861), - [sym_char_literal] = ACTIONS(861), - [anon_sym_true] = ACTIONS(859), - [anon_sym_false] = ACTIONS(859), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(859), - [sym_metavariable] = ACTIONS(861), - [sym_raw_string_literal] = ACTIONS(861), - [sym_float_literal] = ACTIONS(861), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { + [219] = { [sym_identifier] = ACTIONS(531), [anon_sym_u8] = ACTIONS(531), [anon_sym_i8] = ACTIONS(531), @@ -38236,14 +33268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(531), [anon_sym_str] = ACTIONS(531), [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_as] = ACTIONS(531), [anon_sym_const] = ACTIONS(531), [anon_sym_default] = ACTIONS(531), [anon_sym_POUND] = ACTIONS(529), [anon_sym_COMMA] = ACTIONS(529), [anon_sym_EQ] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(529), [anon_sym_PLUS] = ACTIONS(531), [anon_sym_QMARK] = ACTIONS(529), [anon_sym_LT] = ACTIONS(531), @@ -38294,135 +33326,618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(529), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_u8] = ACTIONS(865), - [anon_sym_i8] = ACTIONS(865), - [anon_sym_u16] = ACTIONS(865), - [anon_sym_i16] = ACTIONS(865), - [anon_sym_u32] = ACTIONS(865), - [anon_sym_i32] = ACTIONS(865), - [anon_sym_u64] = ACTIONS(865), - [anon_sym_i64] = ACTIONS(865), - [anon_sym_u128] = ACTIONS(865), - [anon_sym_i128] = ACTIONS(865), - [anon_sym_u256] = ACTIONS(865), - [anon_sym_i256] = ACTIONS(865), - [anon_sym_b256] = ACTIONS(865), - [anon_sym_isize] = ACTIONS(865), - [anon_sym_usize] = ACTIONS(865), - [anon_sym_f32] = ACTIONS(865), - [anon_sym_f64] = ACTIONS(865), - [anon_sym_bool] = ACTIONS(865), - [anon_sym_char] = ACTIONS(865), - [anon_sym_str] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(863), - [anon_sym_contract] = ACTIONS(865), - [anon_sym_script] = ACTIONS(865), - [anon_sym_predicate] = ACTIONS(865), - [anon_sym_library] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_abi] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_configurable] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_default] = ACTIONS(865), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_enum] = ACTIONS(865), - [anon_sym_fn] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_impl] = ACTIONS(865), - [anon_sym_let] = ACTIONS(865), - [anon_sym_match] = ACTIONS(865), - [anon_sym_pub] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_storage] = ACTIONS(865), - [anon_sym_struct] = ACTIONS(865), - [anon_sym_trait] = ACTIONS(865), - [anon_sym_type] = ACTIONS(865), - [anon_sym_use] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_asm] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_COLON_COLON] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(865), - [anon_sym_move] = ACTIONS(865), - [sym_integer_literal] = ACTIONS(863), - [aux_sym_string_literal_token1] = ACTIONS(863), - [sym_char_literal] = ACTIONS(863), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), + [220] = { + [sym_identifier] = ACTIONS(541), + [anon_sym_u8] = ACTIONS(541), + [anon_sym_i8] = ACTIONS(541), + [anon_sym_u16] = ACTIONS(541), + [anon_sym_i16] = ACTIONS(541), + [anon_sym_u32] = ACTIONS(541), + [anon_sym_i32] = ACTIONS(541), + [anon_sym_u64] = ACTIONS(541), + [anon_sym_i64] = ACTIONS(541), + [anon_sym_u128] = ACTIONS(541), + [anon_sym_i128] = ACTIONS(541), + [anon_sym_u256] = ACTIONS(541), + [anon_sym_i256] = ACTIONS(541), + [anon_sym_b256] = ACTIONS(541), + [anon_sym_isize] = ACTIONS(541), + [anon_sym_usize] = ACTIONS(541), + [anon_sym_f32] = ACTIONS(541), + [anon_sym_f64] = ACTIONS(541), + [anon_sym_bool] = ACTIONS(541), + [anon_sym_char] = ACTIONS(541), + [anon_sym_str] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_as] = ACTIONS(541), + [anon_sym_const] = ACTIONS(541), + [anon_sym_default] = ACTIONS(541), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_COLON_COLON] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(541), + [anon_sym__] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(541), + [anon_sym_ref] = ACTIONS(541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(539), + [sym_mutable_specifier] = ACTIONS(541), + [anon_sym_DOT_DOT] = ACTIONS(541), + [anon_sym_DOT_DOT_EQ] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(541), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(539), + [anon_sym_GT_EQ] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(541), + [anon_sym_SLASH] = ACTIONS(541), + [anon_sym_PERCENT] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(539), + [anon_sym_STAR_EQ] = ACTIONS(539), + [anon_sym_SLASH_EQ] = ACTIONS(539), + [anon_sym_PERCENT_EQ] = ACTIONS(539), + [anon_sym_AMP_EQ] = ACTIONS(539), + [anon_sym_PIPE_EQ] = ACTIONS(539), + [anon_sym_CARET_EQ] = ACTIONS(539), + [anon_sym_LT_LT_EQ] = ACTIONS(539), + [anon_sym_GT_GT_EQ] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(541), + [anon_sym_deref] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(539), + [aux_sym_string_literal_token1] = ACTIONS(539), + [sym_char_literal] = ACTIONS(539), + [anon_sym_true] = ACTIONS(541), + [anon_sym_false] = ACTIONS(541), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(865), - [sym_metavariable] = ACTIONS(863), - [sym_raw_string_literal] = ACTIONS(863), - [sym_float_literal] = ACTIONS(863), + [sym_self] = ACTIONS(541), + [sym_metavariable] = ACTIONS(539), + [sym_raw_string_literal] = ACTIONS(539), + [sym_float_literal] = ACTIONS(539), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(867), - [sym_identifier] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_u8] = ACTIONS(869), - [anon_sym_i8] = ACTIONS(869), - [anon_sym_u16] = ACTIONS(869), - [anon_sym_i16] = ACTIONS(869), - [anon_sym_u32] = ACTIONS(869), - [anon_sym_i32] = ACTIONS(869), - [anon_sym_u64] = ACTIONS(869), - [anon_sym_i64] = ACTIONS(869), - [anon_sym_u128] = ACTIONS(869), - [anon_sym_i128] = ACTIONS(869), - [anon_sym_u256] = ACTIONS(869), - [anon_sym_i256] = ACTIONS(869), - [anon_sym_b256] = ACTIONS(869), - [anon_sym_isize] = ACTIONS(869), - [anon_sym_usize] = ACTIONS(869), - [anon_sym_f32] = ACTIONS(869), - [anon_sym_f64] = ACTIONS(869), - [anon_sym_bool] = ACTIONS(869), - [anon_sym_char] = ACTIONS(869), - [anon_sym_str] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_contract] = ACTIONS(869), - [anon_sym_script] = ACTIONS(869), - [anon_sym_predicate] = ACTIONS(869), - [anon_sym_library] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_SQUOTE] = ACTIONS(869), - [anon_sym_abi] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_configurable] = ACTIONS(869), - [anon_sym_const] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_default] = ACTIONS(869), - [anon_sym_mod] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(869), - [anon_sym_fn] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_impl] = ACTIONS(869), - [anon_sym_let] = ACTIONS(869), - [anon_sym_match] = ACTIONS(869), - [anon_sym_pub] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_storage] = ACTIONS(869), + [221] = { + [sym_identifier] = ACTIONS(449), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_u256] = ACTIONS(449), + [anon_sym_i256] = ACTIONS(449), + [anon_sym_b256] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_as] = ACTIONS(449), + [anon_sym_const] = ACTIONS(449), + [anon_sym_default] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym__] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_ref] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [sym_mutable_specifier] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_deref] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(527), + [anon_sym_u8] = ACTIONS(527), + [anon_sym_i8] = ACTIONS(527), + [anon_sym_u16] = ACTIONS(527), + [anon_sym_i16] = ACTIONS(527), + [anon_sym_u32] = ACTIONS(527), + [anon_sym_i32] = ACTIONS(527), + [anon_sym_u64] = ACTIONS(527), + [anon_sym_i64] = ACTIONS(527), + [anon_sym_u128] = ACTIONS(527), + [anon_sym_i128] = ACTIONS(527), + [anon_sym_u256] = ACTIONS(527), + [anon_sym_i256] = ACTIONS(527), + [anon_sym_b256] = ACTIONS(527), + [anon_sym_isize] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_f32] = ACTIONS(527), + [anon_sym_f64] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_char] = ACTIONS(527), + [anon_sym_str] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_as] = ACTIONS(527), + [anon_sym_const] = ACTIONS(527), + [anon_sym_default] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_EQ] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym__] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_ref] = ACTIONS(527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(525), + [sym_mutable_specifier] = ACTIONS(527), + [anon_sym_DOT_DOT] = ACTIONS(527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(527), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [anon_sym_DASH_EQ] = ACTIONS(525), + [anon_sym_STAR_EQ] = ACTIONS(525), + [anon_sym_SLASH_EQ] = ACTIONS(525), + [anon_sym_PERCENT_EQ] = ACTIONS(525), + [anon_sym_AMP_EQ] = ACTIONS(525), + [anon_sym_PIPE_EQ] = ACTIONS(525), + [anon_sym_CARET_EQ] = ACTIONS(525), + [anon_sym_LT_LT_EQ] = ACTIONS(525), + [anon_sym_GT_GT_EQ] = ACTIONS(525), + [anon_sym_DOT] = ACTIONS(527), + [anon_sym_deref] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(525), + [aux_sym_string_literal_token1] = ACTIONS(525), + [sym_char_literal] = ACTIONS(525), + [anon_sym_true] = ACTIONS(527), + [anon_sym_false] = ACTIONS(527), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(527), + [sym_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(525), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(455), + [anon_sym_u8] = ACTIONS(455), + [anon_sym_i8] = ACTIONS(455), + [anon_sym_u16] = ACTIONS(455), + [anon_sym_i16] = ACTIONS(455), + [anon_sym_u32] = ACTIONS(455), + [anon_sym_i32] = ACTIONS(455), + [anon_sym_u64] = ACTIONS(455), + [anon_sym_i64] = ACTIONS(455), + [anon_sym_u128] = ACTIONS(455), + [anon_sym_i128] = ACTIONS(455), + [anon_sym_u256] = ACTIONS(455), + [anon_sym_i256] = ACTIONS(455), + [anon_sym_b256] = ACTIONS(455), + [anon_sym_isize] = ACTIONS(455), + [anon_sym_usize] = ACTIONS(455), + [anon_sym_f32] = ACTIONS(455), + [anon_sym_f64] = ACTIONS(455), + [anon_sym_bool] = ACTIONS(455), + [anon_sym_char] = ACTIONS(455), + [anon_sym_str] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_as] = ACTIONS(455), + [anon_sym_const] = ACTIONS(455), + [anon_sym_default] = ACTIONS(455), + [anon_sym_POUND] = ACTIONS(453), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym__] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_ref] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(455), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(455), + [anon_sym_deref] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(453), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(453), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(455), + [sym_metavariable] = ACTIONS(453), + [sym_raw_string_literal] = ACTIONS(453), + [sym_float_literal] = ACTIONS(453), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_u256] = ACTIONS(507), + [anon_sym_i256] = ACTIONS(507), + [anon_sym_b256] = ACTIONS(507), + [anon_sym_isize] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_f32] = ACTIONS(507), + [anon_sym_f64] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_char] = ACTIONS(507), + [anon_sym_str] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_as] = ACTIONS(507), + [anon_sym_const] = ACTIONS(507), + [anon_sym_default] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym__] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_ref] = ACTIONS(507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(505), + [sym_mutable_specifier] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_AMP_EQ] = ACTIONS(505), + [anon_sym_PIPE_EQ] = ACTIONS(505), + [anon_sym_CARET_EQ] = ACTIONS(505), + [anon_sym_LT_LT_EQ] = ACTIONS(505), + [anon_sym_GT_GT_EQ] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_deref] = ACTIONS(507), + [sym_integer_literal] = ACTIONS(505), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_char_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(507), + [sym_metavariable] = ACTIONS(505), + [sym_raw_string_literal] = ACTIONS(505), + [sym_float_literal] = ACTIONS(505), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(519), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_u256] = ACTIONS(519), + [anon_sym_i256] = ACTIONS(519), + [anon_sym_b256] = ACTIONS(519), + [anon_sym_isize] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_f32] = ACTIONS(519), + [anon_sym_f64] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_char] = ACTIONS(519), + [anon_sym_str] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_as] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(517), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_LT] = ACTIONS(519), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_COLON_COLON] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym__] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_ref] = ACTIONS(519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(517), + [sym_mutable_specifier] = ACTIONS(519), + [anon_sym_DOT_DOT] = ACTIONS(519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(519), + [anon_sym_PLUS_EQ] = ACTIONS(517), + [anon_sym_DASH_EQ] = ACTIONS(517), + [anon_sym_STAR_EQ] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(517), + [anon_sym_AMP_EQ] = ACTIONS(517), + [anon_sym_PIPE_EQ] = ACTIONS(517), + [anon_sym_CARET_EQ] = ACTIONS(517), + [anon_sym_LT_LT_EQ] = ACTIONS(517), + [anon_sym_GT_GT_EQ] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(519), + [anon_sym_deref] = ACTIONS(519), + [sym_integer_literal] = ACTIONS(517), + [aux_sym_string_literal_token1] = ACTIONS(517), + [sym_char_literal] = ACTIONS(517), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(519), + [sym_metavariable] = ACTIONS(517), + [sym_raw_string_literal] = ACTIONS(517), + [sym_float_literal] = ACTIONS(517), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [ts_builtin_sym_end] = ACTIONS(863), + [sym_identifier] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(865), + [anon_sym_i8] = ACTIONS(865), + [anon_sym_u16] = ACTIONS(865), + [anon_sym_i16] = ACTIONS(865), + [anon_sym_u32] = ACTIONS(865), + [anon_sym_i32] = ACTIONS(865), + [anon_sym_u64] = ACTIONS(865), + [anon_sym_i64] = ACTIONS(865), + [anon_sym_u128] = ACTIONS(865), + [anon_sym_i128] = ACTIONS(865), + [anon_sym_u256] = ACTIONS(865), + [anon_sym_i256] = ACTIONS(865), + [anon_sym_b256] = ACTIONS(865), + [anon_sym_isize] = ACTIONS(865), + [anon_sym_usize] = ACTIONS(865), + [anon_sym_f32] = ACTIONS(865), + [anon_sym_f64] = ACTIONS(865), + [anon_sym_bool] = ACTIONS(865), + [anon_sym_char] = ACTIONS(865), + [anon_sym_str] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_contract] = ACTIONS(865), + [anon_sym_script] = ACTIONS(865), + [anon_sym_predicate] = ACTIONS(865), + [anon_sym_library] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_abi] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_configurable] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_enum] = ACTIONS(865), + [anon_sym_fn] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_impl] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_pub] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_storage] = ACTIONS(865), + [anon_sym_struct] = ACTIONS(865), + [anon_sym_trait] = ACTIONS(865), + [anon_sym_type] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_asm] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(865), + [anon_sym_move] = ACTIONS(865), + [sym_integer_literal] = ACTIONS(863), + [aux_sym_string_literal_token1] = ACTIONS(863), + [sym_char_literal] = ACTIONS(863), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(865), + [sym_metavariable] = ACTIONS(863), + [sym_raw_string_literal] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(867), + [sym_identifier] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_u8] = ACTIONS(869), + [anon_sym_i8] = ACTIONS(869), + [anon_sym_u16] = ACTIONS(869), + [anon_sym_i16] = ACTIONS(869), + [anon_sym_u32] = ACTIONS(869), + [anon_sym_i32] = ACTIONS(869), + [anon_sym_u64] = ACTIONS(869), + [anon_sym_i64] = ACTIONS(869), + [anon_sym_u128] = ACTIONS(869), + [anon_sym_i128] = ACTIONS(869), + [anon_sym_u256] = ACTIONS(869), + [anon_sym_i256] = ACTIONS(869), + [anon_sym_b256] = ACTIONS(869), + [anon_sym_isize] = ACTIONS(869), + [anon_sym_usize] = ACTIONS(869), + [anon_sym_f32] = ACTIONS(869), + [anon_sym_f64] = ACTIONS(869), + [anon_sym_bool] = ACTIONS(869), + [anon_sym_char] = ACTIONS(869), + [anon_sym_str] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_contract] = ACTIONS(869), + [anon_sym_script] = ACTIONS(869), + [anon_sym_predicate] = ACTIONS(869), + [anon_sym_library] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(869), + [anon_sym_abi] = ACTIONS(869), + [anon_sym_break] = ACTIONS(869), + [anon_sym_configurable] = ACTIONS(869), + [anon_sym_const] = ACTIONS(869), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_default] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_enum] = ACTIONS(869), + [anon_sym_fn] = ACTIONS(869), + [anon_sym_for] = ACTIONS(869), + [anon_sym_if] = ACTIONS(869), + [anon_sym_impl] = ACTIONS(869), + [anon_sym_let] = ACTIONS(869), + [anon_sym_match] = ACTIONS(869), + [anon_sym_pub] = ACTIONS(869), + [anon_sym_return] = ACTIONS(869), + [anon_sym_storage] = ACTIONS(869), [anon_sym_struct] = ACTIONS(869), [anon_sym_trait] = ACTIONS(869), [anon_sym_type] = ACTIONS(869), @@ -38430,6 +33945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(869), [anon_sym_POUND] = ACTIONS(867), [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), [anon_sym_asm] = ACTIONS(869), [anon_sym_LT] = ACTIONS(867), [anon_sym_COLON_COLON] = ACTIONS(867), @@ -38481,9 +33999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(873), [anon_sym_predicate] = ACTIONS(873), [anon_sym_library] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_RBRACE] = ACTIONS(871), [anon_sym_SQUOTE] = ACTIONS(873), [anon_sym_abi] = ACTIONS(873), [anon_sym_break] = ACTIONS(873), @@ -38509,6 +34024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(873), [anon_sym_POUND] = ACTIONS(871), [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), [anon_sym_asm] = ACTIONS(873), [anon_sym_LT] = ACTIONS(871), [anon_sym_COLON_COLON] = ACTIONS(871), @@ -38532,85 +34050,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_match_arm] = STATE(408), - [sym_last_match_arm] = STATE(2014), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(414), - [aux_sym_match_block_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(875), - [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_u256] = ACTIONS(685), - [anon_sym_i256] = ACTIONS(685), - [anon_sym_b256] = 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_char] = ACTIONS(685), - [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), + [ts_builtin_sym_end] = ACTIONS(875), + [sym_identifier] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(877), + [anon_sym_i8] = ACTIONS(877), + [anon_sym_u16] = ACTIONS(877), + [anon_sym_i16] = ACTIONS(877), + [anon_sym_u32] = ACTIONS(877), + [anon_sym_i32] = ACTIONS(877), + [anon_sym_u64] = ACTIONS(877), + [anon_sym_i64] = ACTIONS(877), + [anon_sym_u128] = ACTIONS(877), + [anon_sym_i128] = ACTIONS(877), + [anon_sym_u256] = ACTIONS(877), + [anon_sym_i256] = ACTIONS(877), + [anon_sym_b256] = ACTIONS(877), + [anon_sym_isize] = ACTIONS(877), + [anon_sym_usize] = ACTIONS(877), + [anon_sym_f32] = ACTIONS(877), + [anon_sym_f64] = ACTIONS(877), + [anon_sym_bool] = ACTIONS(877), + [anon_sym_char] = ACTIONS(877), + [anon_sym_str] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_contract] = ACTIONS(877), + [anon_sym_script] = ACTIONS(877), + [anon_sym_predicate] = ACTIONS(877), + [anon_sym_library] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_abi] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_configurable] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_default] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_enum] = ACTIONS(877), + [anon_sym_fn] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_impl] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_pub] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_storage] = ACTIONS(877), + [anon_sym_struct] = ACTIONS(877), + [anon_sym_trait] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_asm] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_COLON_COLON] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(877), + [anon_sym_move] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(875), + [aux_sym_string_literal_token1] = ACTIONS(875), + [sym_char_literal] = ACTIONS(875), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(877), + [sym_metavariable] = ACTIONS(875), + [sym_raw_string_literal] = ACTIONS(875), + [sym_float_literal] = ACTIONS(875), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(879), + [sym_identifier] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_u8] = ACTIONS(881), + [anon_sym_i8] = ACTIONS(881), + [anon_sym_u16] = ACTIONS(881), + [anon_sym_i16] = ACTIONS(881), + [anon_sym_u32] = ACTIONS(881), + [anon_sym_i32] = ACTIONS(881), + [anon_sym_u64] = ACTIONS(881), + [anon_sym_i64] = ACTIONS(881), + [anon_sym_u128] = ACTIONS(881), + [anon_sym_i128] = ACTIONS(881), + [anon_sym_u256] = ACTIONS(881), + [anon_sym_i256] = ACTIONS(881), + [anon_sym_b256] = ACTIONS(881), + [anon_sym_isize] = ACTIONS(881), + [anon_sym_usize] = ACTIONS(881), + [anon_sym_f32] = ACTIONS(881), + [anon_sym_f64] = ACTIONS(881), + [anon_sym_bool] = ACTIONS(881), + [anon_sym_char] = ACTIONS(881), + [anon_sym_str] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_contract] = ACTIONS(881), + [anon_sym_script] = ACTIONS(881), + [anon_sym_predicate] = ACTIONS(881), + [anon_sym_library] = ACTIONS(881), + [anon_sym_SQUOTE] = ACTIONS(881), + [anon_sym_abi] = ACTIONS(881), + [anon_sym_break] = ACTIONS(881), + [anon_sym_configurable] = ACTIONS(881), + [anon_sym_const] = ACTIONS(881), + [anon_sym_continue] = ACTIONS(881), + [anon_sym_default] = ACTIONS(881), + [anon_sym_mod] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(881), + [anon_sym_fn] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_impl] = ACTIONS(881), + [anon_sym_let] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_pub] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_storage] = ACTIONS(881), + [anon_sym_struct] = ACTIONS(881), + [anon_sym_trait] = ACTIONS(881), + [anon_sym_type] = ACTIONS(881), + [anon_sym_use] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(879), [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_const] = ACTIONS(883), + [anon_sym_asm] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_COLON_COLON] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_move] = ACTIONS(881), + [sym_integer_literal] = ACTIONS(879), + [aux_sym_string_literal_token1] = ACTIONS(879), + [sym_char_literal] = ACTIONS(879), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(881), + [sym_metavariable] = ACTIONS(879), + [sym_raw_string_literal] = ACTIONS(879), + [sym_float_literal] = ACTIONS(879), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(883), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_u256] = ACTIONS(885), + [anon_sym_i256] = ACTIONS(885), + [anon_sym_b256] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_contract] = ACTIONS(885), + [anon_sym_script] = ACTIONS(885), + [anon_sym_predicate] = ACTIONS(885), + [anon_sym_library] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_abi] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_configurable] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(75), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_storage] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_asm] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(883), + [anon_sym_COLON_COLON] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_yield] = ACTIONS(885), + [anon_sym_move] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(883), + [aux_sym_string_literal_token1] = ACTIONS(883), + [sym_char_literal] = ACTIONS(883), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(885), + [sym_metavariable] = ACTIONS(883), + [sym_raw_string_literal] = ACTIONS(883), + [sym_float_literal] = ACTIONS(883), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(887), + [sym_identifier] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(889), + [anon_sym_i8] = ACTIONS(889), + [anon_sym_u16] = ACTIONS(889), + [anon_sym_i16] = ACTIONS(889), + [anon_sym_u32] = ACTIONS(889), + [anon_sym_i32] = ACTIONS(889), + [anon_sym_u64] = ACTIONS(889), + [anon_sym_i64] = ACTIONS(889), + [anon_sym_u128] = ACTIONS(889), + [anon_sym_i128] = ACTIONS(889), + [anon_sym_u256] = ACTIONS(889), + [anon_sym_i256] = ACTIONS(889), + [anon_sym_b256] = ACTIONS(889), + [anon_sym_isize] = ACTIONS(889), + [anon_sym_usize] = ACTIONS(889), + [anon_sym_f32] = ACTIONS(889), + [anon_sym_f64] = ACTIONS(889), + [anon_sym_bool] = ACTIONS(889), + [anon_sym_char] = ACTIONS(889), + [anon_sym_str] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_contract] = ACTIONS(889), + [anon_sym_script] = ACTIONS(889), + [anon_sym_predicate] = ACTIONS(889), + [anon_sym_library] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(889), + [anon_sym_abi] = ACTIONS(889), + [anon_sym_break] = ACTIONS(889), + [anon_sym_configurable] = ACTIONS(889), + [anon_sym_const] = ACTIONS(889), + [anon_sym_continue] = ACTIONS(889), + [anon_sym_default] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(889), + [anon_sym_fn] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_impl] = ACTIONS(889), + [anon_sym_let] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_pub] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_storage] = ACTIONS(889), + [anon_sym_struct] = ACTIONS(889), + [anon_sym_trait] = ACTIONS(889), + [anon_sym_type] = ACTIONS(889), + [anon_sym_use] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_asm] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(887), [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_deref] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(725), - [aux_sym_string_literal_token1] = ACTIONS(727), - [sym_char_literal] = ACTIONS(725), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(887), + [anon_sym_DOT_DOT] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(889), + [anon_sym_move] = ACTIONS(889), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), + [sym_self] = ACTIONS(889), + [sym_metavariable] = ACTIONS(887), + [sym_raw_string_literal] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), [sym_block_comment] = ACTIONS(3), }, - [230] = { + [233] = { + [ts_builtin_sym_end] = ACTIONS(891), + [sym_identifier] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_u8] = ACTIONS(893), + [anon_sym_i8] = ACTIONS(893), + [anon_sym_u16] = ACTIONS(893), + [anon_sym_i16] = ACTIONS(893), + [anon_sym_u32] = ACTIONS(893), + [anon_sym_i32] = ACTIONS(893), + [anon_sym_u64] = ACTIONS(893), + [anon_sym_i64] = ACTIONS(893), + [anon_sym_u128] = ACTIONS(893), + [anon_sym_i128] = ACTIONS(893), + [anon_sym_u256] = ACTIONS(893), + [anon_sym_i256] = ACTIONS(893), + [anon_sym_b256] = ACTIONS(893), + [anon_sym_isize] = ACTIONS(893), + [anon_sym_usize] = ACTIONS(893), + [anon_sym_f32] = ACTIONS(893), + [anon_sym_f64] = ACTIONS(893), + [anon_sym_bool] = ACTIONS(893), + [anon_sym_char] = ACTIONS(893), + [anon_sym_str] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_contract] = ACTIONS(893), + [anon_sym_script] = ACTIONS(893), + [anon_sym_predicate] = ACTIONS(893), + [anon_sym_library] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(893), + [anon_sym_abi] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_configurable] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_default] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(893), + [anon_sym_fn] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_impl] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_pub] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_storage] = ACTIONS(893), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_trait] = ACTIONS(893), + [anon_sym_type] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_asm] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_DOT_DOT] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(893), + [anon_sym_move] = ACTIONS(893), + [sym_integer_literal] = ACTIONS(891), + [aux_sym_string_literal_token1] = ACTIONS(891), + [sym_char_literal] = ACTIONS(891), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(893), + [sym_metavariable] = ACTIONS(891), + [sym_raw_string_literal] = ACTIONS(891), + [sym_float_literal] = ACTIONS(891), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { [ts_builtin_sym_end] = ACTIONS(895), [sym_identifier] = ACTIONS(897), [anon_sym_SEMI] = ACTIONS(895), @@ -38639,9 +34473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(897), [anon_sym_predicate] = ACTIONS(897), [anon_sym_library] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_SQUOTE] = ACTIONS(897), [anon_sym_abi] = ACTIONS(897), [anon_sym_break] = ACTIONS(897), @@ -38667,6 +34498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(897), [anon_sym_POUND] = ACTIONS(895), [anon_sym_BANG] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), [anon_sym_asm] = ACTIONS(897), [anon_sym_LT] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(895), @@ -38689,7 +34523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(895), [sym_block_comment] = ACTIONS(3), }, - [231] = { + [235] = { [ts_builtin_sym_end] = ACTIONS(899), [sym_identifier] = ACTIONS(901), [anon_sym_SEMI] = ACTIONS(899), @@ -38718,9 +34552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(901), [anon_sym_predicate] = ACTIONS(901), [anon_sym_library] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), [anon_sym_SQUOTE] = ACTIONS(901), [anon_sym_abi] = ACTIONS(901), [anon_sym_break] = ACTIONS(901), @@ -38746,6 +34577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(899), [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), [anon_sym_asm] = ACTIONS(901), [anon_sym_LT] = ACTIONS(899), [anon_sym_COLON_COLON] = ACTIONS(899), @@ -38768,7 +34602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(899), [sym_block_comment] = ACTIONS(3), }, - [232] = { + [236] = { [ts_builtin_sym_end] = ACTIONS(903), [sym_identifier] = ACTIONS(905), [anon_sym_SEMI] = ACTIONS(903), @@ -38797,9 +34631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(905), [anon_sym_predicate] = ACTIONS(905), [anon_sym_library] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), [anon_sym_SQUOTE] = ACTIONS(905), [anon_sym_abi] = ACTIONS(905), [anon_sym_break] = ACTIONS(905), @@ -38825,6 +34656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(905), [anon_sym_POUND] = ACTIONS(903), [anon_sym_BANG] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), [anon_sym_asm] = ACTIONS(905), [anon_sym_LT] = ACTIONS(903), [anon_sym_COLON_COLON] = ACTIONS(903), @@ -38847,7 +34681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(903), [sym_block_comment] = ACTIONS(3), }, - [233] = { + [237] = { [ts_builtin_sym_end] = ACTIONS(907), [sym_identifier] = ACTIONS(909), [anon_sym_SEMI] = ACTIONS(907), @@ -38876,9 +34710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(909), [anon_sym_predicate] = ACTIONS(909), [anon_sym_library] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), [anon_sym_SQUOTE] = ACTIONS(909), [anon_sym_abi] = ACTIONS(909), [anon_sym_break] = ACTIONS(909), @@ -38904,6 +34735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(907), [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), [anon_sym_asm] = ACTIONS(909), [anon_sym_LT] = ACTIONS(907), [anon_sym_COLON_COLON] = ACTIONS(907), @@ -38926,7 +34760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(907), [sym_block_comment] = ACTIONS(3), }, - [234] = { + [238] = { [ts_builtin_sym_end] = ACTIONS(911), [sym_identifier] = ACTIONS(913), [anon_sym_SEMI] = ACTIONS(911), @@ -38955,9 +34789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(913), [anon_sym_predicate] = ACTIONS(913), [anon_sym_library] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), [anon_sym_SQUOTE] = ACTIONS(913), [anon_sym_abi] = ACTIONS(913), [anon_sym_break] = ACTIONS(913), @@ -38983,6 +34814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(911), [anon_sym_BANG] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), [anon_sym_asm] = ACTIONS(913), [anon_sym_LT] = ACTIONS(911), [anon_sym_COLON_COLON] = ACTIONS(911), @@ -39005,7 +34839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(911), [sym_block_comment] = ACTIONS(3), }, - [235] = { + [239] = { [ts_builtin_sym_end] = ACTIONS(915), [sym_identifier] = ACTIONS(917), [anon_sym_SEMI] = ACTIONS(915), @@ -39034,9 +34868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(917), [anon_sym_predicate] = ACTIONS(917), [anon_sym_library] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), [anon_sym_SQUOTE] = ACTIONS(917), [anon_sym_abi] = ACTIONS(917), [anon_sym_break] = ACTIONS(917), @@ -39062,6 +34893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(915), [anon_sym_BANG] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), [anon_sym_asm] = ACTIONS(917), [anon_sym_LT] = ACTIONS(915), [anon_sym_COLON_COLON] = ACTIONS(915), @@ -39084,7 +34918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(915), [sym_block_comment] = ACTIONS(3), }, - [236] = { + [240] = { [ts_builtin_sym_end] = ACTIONS(919), [sym_identifier] = ACTIONS(921), [anon_sym_SEMI] = ACTIONS(919), @@ -39113,9 +34947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(921), [anon_sym_predicate] = ACTIONS(921), [anon_sym_library] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), [anon_sym_SQUOTE] = ACTIONS(921), [anon_sym_abi] = ACTIONS(921), [anon_sym_break] = ACTIONS(921), @@ -39141,6 +34972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(921), [anon_sym_POUND] = ACTIONS(919), [anon_sym_BANG] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), [anon_sym_asm] = ACTIONS(921), [anon_sym_LT] = ACTIONS(919), [anon_sym_COLON_COLON] = ACTIONS(919), @@ -39163,7 +34997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(919), [sym_block_comment] = ACTIONS(3), }, - [237] = { + [241] = { [ts_builtin_sym_end] = ACTIONS(923), [sym_identifier] = ACTIONS(925), [anon_sym_SEMI] = ACTIONS(923), @@ -39192,9 +35026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(925), [anon_sym_predicate] = ACTIONS(925), [anon_sym_library] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), [anon_sym_SQUOTE] = ACTIONS(925), [anon_sym_abi] = ACTIONS(925), [anon_sym_break] = ACTIONS(925), @@ -39220,6 +35051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(925), [anon_sym_POUND] = ACTIONS(923), [anon_sym_BANG] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), [anon_sym_asm] = ACTIONS(925), [anon_sym_LT] = ACTIONS(923), [anon_sym_COLON_COLON] = ACTIONS(923), @@ -39242,7 +35076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(923), [sym_block_comment] = ACTIONS(3), }, - [238] = { + [242] = { [ts_builtin_sym_end] = ACTIONS(927), [sym_identifier] = ACTIONS(929), [anon_sym_SEMI] = ACTIONS(927), @@ -39271,9 +35105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(929), [anon_sym_predicate] = ACTIONS(929), [anon_sym_library] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), [anon_sym_SQUOTE] = ACTIONS(929), [anon_sym_abi] = ACTIONS(929), [anon_sym_break] = ACTIONS(929), @@ -39299,6 +35130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(929), [anon_sym_POUND] = ACTIONS(927), [anon_sym_BANG] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), [anon_sym_asm] = ACTIONS(929), [anon_sym_LT] = ACTIONS(927), [anon_sym_COLON_COLON] = ACTIONS(927), @@ -39321,7 +35155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(927), [sym_block_comment] = ACTIONS(3), }, - [239] = { + [243] = { [ts_builtin_sym_end] = ACTIONS(931), [sym_identifier] = ACTIONS(933), [anon_sym_SEMI] = ACTIONS(931), @@ -39350,9 +35184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(933), [anon_sym_predicate] = ACTIONS(933), [anon_sym_library] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), [anon_sym_SQUOTE] = ACTIONS(933), [anon_sym_abi] = ACTIONS(933), [anon_sym_break] = ACTIONS(933), @@ -39378,6 +35209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(931), [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), [anon_sym_asm] = ACTIONS(933), [anon_sym_LT] = ACTIONS(931), [anon_sym_COLON_COLON] = ACTIONS(931), @@ -39400,7 +35234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(931), [sym_block_comment] = ACTIONS(3), }, - [240] = { + [244] = { [ts_builtin_sym_end] = ACTIONS(935), [sym_identifier] = ACTIONS(937), [anon_sym_SEMI] = ACTIONS(935), @@ -39429,9 +35263,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(937), [anon_sym_predicate] = ACTIONS(937), [anon_sym_library] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), [anon_sym_SQUOTE] = ACTIONS(937), [anon_sym_abi] = ACTIONS(937), [anon_sym_break] = ACTIONS(937), @@ -39457,6 +35288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(937), [anon_sym_POUND] = ACTIONS(935), [anon_sym_BANG] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), [anon_sym_asm] = ACTIONS(937), [anon_sym_LT] = ACTIONS(935), [anon_sym_COLON_COLON] = ACTIONS(935), @@ -39479,7 +35313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(935), [sym_block_comment] = ACTIONS(3), }, - [241] = { + [245] = { [ts_builtin_sym_end] = ACTIONS(939), [sym_identifier] = ACTIONS(941), [anon_sym_SEMI] = ACTIONS(939), @@ -39508,9 +35342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(941), [anon_sym_predicate] = ACTIONS(941), [anon_sym_library] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), [anon_sym_SQUOTE] = ACTIONS(941), [anon_sym_abi] = ACTIONS(941), [anon_sym_break] = ACTIONS(941), @@ -39536,6 +35367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(941), [anon_sym_POUND] = ACTIONS(939), [anon_sym_BANG] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), [anon_sym_asm] = ACTIONS(941), [anon_sym_LT] = ACTIONS(939), [anon_sym_COLON_COLON] = ACTIONS(939), @@ -39558,7 +35392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(939), [sym_block_comment] = ACTIONS(3), }, - [242] = { + [246] = { [ts_builtin_sym_end] = ACTIONS(943), [sym_identifier] = ACTIONS(945), [anon_sym_SEMI] = ACTIONS(943), @@ -39587,9 +35421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(945), [anon_sym_predicate] = ACTIONS(945), [anon_sym_library] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), [anon_sym_SQUOTE] = ACTIONS(945), [anon_sym_abi] = ACTIONS(945), [anon_sym_break] = ACTIONS(945), @@ -39615,6 +35446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(945), [anon_sym_POUND] = ACTIONS(943), [anon_sym_BANG] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), [anon_sym_asm] = ACTIONS(945), [anon_sym_LT] = ACTIONS(943), [anon_sym_COLON_COLON] = ACTIONS(943), @@ -39637,7 +35471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(943), [sym_block_comment] = ACTIONS(3), }, - [243] = { + [247] = { [ts_builtin_sym_end] = ACTIONS(947), [sym_identifier] = ACTIONS(949), [anon_sym_SEMI] = ACTIONS(947), @@ -39666,9 +35500,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(949), [anon_sym_predicate] = ACTIONS(949), [anon_sym_library] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), [anon_sym_SQUOTE] = ACTIONS(949), [anon_sym_abi] = ACTIONS(949), [anon_sym_break] = ACTIONS(949), @@ -39694,6 +35525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(949), [anon_sym_POUND] = ACTIONS(947), [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), [anon_sym_asm] = ACTIONS(949), [anon_sym_LT] = ACTIONS(947), [anon_sym_COLON_COLON] = ACTIONS(947), @@ -39716,7 +35550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(947), [sym_block_comment] = ACTIONS(3), }, - [244] = { + [248] = { [ts_builtin_sym_end] = ACTIONS(951), [sym_identifier] = ACTIONS(953), [anon_sym_SEMI] = ACTIONS(951), @@ -39745,9 +35579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(953), [anon_sym_predicate] = ACTIONS(953), [anon_sym_library] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), [anon_sym_SQUOTE] = ACTIONS(953), [anon_sym_abi] = ACTIONS(953), [anon_sym_break] = ACTIONS(953), @@ -39773,6 +35604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(953), [anon_sym_POUND] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_asm] = ACTIONS(953), [anon_sym_LT] = ACTIONS(951), [anon_sym_COLON_COLON] = ACTIONS(951), @@ -39795,7 +35629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(951), [sym_block_comment] = ACTIONS(3), }, - [245] = { + [249] = { [ts_builtin_sym_end] = ACTIONS(955), [sym_identifier] = ACTIONS(957), [anon_sym_SEMI] = ACTIONS(955), @@ -39824,9 +35658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(957), [anon_sym_predicate] = ACTIONS(957), [anon_sym_library] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), [anon_sym_SQUOTE] = ACTIONS(957), [anon_sym_abi] = ACTIONS(957), [anon_sym_break] = ACTIONS(957), @@ -39852,6 +35683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(957), [anon_sym_POUND] = ACTIONS(955), [anon_sym_BANG] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(955), [anon_sym_asm] = ACTIONS(957), [anon_sym_LT] = ACTIONS(955), [anon_sym_COLON_COLON] = ACTIONS(955), @@ -39874,7 +35708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(955), [sym_block_comment] = ACTIONS(3), }, - [246] = { + [250] = { [ts_builtin_sym_end] = ACTIONS(959), [sym_identifier] = ACTIONS(961), [anon_sym_SEMI] = ACTIONS(959), @@ -39903,9 +35737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(961), [anon_sym_predicate] = ACTIONS(961), [anon_sym_library] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), [anon_sym_SQUOTE] = ACTIONS(961), [anon_sym_abi] = ACTIONS(961), [anon_sym_break] = ACTIONS(961), @@ -39931,6 +35762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(961), [anon_sym_POUND] = ACTIONS(959), [anon_sym_BANG] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), [anon_sym_asm] = ACTIONS(961), [anon_sym_LT] = ACTIONS(959), [anon_sym_COLON_COLON] = ACTIONS(959), @@ -39953,7 +35787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(959), [sym_block_comment] = ACTIONS(3), }, - [247] = { + [251] = { [ts_builtin_sym_end] = ACTIONS(963), [sym_identifier] = ACTIONS(965), [anon_sym_SEMI] = ACTIONS(963), @@ -39982,9 +35816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(965), [anon_sym_predicate] = ACTIONS(965), [anon_sym_library] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), [anon_sym_SQUOTE] = ACTIONS(965), [anon_sym_abi] = ACTIONS(965), [anon_sym_break] = ACTIONS(965), @@ -40010,6 +35841,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(965), [anon_sym_POUND] = ACTIONS(963), [anon_sym_BANG] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), [anon_sym_asm] = ACTIONS(965), [anon_sym_LT] = ACTIONS(963), [anon_sym_COLON_COLON] = ACTIONS(963), @@ -40032,7 +35866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(963), [sym_block_comment] = ACTIONS(3), }, - [248] = { + [252] = { [ts_builtin_sym_end] = ACTIONS(967), [sym_identifier] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(967), @@ -40061,9 +35895,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(969), [anon_sym_predicate] = ACTIONS(969), [anon_sym_library] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), [anon_sym_SQUOTE] = ACTIONS(969), [anon_sym_abi] = ACTIONS(969), [anon_sym_break] = ACTIONS(969), @@ -40089,6 +35920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(967), [anon_sym_BANG] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), [anon_sym_asm] = ACTIONS(969), [anon_sym_LT] = ACTIONS(967), [anon_sym_COLON_COLON] = ACTIONS(967), @@ -40111,7 +35945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(967), [sym_block_comment] = ACTIONS(3), }, - [249] = { + [253] = { [ts_builtin_sym_end] = ACTIONS(971), [sym_identifier] = ACTIONS(973), [anon_sym_SEMI] = ACTIONS(971), @@ -40140,9 +35974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(973), [anon_sym_predicate] = ACTIONS(973), [anon_sym_library] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), [anon_sym_SQUOTE] = ACTIONS(973), [anon_sym_abi] = ACTIONS(973), [anon_sym_break] = ACTIONS(973), @@ -40168,6 +35999,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(971), [anon_sym_BANG] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), [anon_sym_asm] = ACTIONS(973), [anon_sym_LT] = ACTIONS(971), [anon_sym_COLON_COLON] = ACTIONS(971), @@ -40190,7 +36024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(971), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(975), [sym_identifier] = ACTIONS(977), [anon_sym_SEMI] = ACTIONS(975), @@ -40219,9 +36053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(977), [anon_sym_predicate] = ACTIONS(977), [anon_sym_library] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), [anon_sym_SQUOTE] = ACTIONS(977), [anon_sym_abi] = ACTIONS(977), [anon_sym_break] = ACTIONS(977), @@ -40247,6 +36078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(977), [anon_sym_POUND] = ACTIONS(975), [anon_sym_BANG] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(975), [anon_sym_asm] = ACTIONS(977), [anon_sym_LT] = ACTIONS(975), [anon_sym_COLON_COLON] = ACTIONS(975), @@ -40269,7 +36103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(975), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(979), [sym_identifier] = ACTIONS(981), [anon_sym_SEMI] = ACTIONS(979), @@ -40298,9 +36132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(981), [anon_sym_predicate] = ACTIONS(981), [anon_sym_library] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), [anon_sym_SQUOTE] = ACTIONS(981), [anon_sym_abi] = ACTIONS(981), [anon_sym_break] = ACTIONS(981), @@ -40326,6 +36157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(981), [anon_sym_POUND] = ACTIONS(979), [anon_sym_BANG] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), [anon_sym_asm] = ACTIONS(981), [anon_sym_LT] = ACTIONS(979), [anon_sym_COLON_COLON] = ACTIONS(979), @@ -40348,7 +36182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(979), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(983), [sym_identifier] = ACTIONS(985), [anon_sym_SEMI] = ACTIONS(983), @@ -40377,9 +36211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(985), [anon_sym_predicate] = ACTIONS(985), [anon_sym_library] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), [anon_sym_SQUOTE] = ACTIONS(985), [anon_sym_abi] = ACTIONS(985), [anon_sym_break] = ACTIONS(985), @@ -40405,6 +36236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(985), [anon_sym_POUND] = ACTIONS(983), [anon_sym_BANG] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), [anon_sym_asm] = ACTIONS(985), [anon_sym_LT] = ACTIONS(983), [anon_sym_COLON_COLON] = ACTIONS(983), @@ -40427,7 +36261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(983), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(987), [sym_identifier] = ACTIONS(989), [anon_sym_SEMI] = ACTIONS(987), @@ -40456,9 +36290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(989), [anon_sym_predicate] = ACTIONS(989), [anon_sym_library] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), [anon_sym_SQUOTE] = ACTIONS(989), [anon_sym_abi] = ACTIONS(989), [anon_sym_break] = ACTIONS(989), @@ -40484,6 +36315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(989), [anon_sym_POUND] = ACTIONS(987), [anon_sym_BANG] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), [anon_sym_asm] = ACTIONS(989), [anon_sym_LT] = ACTIONS(987), [anon_sym_COLON_COLON] = ACTIONS(987), @@ -40506,7 +36340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(987), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(991), [sym_identifier] = ACTIONS(993), [anon_sym_SEMI] = ACTIONS(991), @@ -40535,9 +36369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(993), [anon_sym_predicate] = ACTIONS(993), [anon_sym_library] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), [anon_sym_SQUOTE] = ACTIONS(993), [anon_sym_abi] = ACTIONS(993), [anon_sym_break] = ACTIONS(993), @@ -40563,6 +36394,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(993), [anon_sym_POUND] = ACTIONS(991), [anon_sym_BANG] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), [anon_sym_asm] = ACTIONS(993), [anon_sym_LT] = ACTIONS(991), [anon_sym_COLON_COLON] = ACTIONS(991), @@ -40585,7 +36419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(991), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(995), [sym_identifier] = ACTIONS(997), [anon_sym_SEMI] = ACTIONS(995), @@ -40614,9 +36448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(997), [anon_sym_predicate] = ACTIONS(997), [anon_sym_library] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), [anon_sym_SQUOTE] = ACTIONS(997), [anon_sym_abi] = ACTIONS(997), [anon_sym_break] = ACTIONS(997), @@ -40642,6 +36473,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(997), [anon_sym_POUND] = ACTIONS(995), [anon_sym_BANG] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), [anon_sym_asm] = ACTIONS(997), [anon_sym_LT] = ACTIONS(995), [anon_sym_COLON_COLON] = ACTIONS(995), @@ -40664,7 +36498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(999), [sym_identifier] = ACTIONS(1001), [anon_sym_SEMI] = ACTIONS(999), @@ -40693,9 +36527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1001), [anon_sym_predicate] = ACTIONS(1001), [anon_sym_library] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), [anon_sym_SQUOTE] = ACTIONS(1001), [anon_sym_abi] = ACTIONS(1001), [anon_sym_break] = ACTIONS(1001), @@ -40721,6 +36552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1001), [anon_sym_POUND] = ACTIONS(999), [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), [anon_sym_asm] = ACTIONS(1001), [anon_sym_LT] = ACTIONS(999), [anon_sym_COLON_COLON] = ACTIONS(999), @@ -40743,7 +36577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(999), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1003), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1003), @@ -40772,9 +36606,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1005), [anon_sym_predicate] = ACTIONS(1005), [anon_sym_library] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), [anon_sym_SQUOTE] = ACTIONS(1005), [anon_sym_abi] = ACTIONS(1005), [anon_sym_break] = ACTIONS(1005), @@ -40800,6 +36631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(1003), [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), [anon_sym_asm] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1003), [anon_sym_COLON_COLON] = ACTIONS(1003), @@ -40822,7 +36656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1003), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1007), [sym_identifier] = ACTIONS(1009), [anon_sym_SEMI] = ACTIONS(1007), @@ -40851,9 +36685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1009), [anon_sym_predicate] = ACTIONS(1009), [anon_sym_library] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), [anon_sym_SQUOTE] = ACTIONS(1009), [anon_sym_abi] = ACTIONS(1009), [anon_sym_break] = ACTIONS(1009), @@ -40879,6 +36710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1009), [anon_sym_POUND] = ACTIONS(1007), [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), [anon_sym_asm] = ACTIONS(1009), [anon_sym_LT] = ACTIONS(1007), [anon_sym_COLON_COLON] = ACTIONS(1007), @@ -40901,7 +36735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1007), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1011), [sym_identifier] = ACTIONS(1013), [anon_sym_SEMI] = ACTIONS(1011), @@ -40930,9 +36764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1013), [anon_sym_predicate] = ACTIONS(1013), [anon_sym_library] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), [anon_sym_SQUOTE] = ACTIONS(1013), [anon_sym_abi] = ACTIONS(1013), [anon_sym_break] = ACTIONS(1013), @@ -40958,6 +36789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1013), [anon_sym_POUND] = ACTIONS(1011), [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), [anon_sym_asm] = ACTIONS(1013), [anon_sym_LT] = ACTIONS(1011), [anon_sym_COLON_COLON] = ACTIONS(1011), @@ -40980,7 +36814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1011), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1015), [sym_identifier] = ACTIONS(1017), [anon_sym_SEMI] = ACTIONS(1015), @@ -41009,9 +36843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1017), [anon_sym_predicate] = ACTIONS(1017), [anon_sym_library] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), [anon_sym_SQUOTE] = ACTIONS(1017), [anon_sym_abi] = ACTIONS(1017), [anon_sym_break] = ACTIONS(1017), @@ -41037,6 +36868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(1015), [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), [anon_sym_asm] = ACTIONS(1017), [anon_sym_LT] = ACTIONS(1015), [anon_sym_COLON_COLON] = ACTIONS(1015), @@ -41059,7 +36893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1015), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1019), [sym_identifier] = ACTIONS(1021), [anon_sym_SEMI] = ACTIONS(1019), @@ -41088,9 +36922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1021), [anon_sym_predicate] = ACTIONS(1021), [anon_sym_library] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), [anon_sym_SQUOTE] = ACTIONS(1021), [anon_sym_abi] = ACTIONS(1021), [anon_sym_break] = ACTIONS(1021), @@ -41116,6 +36947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(1019), [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), [anon_sym_asm] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(1019), [anon_sym_COLON_COLON] = ACTIONS(1019), @@ -41138,7 +36972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1019), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1023), [sym_identifier] = ACTIONS(1025), [anon_sym_SEMI] = ACTIONS(1023), @@ -41167,9 +37001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1025), [anon_sym_predicate] = ACTIONS(1025), [anon_sym_library] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), [anon_sym_SQUOTE] = ACTIONS(1025), [anon_sym_abi] = ACTIONS(1025), [anon_sym_break] = ACTIONS(1025), @@ -41195,6 +37026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1025), [anon_sym_POUND] = ACTIONS(1023), [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), [anon_sym_asm] = ACTIONS(1025), [anon_sym_LT] = ACTIONS(1023), [anon_sym_COLON_COLON] = ACTIONS(1023), @@ -41217,7 +37051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1023), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1027), [sym_identifier] = ACTIONS(1029), [anon_sym_SEMI] = ACTIONS(1027), @@ -41246,9 +37080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1029), [anon_sym_predicate] = ACTIONS(1029), [anon_sym_library] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), [anon_sym_SQUOTE] = ACTIONS(1029), [anon_sym_abi] = ACTIONS(1029), [anon_sym_break] = ACTIONS(1029), @@ -41274,6 +37105,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1029), [anon_sym_POUND] = ACTIONS(1027), [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), [anon_sym_asm] = ACTIONS(1029), [anon_sym_LT] = ACTIONS(1027), [anon_sym_COLON_COLON] = ACTIONS(1027), @@ -41296,7 +37130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1027), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1031), [sym_identifier] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(1031), @@ -41325,9 +37159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1033), [anon_sym_predicate] = ACTIONS(1033), [anon_sym_library] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), [anon_sym_SQUOTE] = ACTIONS(1033), [anon_sym_abi] = ACTIONS(1033), [anon_sym_break] = ACTIONS(1033), @@ -41353,6 +37184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1033), [anon_sym_POUND] = ACTIONS(1031), [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), [anon_sym_asm] = ACTIONS(1033), [anon_sym_LT] = ACTIONS(1031), [anon_sym_COLON_COLON] = ACTIONS(1031), @@ -41375,7 +37209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1031), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1035), [sym_identifier] = ACTIONS(1037), [anon_sym_SEMI] = ACTIONS(1035), @@ -41404,9 +37238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1037), [anon_sym_predicate] = ACTIONS(1037), [anon_sym_library] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), [anon_sym_SQUOTE] = ACTIONS(1037), [anon_sym_abi] = ACTIONS(1037), [anon_sym_break] = ACTIONS(1037), @@ -41432,6 +37263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1037), [anon_sym_POUND] = ACTIONS(1035), [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), [anon_sym_asm] = ACTIONS(1037), [anon_sym_LT] = ACTIONS(1035), [anon_sym_COLON_COLON] = ACTIONS(1035), @@ -41454,7 +37288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1035), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1039), [sym_identifier] = ACTIONS(1041), [anon_sym_SEMI] = ACTIONS(1039), @@ -41483,9 +37317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1041), [anon_sym_predicate] = ACTIONS(1041), [anon_sym_library] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_SQUOTE] = ACTIONS(1041), [anon_sym_abi] = ACTIONS(1041), [anon_sym_break] = ACTIONS(1041), @@ -41511,6 +37342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1041), [anon_sym_POUND] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), [anon_sym_asm] = ACTIONS(1041), [anon_sym_LT] = ACTIONS(1039), [anon_sym_COLON_COLON] = ACTIONS(1039), @@ -41533,7 +37367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1039), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1043), [sym_identifier] = ACTIONS(1045), [anon_sym_SEMI] = ACTIONS(1043), @@ -41562,9 +37396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1045), [anon_sym_predicate] = ACTIONS(1045), [anon_sym_library] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_SQUOTE] = ACTIONS(1045), [anon_sym_abi] = ACTIONS(1045), [anon_sym_break] = ACTIONS(1045), @@ -41590,6 +37421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1045), [anon_sym_POUND] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), [anon_sym_asm] = ACTIONS(1045), [anon_sym_LT] = ACTIONS(1043), [anon_sym_COLON_COLON] = ACTIONS(1043), @@ -41612,7 +37446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1043), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1047), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1047), @@ -41641,9 +37475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1049), [anon_sym_predicate] = ACTIONS(1049), [anon_sym_library] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), [anon_sym_SQUOTE] = ACTIONS(1049), [anon_sym_abi] = ACTIONS(1049), [anon_sym_break] = ACTIONS(1049), @@ -41669,6 +37500,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1049), [anon_sym_POUND] = ACTIONS(1047), [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), [anon_sym_asm] = ACTIONS(1049), [anon_sym_LT] = ACTIONS(1047), [anon_sym_COLON_COLON] = ACTIONS(1047), @@ -41691,7 +37525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1047), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1051), [sym_identifier] = ACTIONS(1053), [anon_sym_SEMI] = ACTIONS(1051), @@ -41720,9 +37554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1053), [anon_sym_predicate] = ACTIONS(1053), [anon_sym_library] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_abi] = ACTIONS(1053), [anon_sym_break] = ACTIONS(1053), @@ -41748,6 +37579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1053), [anon_sym_POUND] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), [anon_sym_asm] = ACTIONS(1053), [anon_sym_LT] = ACTIONS(1051), [anon_sym_COLON_COLON] = ACTIONS(1051), @@ -41770,7 +37604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1051), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1055), [sym_identifier] = ACTIONS(1057), [anon_sym_SEMI] = ACTIONS(1055), @@ -41799,9 +37633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1057), [anon_sym_predicate] = ACTIONS(1057), [anon_sym_library] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(1057), [anon_sym_abi] = ACTIONS(1057), [anon_sym_break] = ACTIONS(1057), @@ -41827,6 +37658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1057), [anon_sym_POUND] = ACTIONS(1055), [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_asm] = ACTIONS(1057), [anon_sym_LT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(1055), @@ -41849,7 +37683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1055), [sym_block_comment] = ACTIONS(3), }, - [271] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1059), [sym_identifier] = ACTIONS(1061), [anon_sym_SEMI] = ACTIONS(1059), @@ -41878,9 +37712,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1061), [anon_sym_predicate] = ACTIONS(1061), [anon_sym_library] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(1061), [anon_sym_abi] = ACTIONS(1061), [anon_sym_break] = ACTIONS(1061), @@ -41906,6 +37737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1061), [anon_sym_POUND] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), [anon_sym_asm] = ACTIONS(1061), [anon_sym_LT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(1059), @@ -41928,7 +37762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1059), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1063), [sym_identifier] = ACTIONS(1065), [anon_sym_SEMI] = ACTIONS(1063), @@ -41957,9 +37791,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1065), [anon_sym_predicate] = ACTIONS(1065), [anon_sym_library] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(1065), [anon_sym_abi] = ACTIONS(1065), [anon_sym_break] = ACTIONS(1065), @@ -41985,6 +37816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1065), [anon_sym_POUND] = ACTIONS(1063), [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1063), [anon_sym_asm] = ACTIONS(1065), [anon_sym_LT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(1063), @@ -42007,7 +37841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1063), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1067), [sym_identifier] = ACTIONS(1069), [anon_sym_SEMI] = ACTIONS(1067), @@ -42036,9 +37870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1069), [anon_sym_predicate] = ACTIONS(1069), [anon_sym_library] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(1069), [anon_sym_abi] = ACTIONS(1069), [anon_sym_break] = ACTIONS(1069), @@ -42064,6 +37895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1069), [anon_sym_POUND] = ACTIONS(1067), [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1067), [anon_sym_asm] = ACTIONS(1069), [anon_sym_LT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(1067), @@ -42086,7 +37920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1067), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1071), [sym_identifier] = ACTIONS(1073), [anon_sym_SEMI] = ACTIONS(1071), @@ -42115,9 +37949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1073), [anon_sym_predicate] = ACTIONS(1073), [anon_sym_library] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1071), [anon_sym_SQUOTE] = ACTIONS(1073), [anon_sym_abi] = ACTIONS(1073), [anon_sym_break] = ACTIONS(1073), @@ -42143,6 +37974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1073), [anon_sym_POUND] = ACTIONS(1071), [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1071), [anon_sym_asm] = ACTIONS(1073), [anon_sym_LT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(1071), @@ -42165,7 +37999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1071), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1075), [sym_identifier] = ACTIONS(1077), [anon_sym_SEMI] = ACTIONS(1075), @@ -42194,9 +38028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1077), [anon_sym_predicate] = ACTIONS(1077), [anon_sym_library] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(1077), [anon_sym_abi] = ACTIONS(1077), [anon_sym_break] = ACTIONS(1077), @@ -42222,6 +38053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1077), [anon_sym_POUND] = ACTIONS(1075), [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1075), [anon_sym_asm] = ACTIONS(1077), [anon_sym_LT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(1075), @@ -42244,7 +38078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1075), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1079), [sym_identifier] = ACTIONS(1081), [anon_sym_SEMI] = ACTIONS(1079), @@ -42273,9 +38107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1081), [anon_sym_predicate] = ACTIONS(1081), [anon_sym_library] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), [anon_sym_SQUOTE] = ACTIONS(1081), [anon_sym_abi] = ACTIONS(1081), [anon_sym_break] = ACTIONS(1081), @@ -42301,6 +38132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1081), [anon_sym_POUND] = ACTIONS(1079), [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1079), [anon_sym_asm] = ACTIONS(1081), [anon_sym_LT] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(1079), @@ -42323,7 +38157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1079), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1083), [sym_identifier] = ACTIONS(1085), [anon_sym_SEMI] = ACTIONS(1083), @@ -42352,9 +38186,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1085), [anon_sym_predicate] = ACTIONS(1085), [anon_sym_library] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1083), [anon_sym_SQUOTE] = ACTIONS(1085), [anon_sym_abi] = ACTIONS(1085), [anon_sym_break] = ACTIONS(1085), @@ -42380,6 +38211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1085), [anon_sym_POUND] = ACTIONS(1083), [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), [anon_sym_asm] = ACTIONS(1085), [anon_sym_LT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(1083), @@ -42402,7 +38236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1083), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1087), [sym_identifier] = ACTIONS(1089), [anon_sym_SEMI] = ACTIONS(1087), @@ -42431,9 +38265,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1089), [anon_sym_predicate] = ACTIONS(1089), [anon_sym_library] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(1089), [anon_sym_abi] = ACTIONS(1089), [anon_sym_break] = ACTIONS(1089), @@ -42459,6 +38290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(1087), [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_asm] = ACTIONS(1089), [anon_sym_LT] = ACTIONS(1087), [anon_sym_COLON_COLON] = ACTIONS(1087), @@ -42481,7 +38315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1087), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1091), [sym_identifier] = ACTIONS(1093), [anon_sym_SEMI] = ACTIONS(1091), @@ -42510,9 +38344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1093), [anon_sym_predicate] = ACTIONS(1093), [anon_sym_library] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(1093), [anon_sym_abi] = ACTIONS(1093), [anon_sym_break] = ACTIONS(1093), @@ -42538,6 +38369,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1093), [anon_sym_POUND] = ACTIONS(1091), [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), [anon_sym_asm] = ACTIONS(1093), [anon_sym_LT] = ACTIONS(1091), [anon_sym_COLON_COLON] = ACTIONS(1091), @@ -42560,7 +38394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1091), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1095), [sym_identifier] = ACTIONS(1097), [anon_sym_SEMI] = ACTIONS(1095), @@ -42589,9 +38423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1097), [anon_sym_predicate] = ACTIONS(1097), [anon_sym_library] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), [anon_sym_SQUOTE] = ACTIONS(1097), [anon_sym_abi] = ACTIONS(1097), [anon_sym_break] = ACTIONS(1097), @@ -42617,6 +38448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), [anon_sym_asm] = ACTIONS(1097), [anon_sym_LT] = ACTIONS(1095), [anon_sym_COLON_COLON] = ACTIONS(1095), @@ -42639,5063 +38473,4984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1095), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_match_arm] = STATE(409), - [sym_last_match_arm] = STATE(2185), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(414), - [aux_sym_match_block_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(875), - [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_u256] = ACTIONS(685), - [anon_sym_i256] = ACTIONS(685), - [anon_sym_b256] = 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_char] = ACTIONS(685), - [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_deref] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(725), - [aux_sym_string_literal_token1] = ACTIONS(727), - [sym_char_literal] = ACTIONS(725), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), - [sym_block_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_identifier] = ACTIONS(1103), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_u8] = ACTIONS(1103), - [anon_sym_i8] = ACTIONS(1103), - [anon_sym_u16] = ACTIONS(1103), - [anon_sym_i16] = ACTIONS(1103), - [anon_sym_u32] = ACTIONS(1103), - [anon_sym_i32] = ACTIONS(1103), - [anon_sym_u64] = ACTIONS(1103), - [anon_sym_i64] = ACTIONS(1103), - [anon_sym_u128] = ACTIONS(1103), - [anon_sym_i128] = ACTIONS(1103), - [anon_sym_u256] = ACTIONS(1103), - [anon_sym_i256] = ACTIONS(1103), - [anon_sym_b256] = ACTIONS(1103), - [anon_sym_isize] = ACTIONS(1103), - [anon_sym_usize] = ACTIONS(1103), - [anon_sym_f32] = ACTIONS(1103), - [anon_sym_f64] = ACTIONS(1103), - [anon_sym_bool] = ACTIONS(1103), - [anon_sym_char] = ACTIONS(1103), - [anon_sym_str] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_contract] = ACTIONS(1103), - [anon_sym_script] = ACTIONS(1103), - [anon_sym_predicate] = ACTIONS(1103), - [anon_sym_library] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_abi] = ACTIONS(1103), - [anon_sym_break] = ACTIONS(1103), - [anon_sym_configurable] = ACTIONS(1103), - [anon_sym_const] = ACTIONS(1103), - [anon_sym_continue] = ACTIONS(1103), - [anon_sym_default] = ACTIONS(1103), - [anon_sym_mod] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1103), - [anon_sym_for] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1103), - [anon_sym_impl] = ACTIONS(1103), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_match] = ACTIONS(1103), - [anon_sym_pub] = ACTIONS(1103), - [anon_sym_return] = ACTIONS(1103), - [anon_sym_storage] = ACTIONS(1103), - [anon_sym_struct] = ACTIONS(1103), - [anon_sym_trait] = ACTIONS(1103), - [anon_sym_type] = ACTIONS(1103), - [anon_sym_use] = ACTIONS(1103), - [anon_sym_while] = ACTIONS(1103), - [anon_sym_POUND] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_asm] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_COLON_COLON] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_DOT_DOT] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(1103), - [anon_sym_move] = ACTIONS(1103), - [sym_integer_literal] = ACTIONS(1101), - [aux_sym_string_literal_token1] = ACTIONS(1101), - [sym_char_literal] = ACTIONS(1101), - [anon_sym_true] = ACTIONS(1103), - [anon_sym_false] = ACTIONS(1103), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1103), - [sym_metavariable] = ACTIONS(1101), - [sym_raw_string_literal] = ACTIONS(1101), - [sym_float_literal] = ACTIONS(1101), - [sym_block_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1107), - [anon_sym_i8] = ACTIONS(1107), - [anon_sym_u16] = ACTIONS(1107), - [anon_sym_i16] = ACTIONS(1107), - [anon_sym_u32] = ACTIONS(1107), - [anon_sym_i32] = ACTIONS(1107), - [anon_sym_u64] = ACTIONS(1107), - [anon_sym_i64] = ACTIONS(1107), - [anon_sym_u128] = ACTIONS(1107), - [anon_sym_i128] = ACTIONS(1107), - [anon_sym_u256] = ACTIONS(1107), - [anon_sym_i256] = ACTIONS(1107), - [anon_sym_b256] = ACTIONS(1107), - [anon_sym_isize] = ACTIONS(1107), - [anon_sym_usize] = ACTIONS(1107), - [anon_sym_f32] = ACTIONS(1107), - [anon_sym_f64] = ACTIONS(1107), - [anon_sym_bool] = ACTIONS(1107), - [anon_sym_char] = ACTIONS(1107), - [anon_sym_str] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_contract] = ACTIONS(1107), - [anon_sym_script] = ACTIONS(1107), - [anon_sym_predicate] = ACTIONS(1107), - [anon_sym_library] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_abi] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_configurable] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_mod] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_fn] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_impl] = ACTIONS(1107), - [anon_sym_let] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_pub] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_storage] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_trait] = ACTIONS(1107), - [anon_sym_type] = ACTIONS(1107), - [anon_sym_use] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_asm] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_COLON_COLON] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_move] = ACTIONS(1107), - [sym_integer_literal] = ACTIONS(1105), - [aux_sym_string_literal_token1] = ACTIONS(1105), - [sym_char_literal] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1107), - [sym_metavariable] = ACTIONS(1105), - [sym_raw_string_literal] = ACTIONS(1105), - [sym_float_literal] = ACTIONS(1105), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1111), - [anon_sym_i8] = ACTIONS(1111), - [anon_sym_u16] = ACTIONS(1111), - [anon_sym_i16] = ACTIONS(1111), - [anon_sym_u32] = ACTIONS(1111), - [anon_sym_i32] = ACTIONS(1111), - [anon_sym_u64] = ACTIONS(1111), - [anon_sym_i64] = ACTIONS(1111), - [anon_sym_u128] = ACTIONS(1111), - [anon_sym_i128] = ACTIONS(1111), - [anon_sym_u256] = ACTIONS(1111), - [anon_sym_i256] = ACTIONS(1111), - [anon_sym_b256] = ACTIONS(1111), - [anon_sym_isize] = ACTIONS(1111), - [anon_sym_usize] = ACTIONS(1111), - [anon_sym_f32] = ACTIONS(1111), - [anon_sym_f64] = ACTIONS(1111), - [anon_sym_bool] = ACTIONS(1111), - [anon_sym_char] = ACTIONS(1111), - [anon_sym_str] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_contract] = ACTIONS(1111), - [anon_sym_script] = ACTIONS(1111), - [anon_sym_predicate] = ACTIONS(1111), - [anon_sym_library] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1111), - [anon_sym_abi] = ACTIONS(1111), - [anon_sym_break] = ACTIONS(1111), - [anon_sym_configurable] = ACTIONS(1111), - [anon_sym_const] = ACTIONS(1111), - [anon_sym_continue] = ACTIONS(1111), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_mod] = ACTIONS(1111), - [anon_sym_enum] = ACTIONS(1111), - [anon_sym_fn] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1111), - [anon_sym_impl] = ACTIONS(1111), - [anon_sym_let] = ACTIONS(1111), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_pub] = ACTIONS(1111), - [anon_sym_return] = ACTIONS(1111), - [anon_sym_storage] = ACTIONS(1111), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_trait] = ACTIONS(1111), - [anon_sym_type] = ACTIONS(1111), - [anon_sym_use] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(1111), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_asm] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_COLON_COLON] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1111), - [anon_sym_move] = ACTIONS(1111), - [sym_integer_literal] = ACTIONS(1109), - [aux_sym_string_literal_token1] = ACTIONS(1109), - [sym_char_literal] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1111), - [sym_metavariable] = ACTIONS(1109), - [sym_raw_string_literal] = ACTIONS(1109), - [sym_float_literal] = ACTIONS(1109), - [sym_block_comment] = ACTIONS(3), - }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_identifier] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_u256] = ACTIONS(1115), - [anon_sym_i256] = ACTIONS(1115), - [anon_sym_b256] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_contract] = ACTIONS(1115), - [anon_sym_script] = ACTIONS(1115), - [anon_sym_predicate] = ACTIONS(1115), - [anon_sym_library] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1115), - [anon_sym_abi] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_configurable] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_mod] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_fn] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_impl] = ACTIONS(1115), - [anon_sym_let] = ACTIONS(1115), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_pub] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_storage] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_trait] = ACTIONS(1115), - [anon_sym_type] = ACTIONS(1115), - [anon_sym_use] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_asm] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1115), - [anon_sym_move] = ACTIONS(1115), - [sym_integer_literal] = ACTIONS(1113), - [aux_sym_string_literal_token1] = ACTIONS(1113), - [sym_char_literal] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym_identifier] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_u8] = ACTIONS(1101), + [anon_sym_i8] = ACTIONS(1101), + [anon_sym_u16] = ACTIONS(1101), + [anon_sym_i16] = ACTIONS(1101), + [anon_sym_u32] = ACTIONS(1101), + [anon_sym_i32] = ACTIONS(1101), + [anon_sym_u64] = ACTIONS(1101), + [anon_sym_i64] = ACTIONS(1101), + [anon_sym_u128] = ACTIONS(1101), + [anon_sym_i128] = ACTIONS(1101), + [anon_sym_u256] = ACTIONS(1101), + [anon_sym_i256] = ACTIONS(1101), + [anon_sym_b256] = ACTIONS(1101), + [anon_sym_isize] = ACTIONS(1101), + [anon_sym_usize] = ACTIONS(1101), + [anon_sym_f32] = ACTIONS(1101), + [anon_sym_f64] = ACTIONS(1101), + [anon_sym_bool] = ACTIONS(1101), + [anon_sym_char] = ACTIONS(1101), + [anon_sym_str] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_contract] = ACTIONS(1101), + [anon_sym_script] = ACTIONS(1101), + [anon_sym_predicate] = ACTIONS(1101), + [anon_sym_library] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1101), + [anon_sym_abi] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_configurable] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1101), + [anon_sym_mod] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1101), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_impl] = ACTIONS(1101), + [anon_sym_let] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1101), + [anon_sym_pub] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_storage] = ACTIONS(1101), + [anon_sym_struct] = ACTIONS(1101), + [anon_sym_trait] = ACTIONS(1101), + [anon_sym_type] = ACTIONS(1101), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_POUND] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_asm] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_COLON_COLON] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_PIPE] = ACTIONS(1099), + [anon_sym_yield] = ACTIONS(1101), + [anon_sym_move] = ACTIONS(1101), + [sym_integer_literal] = ACTIONS(1099), + [aux_sym_string_literal_token1] = ACTIONS(1099), + [sym_char_literal] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1101), + [anon_sym_false] = ACTIONS(1101), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1115), - [sym_metavariable] = ACTIONS(1113), - [sym_raw_string_literal] = ACTIONS(1113), - [sym_float_literal] = ACTIONS(1113), + [sym_self] = ACTIONS(1101), + [sym_metavariable] = ACTIONS(1099), + [sym_raw_string_literal] = ACTIONS(1099), + [sym_float_literal] = ACTIONS(1099), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_identifier] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_u8] = ACTIONS(1119), - [anon_sym_i8] = ACTIONS(1119), - [anon_sym_u16] = ACTIONS(1119), - [anon_sym_i16] = ACTIONS(1119), - [anon_sym_u32] = ACTIONS(1119), - [anon_sym_i32] = ACTIONS(1119), - [anon_sym_u64] = ACTIONS(1119), - [anon_sym_i64] = ACTIONS(1119), - [anon_sym_u128] = ACTIONS(1119), - [anon_sym_i128] = ACTIONS(1119), - [anon_sym_u256] = ACTIONS(1119), - [anon_sym_i256] = ACTIONS(1119), - [anon_sym_b256] = ACTIONS(1119), - [anon_sym_isize] = ACTIONS(1119), - [anon_sym_usize] = ACTIONS(1119), - [anon_sym_f32] = ACTIONS(1119), - [anon_sym_f64] = ACTIONS(1119), - [anon_sym_bool] = ACTIONS(1119), - [anon_sym_char] = ACTIONS(1119), - [anon_sym_str] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_contract] = ACTIONS(1119), - [anon_sym_script] = ACTIONS(1119), - [anon_sym_predicate] = ACTIONS(1119), - [anon_sym_library] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_abi] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1119), - [anon_sym_configurable] = ACTIONS(1119), - [anon_sym_const] = ACTIONS(1119), - [anon_sym_continue] = ACTIONS(1119), - [anon_sym_default] = ACTIONS(1119), - [anon_sym_mod] = ACTIONS(1119), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_impl] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1119), - [anon_sym_match] = ACTIONS(1119), - [anon_sym_pub] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_storage] = ACTIONS(1119), - [anon_sym_struct] = ACTIONS(1119), - [anon_sym_trait] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1119), - [anon_sym_use] = ACTIONS(1119), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_POUND] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_asm] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_COLON_COLON] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(1119), - [anon_sym_move] = ACTIONS(1119), - [sym_integer_literal] = ACTIONS(1117), - [aux_sym_string_literal_token1] = ACTIONS(1117), - [sym_char_literal] = ACTIONS(1117), - [anon_sym_true] = ACTIONS(1119), - [anon_sym_false] = ACTIONS(1119), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_u8] = ACTIONS(1105), + [anon_sym_i8] = ACTIONS(1105), + [anon_sym_u16] = ACTIONS(1105), + [anon_sym_i16] = ACTIONS(1105), + [anon_sym_u32] = ACTIONS(1105), + [anon_sym_i32] = ACTIONS(1105), + [anon_sym_u64] = ACTIONS(1105), + [anon_sym_i64] = ACTIONS(1105), + [anon_sym_u128] = ACTIONS(1105), + [anon_sym_i128] = ACTIONS(1105), + [anon_sym_u256] = ACTIONS(1105), + [anon_sym_i256] = ACTIONS(1105), + [anon_sym_b256] = ACTIONS(1105), + [anon_sym_isize] = ACTIONS(1105), + [anon_sym_usize] = ACTIONS(1105), + [anon_sym_f32] = ACTIONS(1105), + [anon_sym_f64] = ACTIONS(1105), + [anon_sym_bool] = ACTIONS(1105), + [anon_sym_char] = ACTIONS(1105), + [anon_sym_str] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_contract] = ACTIONS(1105), + [anon_sym_script] = ACTIONS(1105), + [anon_sym_predicate] = ACTIONS(1105), + [anon_sym_library] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_abi] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_configurable] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_default] = ACTIONS(1105), + [anon_sym_mod] = ACTIONS(1105), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_impl] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1105), + [anon_sym_match] = ACTIONS(1105), + [anon_sym_pub] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_storage] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_trait] = ACTIONS(1105), + [anon_sym_type] = ACTIONS(1105), + [anon_sym_use] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_POUND] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_asm] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1103), + [anon_sym_COLON_COLON] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_move] = ACTIONS(1105), + [sym_integer_literal] = ACTIONS(1103), + [aux_sym_string_literal_token1] = ACTIONS(1103), + [sym_char_literal] = ACTIONS(1103), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1119), - [sym_metavariable] = ACTIONS(1117), - [sym_raw_string_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1117), + [sym_self] = ACTIONS(1105), + [sym_metavariable] = ACTIONS(1103), + [sym_raw_string_literal] = ACTIONS(1103), + [sym_float_literal] = ACTIONS(1103), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_identifier] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1123), - [anon_sym_i8] = ACTIONS(1123), - [anon_sym_u16] = ACTIONS(1123), - [anon_sym_i16] = ACTIONS(1123), - [anon_sym_u32] = ACTIONS(1123), - [anon_sym_i32] = ACTIONS(1123), - [anon_sym_u64] = ACTIONS(1123), - [anon_sym_i64] = ACTIONS(1123), - [anon_sym_u128] = ACTIONS(1123), - [anon_sym_i128] = ACTIONS(1123), - [anon_sym_u256] = ACTIONS(1123), - [anon_sym_i256] = ACTIONS(1123), - [anon_sym_b256] = ACTIONS(1123), - [anon_sym_isize] = ACTIONS(1123), - [anon_sym_usize] = ACTIONS(1123), - [anon_sym_f32] = ACTIONS(1123), - [anon_sym_f64] = ACTIONS(1123), - [anon_sym_bool] = ACTIONS(1123), - [anon_sym_char] = ACTIONS(1123), - [anon_sym_str] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_contract] = ACTIONS(1123), - [anon_sym_script] = ACTIONS(1123), - [anon_sym_predicate] = ACTIONS(1123), - [anon_sym_library] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_abi] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_configurable] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_mod] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_fn] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_pub] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_storage] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_trait] = ACTIONS(1123), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_use] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_POUND] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_COLON_COLON] = ACTIONS(1121), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_move] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [aux_sym_string_literal_token1] = ACTIONS(1121), - [sym_char_literal] = ACTIONS(1121), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_u256] = ACTIONS(1109), + [anon_sym_i256] = ACTIONS(1109), + [anon_sym_b256] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_contract] = ACTIONS(1109), + [anon_sym_script] = ACTIONS(1109), + [anon_sym_predicate] = ACTIONS(1109), + [anon_sym_library] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1109), + [anon_sym_abi] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_configurable] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_default] = ACTIONS(1109), + [anon_sym_mod] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_fn] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1109), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1109), + [anon_sym_pub] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_storage] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_trait] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_use] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_POUND] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_asm] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_DOT_DOT] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_move] = ACTIONS(1109), + [sym_integer_literal] = ACTIONS(1107), + [aux_sym_string_literal_token1] = ACTIONS(1107), + [sym_char_literal] = ACTIONS(1107), + [anon_sym_true] = ACTIONS(1109), + [anon_sym_false] = ACTIONS(1109), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1123), - [sym_metavariable] = ACTIONS(1121), - [sym_raw_string_literal] = ACTIONS(1121), - [sym_float_literal] = ACTIONS(1121), + [sym_self] = ACTIONS(1109), + [sym_metavariable] = ACTIONS(1107), + [sym_raw_string_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1107), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym_u8] = ACTIONS(1127), - [anon_sym_i8] = ACTIONS(1127), - [anon_sym_u16] = ACTIONS(1127), - [anon_sym_i16] = ACTIONS(1127), - [anon_sym_u32] = ACTIONS(1127), - [anon_sym_i32] = ACTIONS(1127), - [anon_sym_u64] = ACTIONS(1127), - [anon_sym_i64] = ACTIONS(1127), - [anon_sym_u128] = ACTIONS(1127), - [anon_sym_i128] = ACTIONS(1127), - [anon_sym_u256] = ACTIONS(1127), - [anon_sym_i256] = ACTIONS(1127), - [anon_sym_b256] = ACTIONS(1127), - [anon_sym_isize] = ACTIONS(1127), - [anon_sym_usize] = ACTIONS(1127), - [anon_sym_f32] = ACTIONS(1127), - [anon_sym_f64] = ACTIONS(1127), - [anon_sym_bool] = ACTIONS(1127), - [anon_sym_char] = ACTIONS(1127), - [anon_sym_str] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_contract] = ACTIONS(1127), - [anon_sym_script] = ACTIONS(1127), - [anon_sym_predicate] = ACTIONS(1127), - [anon_sym_library] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1127), - [anon_sym_abi] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_configurable] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_fn] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_impl] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1127), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_storage] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_trait] = ACTIONS(1127), - [anon_sym_type] = ACTIONS(1127), - [anon_sym_use] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_POUND] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PIPE] = ACTIONS(1125), - [anon_sym_yield] = ACTIONS(1127), - [anon_sym_move] = ACTIONS(1127), - [sym_integer_literal] = ACTIONS(1125), - [aux_sym_string_literal_token1] = ACTIONS(1125), - [sym_char_literal] = ACTIONS(1125), - [anon_sym_true] = ACTIONS(1127), - [anon_sym_false] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u128] = ACTIONS(1113), + [anon_sym_i128] = ACTIONS(1113), + [anon_sym_u256] = ACTIONS(1113), + [anon_sym_i256] = ACTIONS(1113), + [anon_sym_b256] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_char] = ACTIONS(1113), + [anon_sym_str] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_contract] = ACTIONS(1113), + [anon_sym_script] = ACTIONS(1113), + [anon_sym_predicate] = ACTIONS(1113), + [anon_sym_library] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_abi] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_configurable] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_default] = ACTIONS(1113), + [anon_sym_mod] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_fn] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_impl] = ACTIONS(1113), + [anon_sym_let] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_pub] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_storage] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_trait] = ACTIONS(1113), + [anon_sym_type] = ACTIONS(1113), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_asm] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_move] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1111), + [aux_sym_string_literal_token1] = ACTIONS(1111), + [sym_char_literal] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1127), - [sym_metavariable] = ACTIONS(1125), - [sym_raw_string_literal] = ACTIONS(1125), - [sym_float_literal] = ACTIONS(1125), + [sym_self] = ACTIONS(1113), + [sym_metavariable] = ACTIONS(1111), + [sym_raw_string_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1111), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1131), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym_u8] = ACTIONS(1131), - [anon_sym_i8] = ACTIONS(1131), - [anon_sym_u16] = ACTIONS(1131), - [anon_sym_i16] = ACTIONS(1131), - [anon_sym_u32] = ACTIONS(1131), - [anon_sym_i32] = ACTIONS(1131), - [anon_sym_u64] = ACTIONS(1131), - [anon_sym_i64] = ACTIONS(1131), - [anon_sym_u128] = ACTIONS(1131), - [anon_sym_i128] = ACTIONS(1131), - [anon_sym_u256] = ACTIONS(1131), - [anon_sym_i256] = ACTIONS(1131), - [anon_sym_b256] = ACTIONS(1131), - [anon_sym_isize] = ACTIONS(1131), - [anon_sym_usize] = ACTIONS(1131), - [anon_sym_f32] = ACTIONS(1131), - [anon_sym_f64] = ACTIONS(1131), - [anon_sym_bool] = ACTIONS(1131), - [anon_sym_char] = ACTIONS(1131), - [anon_sym_str] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_contract] = ACTIONS(1131), - [anon_sym_script] = ACTIONS(1131), - [anon_sym_predicate] = ACTIONS(1131), - [anon_sym_library] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1131), - [anon_sym_abi] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_configurable] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_mod] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_fn] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_impl] = ACTIONS(1131), - [anon_sym_let] = ACTIONS(1131), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_pub] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_storage] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1131), - [anon_sym_type] = ACTIONS(1131), - [anon_sym_use] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_asm] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_DOT_DOT] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_PIPE] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1131), - [anon_sym_move] = ACTIONS(1131), - [sym_integer_literal] = ACTIONS(1129), - [aux_sym_string_literal_token1] = ACTIONS(1129), - [sym_char_literal] = ACTIONS(1129), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_u8] = ACTIONS(1117), + [anon_sym_i8] = ACTIONS(1117), + [anon_sym_u16] = ACTIONS(1117), + [anon_sym_i16] = ACTIONS(1117), + [anon_sym_u32] = ACTIONS(1117), + [anon_sym_i32] = ACTIONS(1117), + [anon_sym_u64] = ACTIONS(1117), + [anon_sym_i64] = ACTIONS(1117), + [anon_sym_u128] = ACTIONS(1117), + [anon_sym_i128] = ACTIONS(1117), + [anon_sym_u256] = ACTIONS(1117), + [anon_sym_i256] = ACTIONS(1117), + [anon_sym_b256] = ACTIONS(1117), + [anon_sym_isize] = ACTIONS(1117), + [anon_sym_usize] = ACTIONS(1117), + [anon_sym_f32] = ACTIONS(1117), + [anon_sym_f64] = ACTIONS(1117), + [anon_sym_bool] = ACTIONS(1117), + [anon_sym_char] = ACTIONS(1117), + [anon_sym_str] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_contract] = ACTIONS(1117), + [anon_sym_script] = ACTIONS(1117), + [anon_sym_predicate] = ACTIONS(1117), + [anon_sym_library] = ACTIONS(1117), + [anon_sym_SQUOTE] = ACTIONS(1117), + [anon_sym_abi] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_configurable] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_mod] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_fn] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_impl] = ACTIONS(1117), + [anon_sym_let] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1117), + [anon_sym_pub] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_storage] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_trait] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1117), + [anon_sym_use] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1115), + [anon_sym_COLON_COLON] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_DOT_DOT] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1115), + [anon_sym_yield] = ACTIONS(1117), + [anon_sym_move] = ACTIONS(1117), + [sym_integer_literal] = ACTIONS(1115), + [aux_sym_string_literal_token1] = ACTIONS(1115), + [sym_char_literal] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1117), + [anon_sym_false] = ACTIONS(1117), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1131), - [sym_metavariable] = ACTIONS(1129), - [sym_raw_string_literal] = ACTIONS(1129), - [sym_float_literal] = ACTIONS(1129), + [sym_self] = ACTIONS(1117), + [sym_metavariable] = ACTIONS(1115), + [sym_raw_string_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1115), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_u8] = ACTIONS(1135), - [anon_sym_i8] = ACTIONS(1135), - [anon_sym_u16] = ACTIONS(1135), - [anon_sym_i16] = ACTIONS(1135), - [anon_sym_u32] = ACTIONS(1135), - [anon_sym_i32] = ACTIONS(1135), - [anon_sym_u64] = ACTIONS(1135), - [anon_sym_i64] = ACTIONS(1135), - [anon_sym_u128] = ACTIONS(1135), - [anon_sym_i128] = ACTIONS(1135), - [anon_sym_u256] = ACTIONS(1135), - [anon_sym_i256] = ACTIONS(1135), - [anon_sym_b256] = ACTIONS(1135), - [anon_sym_isize] = ACTIONS(1135), - [anon_sym_usize] = ACTIONS(1135), - [anon_sym_f32] = ACTIONS(1135), - [anon_sym_f64] = ACTIONS(1135), - [anon_sym_bool] = ACTIONS(1135), - [anon_sym_char] = ACTIONS(1135), - [anon_sym_str] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_contract] = ACTIONS(1135), - [anon_sym_script] = ACTIONS(1135), - [anon_sym_predicate] = ACTIONS(1135), - [anon_sym_library] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_abi] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_configurable] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_mod] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_fn] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_impl] = ACTIONS(1135), - [anon_sym_let] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_pub] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_storage] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_trait] = ACTIONS(1135), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_use] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_move] = ACTIONS(1135), - [sym_integer_literal] = ACTIONS(1133), - [aux_sym_string_literal_token1] = ACTIONS(1133), - [sym_char_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_u8] = ACTIONS(1121), + [anon_sym_i8] = ACTIONS(1121), + [anon_sym_u16] = ACTIONS(1121), + [anon_sym_i16] = ACTIONS(1121), + [anon_sym_u32] = ACTIONS(1121), + [anon_sym_i32] = ACTIONS(1121), + [anon_sym_u64] = ACTIONS(1121), + [anon_sym_i64] = ACTIONS(1121), + [anon_sym_u128] = ACTIONS(1121), + [anon_sym_i128] = ACTIONS(1121), + [anon_sym_u256] = ACTIONS(1121), + [anon_sym_i256] = ACTIONS(1121), + [anon_sym_b256] = ACTIONS(1121), + [anon_sym_isize] = ACTIONS(1121), + [anon_sym_usize] = ACTIONS(1121), + [anon_sym_f32] = ACTIONS(1121), + [anon_sym_f64] = ACTIONS(1121), + [anon_sym_bool] = ACTIONS(1121), + [anon_sym_char] = ACTIONS(1121), + [anon_sym_str] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_contract] = ACTIONS(1121), + [anon_sym_script] = ACTIONS(1121), + [anon_sym_predicate] = ACTIONS(1121), + [anon_sym_library] = ACTIONS(1121), + [anon_sym_SQUOTE] = ACTIONS(1121), + [anon_sym_abi] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_configurable] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_default] = ACTIONS(1121), + [anon_sym_mod] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_fn] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_impl] = ACTIONS(1121), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_pub] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_storage] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_trait] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1121), + [anon_sym_use] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_POUND] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_asm] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_COLON_COLON] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_DOT_DOT] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_move] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1119), + [aux_sym_string_literal_token1] = ACTIONS(1119), + [sym_char_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1121), + [anon_sym_false] = ACTIONS(1121), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1135), - [sym_metavariable] = ACTIONS(1133), - [sym_raw_string_literal] = ACTIONS(1133), - [sym_float_literal] = ACTIONS(1133), + [sym_self] = ACTIONS(1121), + [sym_metavariable] = ACTIONS(1119), + [sym_raw_string_literal] = ACTIONS(1119), + [sym_float_literal] = ACTIONS(1119), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_u8] = ACTIONS(1139), - [anon_sym_i8] = ACTIONS(1139), - [anon_sym_u16] = ACTIONS(1139), - [anon_sym_i16] = ACTIONS(1139), - [anon_sym_u32] = ACTIONS(1139), - [anon_sym_i32] = ACTIONS(1139), - [anon_sym_u64] = ACTIONS(1139), - [anon_sym_i64] = ACTIONS(1139), - [anon_sym_u128] = ACTIONS(1139), - [anon_sym_i128] = ACTIONS(1139), - [anon_sym_u256] = ACTIONS(1139), - [anon_sym_i256] = ACTIONS(1139), - [anon_sym_b256] = ACTIONS(1139), - [anon_sym_isize] = ACTIONS(1139), - [anon_sym_usize] = ACTIONS(1139), - [anon_sym_f32] = ACTIONS(1139), - [anon_sym_f64] = ACTIONS(1139), - [anon_sym_bool] = ACTIONS(1139), - [anon_sym_char] = ACTIONS(1139), - [anon_sym_str] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_contract] = ACTIONS(1139), - [anon_sym_script] = ACTIONS(1139), - [anon_sym_predicate] = ACTIONS(1139), - [anon_sym_library] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_abi] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_configurable] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_fn] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_impl] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_match] = ACTIONS(1139), - [anon_sym_pub] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_storage] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_trait] = ACTIONS(1139), - [anon_sym_type] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_COLON_COLON] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_PIPE] = ACTIONS(1137), - [anon_sym_yield] = ACTIONS(1139), - [anon_sym_move] = ACTIONS(1139), - [sym_integer_literal] = ACTIONS(1137), - [aux_sym_string_literal_token1] = ACTIONS(1137), - [sym_char_literal] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), + [ts_builtin_sym_end] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_u256] = ACTIONS(1125), + [anon_sym_i256] = ACTIONS(1125), + [anon_sym_b256] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_contract] = ACTIONS(1125), + [anon_sym_script] = ACTIONS(1125), + [anon_sym_predicate] = ACTIONS(1125), + [anon_sym_library] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_abi] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_configurable] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_mod] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_fn] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_impl] = ACTIONS(1125), + [anon_sym_let] = ACTIONS(1125), + [anon_sym_match] = ACTIONS(1125), + [anon_sym_pub] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_storage] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_trait] = ACTIONS(1125), + [anon_sym_type] = ACTIONS(1125), + [anon_sym_use] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_POUND] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_COLON_COLON] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_yield] = ACTIONS(1125), + [anon_sym_move] = ACTIONS(1125), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1123), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1139), - [sym_metavariable] = ACTIONS(1137), - [sym_raw_string_literal] = ACTIONS(1137), - [sym_float_literal] = ACTIONS(1137), + [sym_self] = ACTIONS(1125), + [sym_metavariable] = ACTIONS(1123), + [sym_raw_string_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1123), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_u8] = ACTIONS(1143), - [anon_sym_i8] = ACTIONS(1143), - [anon_sym_u16] = ACTIONS(1143), - [anon_sym_i16] = ACTIONS(1143), - [anon_sym_u32] = ACTIONS(1143), - [anon_sym_i32] = ACTIONS(1143), - [anon_sym_u64] = ACTIONS(1143), - [anon_sym_i64] = ACTIONS(1143), - [anon_sym_u128] = ACTIONS(1143), - [anon_sym_i128] = ACTIONS(1143), - [anon_sym_u256] = ACTIONS(1143), - [anon_sym_i256] = ACTIONS(1143), - [anon_sym_b256] = ACTIONS(1143), - [anon_sym_isize] = ACTIONS(1143), - [anon_sym_usize] = ACTIONS(1143), - [anon_sym_f32] = ACTIONS(1143), - [anon_sym_f64] = ACTIONS(1143), - [anon_sym_bool] = ACTIONS(1143), - [anon_sym_char] = ACTIONS(1143), - [anon_sym_str] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_contract] = ACTIONS(1143), - [anon_sym_script] = ACTIONS(1143), - [anon_sym_predicate] = ACTIONS(1143), - [anon_sym_library] = ACTIONS(1143), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1143), - [anon_sym_abi] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_configurable] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_mod] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_fn] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_impl] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1143), - [anon_sym_pub] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_storage] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_trait] = ACTIONS(1143), - [anon_sym_type] = ACTIONS(1143), - [anon_sym_use] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_COLON_COLON] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_DOT_DOT] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_move] = ACTIONS(1143), - [sym_integer_literal] = ACTIONS(1141), - [aux_sym_string_literal_token1] = ACTIONS(1141), - [sym_char_literal] = ACTIONS(1141), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_u8] = ACTIONS(1129), + [anon_sym_i8] = ACTIONS(1129), + [anon_sym_u16] = ACTIONS(1129), + [anon_sym_i16] = ACTIONS(1129), + [anon_sym_u32] = ACTIONS(1129), + [anon_sym_i32] = ACTIONS(1129), + [anon_sym_u64] = ACTIONS(1129), + [anon_sym_i64] = ACTIONS(1129), + [anon_sym_u128] = ACTIONS(1129), + [anon_sym_i128] = ACTIONS(1129), + [anon_sym_u256] = ACTIONS(1129), + [anon_sym_i256] = ACTIONS(1129), + [anon_sym_b256] = ACTIONS(1129), + [anon_sym_isize] = ACTIONS(1129), + [anon_sym_usize] = ACTIONS(1129), + [anon_sym_f32] = ACTIONS(1129), + [anon_sym_f64] = ACTIONS(1129), + [anon_sym_bool] = ACTIONS(1129), + [anon_sym_char] = ACTIONS(1129), + [anon_sym_str] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1127), + [anon_sym_contract] = ACTIONS(1129), + [anon_sym_script] = ACTIONS(1129), + [anon_sym_predicate] = ACTIONS(1129), + [anon_sym_library] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_abi] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_configurable] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_fn] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_impl] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1129), + [anon_sym_pub] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_storage] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_trait] = ACTIONS(1129), + [anon_sym_type] = ACTIONS(1129), + [anon_sym_use] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_COLON_COLON] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(1129), + [anon_sym_move] = ACTIONS(1129), + [sym_integer_literal] = ACTIONS(1127), + [aux_sym_string_literal_token1] = ACTIONS(1127), + [sym_char_literal] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1129), + [anon_sym_false] = ACTIONS(1129), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1143), - [sym_metavariable] = ACTIONS(1141), - [sym_raw_string_literal] = ACTIONS(1141), - [sym_float_literal] = ACTIONS(1141), + [sym_self] = ACTIONS(1129), + [sym_metavariable] = ACTIONS(1127), + [sym_raw_string_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1127), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_u8] = ACTIONS(1147), - [anon_sym_i8] = ACTIONS(1147), - [anon_sym_u16] = ACTIONS(1147), - [anon_sym_i16] = ACTIONS(1147), - [anon_sym_u32] = ACTIONS(1147), - [anon_sym_i32] = ACTIONS(1147), - [anon_sym_u64] = ACTIONS(1147), - [anon_sym_i64] = ACTIONS(1147), - [anon_sym_u128] = ACTIONS(1147), - [anon_sym_i128] = ACTIONS(1147), - [anon_sym_u256] = ACTIONS(1147), - [anon_sym_i256] = ACTIONS(1147), - [anon_sym_b256] = ACTIONS(1147), - [anon_sym_isize] = ACTIONS(1147), - [anon_sym_usize] = ACTIONS(1147), - [anon_sym_f32] = ACTIONS(1147), - [anon_sym_f64] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1147), - [anon_sym_char] = ACTIONS(1147), - [anon_sym_str] = ACTIONS(1147), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_contract] = ACTIONS(1147), - [anon_sym_script] = ACTIONS(1147), - [anon_sym_predicate] = ACTIONS(1147), - [anon_sym_library] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_abi] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_configurable] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_mod] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_impl] = ACTIONS(1147), - [anon_sym_let] = ACTIONS(1147), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_pub] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_storage] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_trait] = ACTIONS(1147), - [anon_sym_type] = ACTIONS(1147), - [anon_sym_use] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_POUND] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1145), - [anon_sym_COLON_COLON] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_DOT_DOT] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1147), - [anon_sym_move] = ACTIONS(1147), - [sym_integer_literal] = ACTIONS(1145), - [aux_sym_string_literal_token1] = ACTIONS(1145), - [sym_char_literal] = ACTIONS(1145), - [anon_sym_true] = ACTIONS(1147), - [anon_sym_false] = ACTIONS(1147), + [ts_builtin_sym_end] = ACTIONS(1131), + [sym_identifier] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_u8] = ACTIONS(1133), + [anon_sym_i8] = ACTIONS(1133), + [anon_sym_u16] = ACTIONS(1133), + [anon_sym_i16] = ACTIONS(1133), + [anon_sym_u32] = ACTIONS(1133), + [anon_sym_i32] = ACTIONS(1133), + [anon_sym_u64] = ACTIONS(1133), + [anon_sym_i64] = ACTIONS(1133), + [anon_sym_u128] = ACTIONS(1133), + [anon_sym_i128] = ACTIONS(1133), + [anon_sym_u256] = ACTIONS(1133), + [anon_sym_i256] = ACTIONS(1133), + [anon_sym_b256] = ACTIONS(1133), + [anon_sym_isize] = ACTIONS(1133), + [anon_sym_usize] = ACTIONS(1133), + [anon_sym_f32] = ACTIONS(1133), + [anon_sym_f64] = ACTIONS(1133), + [anon_sym_bool] = ACTIONS(1133), + [anon_sym_char] = ACTIONS(1133), + [anon_sym_str] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_contract] = ACTIONS(1133), + [anon_sym_script] = ACTIONS(1133), + [anon_sym_predicate] = ACTIONS(1133), + [anon_sym_library] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_abi] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_configurable] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_default] = ACTIONS(1133), + [anon_sym_mod] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_impl] = ACTIONS(1133), + [anon_sym_let] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1133), + [anon_sym_pub] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_storage] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_trait] = ACTIONS(1133), + [anon_sym_type] = ACTIONS(1133), + [anon_sym_use] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_DOT_DOT] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_yield] = ACTIONS(1133), + [anon_sym_move] = ACTIONS(1133), + [sym_integer_literal] = ACTIONS(1131), + [aux_sym_string_literal_token1] = ACTIONS(1131), + [sym_char_literal] = ACTIONS(1131), + [anon_sym_true] = ACTIONS(1133), + [anon_sym_false] = ACTIONS(1133), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1147), - [sym_metavariable] = ACTIONS(1145), - [sym_raw_string_literal] = ACTIONS(1145), - [sym_float_literal] = ACTIONS(1145), + [sym_self] = ACTIONS(1133), + [sym_metavariable] = ACTIONS(1131), + [sym_raw_string_literal] = ACTIONS(1131), + [sym_float_literal] = ACTIONS(1131), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_u8] = ACTIONS(1151), - [anon_sym_i8] = ACTIONS(1151), - [anon_sym_u16] = ACTIONS(1151), - [anon_sym_i16] = ACTIONS(1151), - [anon_sym_u32] = ACTIONS(1151), - [anon_sym_i32] = ACTIONS(1151), - [anon_sym_u64] = ACTIONS(1151), - [anon_sym_i64] = ACTIONS(1151), - [anon_sym_u128] = ACTIONS(1151), - [anon_sym_i128] = ACTIONS(1151), - [anon_sym_u256] = ACTIONS(1151), - [anon_sym_i256] = ACTIONS(1151), - [anon_sym_b256] = ACTIONS(1151), - [anon_sym_isize] = ACTIONS(1151), - [anon_sym_usize] = ACTIONS(1151), - [anon_sym_f32] = ACTIONS(1151), - [anon_sym_f64] = ACTIONS(1151), - [anon_sym_bool] = ACTIONS(1151), - [anon_sym_char] = ACTIONS(1151), - [anon_sym_str] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_contract] = ACTIONS(1151), - [anon_sym_script] = ACTIONS(1151), - [anon_sym_predicate] = ACTIONS(1151), - [anon_sym_library] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_abi] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_configurable] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_mod] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_fn] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1151), - [anon_sym_let] = ACTIONS(1151), - [anon_sym_match] = ACTIONS(1151), - [anon_sym_pub] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_storage] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_trait] = ACTIONS(1151), - [anon_sym_type] = ACTIONS(1151), - [anon_sym_use] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_COLON_COLON] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_DOT_DOT] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1151), - [anon_sym_move] = ACTIONS(1151), - [sym_integer_literal] = ACTIONS(1149), - [aux_sym_string_literal_token1] = ACTIONS(1149), - [sym_char_literal] = ACTIONS(1149), - [anon_sym_true] = ACTIONS(1151), - [anon_sym_false] = ACTIONS(1151), + [ts_builtin_sym_end] = ACTIONS(1135), + [sym_identifier] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_u8] = ACTIONS(1137), + [anon_sym_i8] = ACTIONS(1137), + [anon_sym_u16] = ACTIONS(1137), + [anon_sym_i16] = ACTIONS(1137), + [anon_sym_u32] = ACTIONS(1137), + [anon_sym_i32] = ACTIONS(1137), + [anon_sym_u64] = ACTIONS(1137), + [anon_sym_i64] = ACTIONS(1137), + [anon_sym_u128] = ACTIONS(1137), + [anon_sym_i128] = ACTIONS(1137), + [anon_sym_u256] = ACTIONS(1137), + [anon_sym_i256] = ACTIONS(1137), + [anon_sym_b256] = ACTIONS(1137), + [anon_sym_isize] = ACTIONS(1137), + [anon_sym_usize] = ACTIONS(1137), + [anon_sym_f32] = ACTIONS(1137), + [anon_sym_f64] = ACTIONS(1137), + [anon_sym_bool] = ACTIONS(1137), + [anon_sym_char] = ACTIONS(1137), + [anon_sym_str] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_contract] = ACTIONS(1137), + [anon_sym_script] = ACTIONS(1137), + [anon_sym_predicate] = ACTIONS(1137), + [anon_sym_library] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_abi] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_configurable] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1137), + [anon_sym_mod] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_fn] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_impl] = ACTIONS(1137), + [anon_sym_let] = ACTIONS(1137), + [anon_sym_match] = ACTIONS(1137), + [anon_sym_pub] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_storage] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1137), + [anon_sym_use] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_POUND] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1137), + [anon_sym_move] = ACTIONS(1137), + [sym_integer_literal] = ACTIONS(1135), + [aux_sym_string_literal_token1] = ACTIONS(1135), + [sym_char_literal] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1137), + [anon_sym_false] = ACTIONS(1137), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1149), - [sym_raw_string_literal] = ACTIONS(1149), - [sym_float_literal] = ACTIONS(1149), + [sym_self] = ACTIONS(1137), + [sym_metavariable] = ACTIONS(1135), + [sym_raw_string_literal] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1135), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_u8] = ACTIONS(1155), - [anon_sym_i8] = ACTIONS(1155), - [anon_sym_u16] = ACTIONS(1155), - [anon_sym_i16] = ACTIONS(1155), - [anon_sym_u32] = ACTIONS(1155), - [anon_sym_i32] = ACTIONS(1155), - [anon_sym_u64] = ACTIONS(1155), - [anon_sym_i64] = ACTIONS(1155), - [anon_sym_u128] = ACTIONS(1155), - [anon_sym_i128] = ACTIONS(1155), - [anon_sym_u256] = ACTIONS(1155), - [anon_sym_i256] = ACTIONS(1155), - [anon_sym_b256] = ACTIONS(1155), - [anon_sym_isize] = ACTIONS(1155), - [anon_sym_usize] = ACTIONS(1155), - [anon_sym_f32] = ACTIONS(1155), - [anon_sym_f64] = ACTIONS(1155), - [anon_sym_bool] = ACTIONS(1155), - [anon_sym_char] = ACTIONS(1155), - [anon_sym_str] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_contract] = ACTIONS(1155), - [anon_sym_script] = ACTIONS(1155), - [anon_sym_predicate] = ACTIONS(1155), - [anon_sym_library] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_abi] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_configurable] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_mod] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_fn] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_impl] = ACTIONS(1155), - [anon_sym_let] = ACTIONS(1155), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_pub] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_storage] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_trait] = ACTIONS(1155), - [anon_sym_type] = ACTIONS(1155), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_POUND] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_COLON_COLON] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_yield] = ACTIONS(1155), - [anon_sym_move] = ACTIONS(1155), - [sym_integer_literal] = ACTIONS(1153), - [aux_sym_string_literal_token1] = ACTIONS(1153), - [sym_char_literal] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1155), - [anon_sym_false] = ACTIONS(1155), + [ts_builtin_sym_end] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(1141), + [anon_sym_i8] = ACTIONS(1141), + [anon_sym_u16] = ACTIONS(1141), + [anon_sym_i16] = ACTIONS(1141), + [anon_sym_u32] = ACTIONS(1141), + [anon_sym_i32] = ACTIONS(1141), + [anon_sym_u64] = ACTIONS(1141), + [anon_sym_i64] = ACTIONS(1141), + [anon_sym_u128] = ACTIONS(1141), + [anon_sym_i128] = ACTIONS(1141), + [anon_sym_u256] = ACTIONS(1141), + [anon_sym_i256] = ACTIONS(1141), + [anon_sym_b256] = ACTIONS(1141), + [anon_sym_isize] = ACTIONS(1141), + [anon_sym_usize] = ACTIONS(1141), + [anon_sym_f32] = ACTIONS(1141), + [anon_sym_f64] = ACTIONS(1141), + [anon_sym_bool] = ACTIONS(1141), + [anon_sym_char] = ACTIONS(1141), + [anon_sym_str] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_contract] = ACTIONS(1141), + [anon_sym_script] = ACTIONS(1141), + [anon_sym_predicate] = ACTIONS(1141), + [anon_sym_library] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_abi] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_configurable] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1141), + [anon_sym_mod] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_impl] = ACTIONS(1141), + [anon_sym_let] = ACTIONS(1141), + [anon_sym_match] = ACTIONS(1141), + [anon_sym_pub] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_storage] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_trait] = ACTIONS(1141), + [anon_sym_type] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_POUND] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_COLON_COLON] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_move] = ACTIONS(1141), + [sym_integer_literal] = ACTIONS(1139), + [aux_sym_string_literal_token1] = ACTIONS(1139), + [sym_char_literal] = ACTIONS(1139), + [anon_sym_true] = ACTIONS(1141), + [anon_sym_false] = ACTIONS(1141), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1155), - [sym_metavariable] = ACTIONS(1153), - [sym_raw_string_literal] = ACTIONS(1153), - [sym_float_literal] = ACTIONS(1153), + [sym_self] = ACTIONS(1141), + [sym_metavariable] = ACTIONS(1139), + [sym_raw_string_literal] = ACTIONS(1139), + [sym_float_literal] = ACTIONS(1139), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_u8] = ACTIONS(1159), - [anon_sym_i8] = ACTIONS(1159), - [anon_sym_u16] = ACTIONS(1159), - [anon_sym_i16] = ACTIONS(1159), - [anon_sym_u32] = ACTIONS(1159), - [anon_sym_i32] = ACTIONS(1159), - [anon_sym_u64] = ACTIONS(1159), - [anon_sym_i64] = ACTIONS(1159), - [anon_sym_u128] = ACTIONS(1159), - [anon_sym_i128] = ACTIONS(1159), - [anon_sym_u256] = ACTIONS(1159), - [anon_sym_i256] = ACTIONS(1159), - [anon_sym_b256] = ACTIONS(1159), - [anon_sym_isize] = ACTIONS(1159), - [anon_sym_usize] = ACTIONS(1159), - [anon_sym_f32] = ACTIONS(1159), - [anon_sym_f64] = ACTIONS(1159), - [anon_sym_bool] = ACTIONS(1159), - [anon_sym_char] = ACTIONS(1159), - [anon_sym_str] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_contract] = ACTIONS(1159), - [anon_sym_script] = ACTIONS(1159), - [anon_sym_predicate] = ACTIONS(1159), - [anon_sym_library] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_abi] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_configurable] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_mod] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_fn] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_impl] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_match] = ACTIONS(1159), - [anon_sym_pub] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_storage] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_trait] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_use] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_POUND] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1157), - [anon_sym_COLON_COLON] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_DOT_DOT] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1157), - [anon_sym_yield] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1159), - [sym_integer_literal] = ACTIONS(1157), - [aux_sym_string_literal_token1] = ACTIONS(1157), - [sym_char_literal] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), + [ts_builtin_sym_end] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_u8] = ACTIONS(1145), + [anon_sym_i8] = ACTIONS(1145), + [anon_sym_u16] = ACTIONS(1145), + [anon_sym_i16] = ACTIONS(1145), + [anon_sym_u32] = ACTIONS(1145), + [anon_sym_i32] = ACTIONS(1145), + [anon_sym_u64] = ACTIONS(1145), + [anon_sym_i64] = ACTIONS(1145), + [anon_sym_u128] = ACTIONS(1145), + [anon_sym_i128] = ACTIONS(1145), + [anon_sym_u256] = ACTIONS(1145), + [anon_sym_i256] = ACTIONS(1145), + [anon_sym_b256] = ACTIONS(1145), + [anon_sym_isize] = ACTIONS(1145), + [anon_sym_usize] = ACTIONS(1145), + [anon_sym_f32] = ACTIONS(1145), + [anon_sym_f64] = ACTIONS(1145), + [anon_sym_bool] = ACTIONS(1145), + [anon_sym_char] = ACTIONS(1145), + [anon_sym_str] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_contract] = ACTIONS(1145), + [anon_sym_script] = ACTIONS(1145), + [anon_sym_predicate] = ACTIONS(1145), + [anon_sym_library] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_abi] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_configurable] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_mod] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(1145), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_pub] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_storage] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_trait] = ACTIONS(1145), + [anon_sym_type] = ACTIONS(1145), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_yield] = ACTIONS(1145), + [anon_sym_move] = ACTIONS(1145), + [sym_integer_literal] = ACTIONS(1143), + [aux_sym_string_literal_token1] = ACTIONS(1143), + [sym_char_literal] = ACTIONS(1143), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1157), - [sym_raw_string_literal] = ACTIONS(1157), - [sym_float_literal] = ACTIONS(1157), + [sym_self] = ACTIONS(1145), + [sym_metavariable] = ACTIONS(1143), + [sym_raw_string_literal] = ACTIONS(1143), + [sym_float_literal] = ACTIONS(1143), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_u8] = ACTIONS(1163), - [anon_sym_i8] = ACTIONS(1163), - [anon_sym_u16] = ACTIONS(1163), - [anon_sym_i16] = ACTIONS(1163), - [anon_sym_u32] = ACTIONS(1163), - [anon_sym_i32] = ACTIONS(1163), - [anon_sym_u64] = ACTIONS(1163), - [anon_sym_i64] = ACTIONS(1163), - [anon_sym_u128] = ACTIONS(1163), - [anon_sym_i128] = ACTIONS(1163), - [anon_sym_u256] = ACTIONS(1163), - [anon_sym_i256] = ACTIONS(1163), - [anon_sym_b256] = ACTIONS(1163), - [anon_sym_isize] = ACTIONS(1163), - [anon_sym_usize] = ACTIONS(1163), - [anon_sym_f32] = ACTIONS(1163), - [anon_sym_f64] = ACTIONS(1163), - [anon_sym_bool] = ACTIONS(1163), - [anon_sym_char] = ACTIONS(1163), - [anon_sym_str] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_contract] = ACTIONS(1163), - [anon_sym_script] = ACTIONS(1163), - [anon_sym_predicate] = ACTIONS(1163), - [anon_sym_library] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_abi] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_configurable] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_mod] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_fn] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_impl] = ACTIONS(1163), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_match] = ACTIONS(1163), - [anon_sym_pub] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_storage] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_trait] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_use] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1161), - [anon_sym_COLON_COLON] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_DOT_DOT] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_move] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1161), - [aux_sym_string_literal_token1] = ACTIONS(1161), - [sym_char_literal] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(1163), - [anon_sym_false] = ACTIONS(1163), + [ts_builtin_sym_end] = ACTIONS(1147), + [sym_identifier] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_u8] = ACTIONS(1149), + [anon_sym_i8] = ACTIONS(1149), + [anon_sym_u16] = ACTIONS(1149), + [anon_sym_i16] = ACTIONS(1149), + [anon_sym_u32] = ACTIONS(1149), + [anon_sym_i32] = ACTIONS(1149), + [anon_sym_u64] = ACTIONS(1149), + [anon_sym_i64] = ACTIONS(1149), + [anon_sym_u128] = ACTIONS(1149), + [anon_sym_i128] = ACTIONS(1149), + [anon_sym_u256] = ACTIONS(1149), + [anon_sym_i256] = ACTIONS(1149), + [anon_sym_b256] = ACTIONS(1149), + [anon_sym_isize] = ACTIONS(1149), + [anon_sym_usize] = ACTIONS(1149), + [anon_sym_f32] = ACTIONS(1149), + [anon_sym_f64] = ACTIONS(1149), + [anon_sym_bool] = ACTIONS(1149), + [anon_sym_char] = ACTIONS(1149), + [anon_sym_str] = ACTIONS(1149), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_contract] = ACTIONS(1149), + [anon_sym_script] = ACTIONS(1149), + [anon_sym_predicate] = ACTIONS(1149), + [anon_sym_library] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_abi] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_configurable] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_default] = ACTIONS(1149), + [anon_sym_mod] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_fn] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_impl] = ACTIONS(1149), + [anon_sym_let] = ACTIONS(1149), + [anon_sym_match] = ACTIONS(1149), + [anon_sym_pub] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_storage] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_trait] = ACTIONS(1149), + [anon_sym_type] = ACTIONS(1149), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_move] = ACTIONS(1149), + [sym_integer_literal] = ACTIONS(1147), + [aux_sym_string_literal_token1] = ACTIONS(1147), + [sym_char_literal] = ACTIONS(1147), + [anon_sym_true] = ACTIONS(1149), + [anon_sym_false] = ACTIONS(1149), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1163), - [sym_metavariable] = ACTIONS(1161), - [sym_raw_string_literal] = ACTIONS(1161), - [sym_float_literal] = ACTIONS(1161), + [sym_self] = ACTIONS(1149), + [sym_metavariable] = ACTIONS(1147), + [sym_raw_string_literal] = ACTIONS(1147), + [sym_float_literal] = ACTIONS(1147), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_u8] = ACTIONS(1167), - [anon_sym_i8] = ACTIONS(1167), - [anon_sym_u16] = ACTIONS(1167), - [anon_sym_i16] = ACTIONS(1167), - [anon_sym_u32] = ACTIONS(1167), - [anon_sym_i32] = ACTIONS(1167), - [anon_sym_u64] = ACTIONS(1167), - [anon_sym_i64] = ACTIONS(1167), - [anon_sym_u128] = ACTIONS(1167), - [anon_sym_i128] = ACTIONS(1167), - [anon_sym_u256] = ACTIONS(1167), - [anon_sym_i256] = ACTIONS(1167), - [anon_sym_b256] = ACTIONS(1167), - [anon_sym_isize] = ACTIONS(1167), - [anon_sym_usize] = ACTIONS(1167), - [anon_sym_f32] = ACTIONS(1167), - [anon_sym_f64] = ACTIONS(1167), - [anon_sym_bool] = ACTIONS(1167), - [anon_sym_char] = ACTIONS(1167), - [anon_sym_str] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_contract] = ACTIONS(1167), - [anon_sym_script] = ACTIONS(1167), - [anon_sym_predicate] = ACTIONS(1167), - [anon_sym_library] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_abi] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_configurable] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_mod] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [anon_sym_fn] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_impl] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1167), - [anon_sym_pub] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_storage] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_trait] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_use] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_POUND] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1167), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_DOT_DOT] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_yield] = ACTIONS(1167), - [anon_sym_move] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1165), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_false] = ACTIONS(1167), + [ts_builtin_sym_end] = ACTIONS(1151), + [sym_identifier] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_u8] = ACTIONS(1153), + [anon_sym_i8] = ACTIONS(1153), + [anon_sym_u16] = ACTIONS(1153), + [anon_sym_i16] = ACTIONS(1153), + [anon_sym_u32] = ACTIONS(1153), + [anon_sym_i32] = ACTIONS(1153), + [anon_sym_u64] = ACTIONS(1153), + [anon_sym_i64] = ACTIONS(1153), + [anon_sym_u128] = ACTIONS(1153), + [anon_sym_i128] = ACTIONS(1153), + [anon_sym_u256] = ACTIONS(1153), + [anon_sym_i256] = ACTIONS(1153), + [anon_sym_b256] = ACTIONS(1153), + [anon_sym_isize] = ACTIONS(1153), + [anon_sym_usize] = ACTIONS(1153), + [anon_sym_f32] = ACTIONS(1153), + [anon_sym_f64] = ACTIONS(1153), + [anon_sym_bool] = ACTIONS(1153), + [anon_sym_char] = ACTIONS(1153), + [anon_sym_str] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_contract] = ACTIONS(1153), + [anon_sym_script] = ACTIONS(1153), + [anon_sym_predicate] = ACTIONS(1153), + [anon_sym_library] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_abi] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_configurable] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_mod] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_fn] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_let] = ACTIONS(1153), + [anon_sym_match] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_storage] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_trait] = ACTIONS(1153), + [anon_sym_type] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_POUND] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_DOT_DOT] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_yield] = ACTIONS(1153), + [anon_sym_move] = ACTIONS(1153), + [sym_integer_literal] = ACTIONS(1151), + [aux_sym_string_literal_token1] = ACTIONS(1151), + [sym_char_literal] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(1153), + [anon_sym_false] = ACTIONS(1153), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1167), - [sym_metavariable] = ACTIONS(1165), - [sym_raw_string_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1165), + [sym_self] = ACTIONS(1153), + [sym_metavariable] = ACTIONS(1151), + [sym_raw_string_literal] = ACTIONS(1151), + [sym_float_literal] = ACTIONS(1151), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_identifier] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_u8] = ACTIONS(1171), - [anon_sym_i8] = ACTIONS(1171), - [anon_sym_u16] = ACTIONS(1171), - [anon_sym_i16] = ACTIONS(1171), - [anon_sym_u32] = ACTIONS(1171), - [anon_sym_i32] = ACTIONS(1171), - [anon_sym_u64] = ACTIONS(1171), - [anon_sym_i64] = ACTIONS(1171), - [anon_sym_u128] = ACTIONS(1171), - [anon_sym_i128] = ACTIONS(1171), - [anon_sym_u256] = ACTIONS(1171), - [anon_sym_i256] = ACTIONS(1171), - [anon_sym_b256] = ACTIONS(1171), - [anon_sym_isize] = ACTIONS(1171), - [anon_sym_usize] = ACTIONS(1171), - [anon_sym_f32] = ACTIONS(1171), - [anon_sym_f64] = ACTIONS(1171), - [anon_sym_bool] = ACTIONS(1171), - [anon_sym_char] = ACTIONS(1171), - [anon_sym_str] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_contract] = ACTIONS(1171), - [anon_sym_script] = ACTIONS(1171), - [anon_sym_predicate] = ACTIONS(1171), - [anon_sym_library] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_abi] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_configurable] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_mod] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_fn] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_impl] = ACTIONS(1171), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_pub] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_storage] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_trait] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_use] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_POUND] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1169), - [anon_sym_COLON_COLON] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1169), - [anon_sym_yield] = ACTIONS(1171), - [anon_sym_move] = ACTIONS(1171), - [sym_integer_literal] = ACTIONS(1169), - [aux_sym_string_literal_token1] = ACTIONS(1169), - [sym_char_literal] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(1171), - [anon_sym_false] = ACTIONS(1171), + [ts_builtin_sym_end] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_u8] = ACTIONS(1157), + [anon_sym_i8] = ACTIONS(1157), + [anon_sym_u16] = ACTIONS(1157), + [anon_sym_i16] = ACTIONS(1157), + [anon_sym_u32] = ACTIONS(1157), + [anon_sym_i32] = ACTIONS(1157), + [anon_sym_u64] = ACTIONS(1157), + [anon_sym_i64] = ACTIONS(1157), + [anon_sym_u128] = ACTIONS(1157), + [anon_sym_i128] = ACTIONS(1157), + [anon_sym_u256] = ACTIONS(1157), + [anon_sym_i256] = ACTIONS(1157), + [anon_sym_b256] = ACTIONS(1157), + [anon_sym_isize] = ACTIONS(1157), + [anon_sym_usize] = ACTIONS(1157), + [anon_sym_f32] = ACTIONS(1157), + [anon_sym_f64] = ACTIONS(1157), + [anon_sym_bool] = ACTIONS(1157), + [anon_sym_char] = ACTIONS(1157), + [anon_sym_str] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1155), + [anon_sym_contract] = ACTIONS(1157), + [anon_sym_script] = ACTIONS(1157), + [anon_sym_predicate] = ACTIONS(1157), + [anon_sym_library] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_abi] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_configurable] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_default] = ACTIONS(1157), + [anon_sym_mod] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_impl] = ACTIONS(1157), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_match] = ACTIONS(1157), + [anon_sym_pub] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_storage] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_trait] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_use] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1155), + [anon_sym_COLON_COLON] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_move] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1155), + [aux_sym_string_literal_token1] = ACTIONS(1155), + [sym_char_literal] = ACTIONS(1155), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1171), - [sym_metavariable] = ACTIONS(1169), - [sym_raw_string_literal] = ACTIONS(1169), - [sym_float_literal] = ACTIONS(1169), + [sym_self] = ACTIONS(1157), + [sym_metavariable] = ACTIONS(1155), + [sym_raw_string_literal] = ACTIONS(1155), + [sym_float_literal] = ACTIONS(1155), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_u8] = ACTIONS(1175), - [anon_sym_i8] = ACTIONS(1175), - [anon_sym_u16] = ACTIONS(1175), - [anon_sym_i16] = ACTIONS(1175), - [anon_sym_u32] = ACTIONS(1175), - [anon_sym_i32] = ACTIONS(1175), - [anon_sym_u64] = ACTIONS(1175), - [anon_sym_i64] = ACTIONS(1175), - [anon_sym_u128] = ACTIONS(1175), - [anon_sym_i128] = ACTIONS(1175), - [anon_sym_u256] = ACTIONS(1175), - [anon_sym_i256] = ACTIONS(1175), - [anon_sym_b256] = ACTIONS(1175), - [anon_sym_isize] = ACTIONS(1175), - [anon_sym_usize] = ACTIONS(1175), - [anon_sym_f32] = ACTIONS(1175), - [anon_sym_f64] = ACTIONS(1175), - [anon_sym_bool] = ACTIONS(1175), - [anon_sym_char] = ACTIONS(1175), - [anon_sym_str] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_contract] = ACTIONS(1175), - [anon_sym_script] = ACTIONS(1175), - [anon_sym_predicate] = ACTIONS(1175), - [anon_sym_library] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_abi] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_configurable] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_fn] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_impl] = ACTIONS(1175), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_match] = ACTIONS(1175), - [anon_sym_pub] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_storage] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_trait] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_use] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_DOT_DOT] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1175), - [anon_sym_move] = ACTIONS(1175), - [sym_integer_literal] = ACTIONS(1173), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(1175), - [anon_sym_false] = ACTIONS(1175), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_u8] = ACTIONS(1161), + [anon_sym_i8] = ACTIONS(1161), + [anon_sym_u16] = ACTIONS(1161), + [anon_sym_i16] = ACTIONS(1161), + [anon_sym_u32] = ACTIONS(1161), + [anon_sym_i32] = ACTIONS(1161), + [anon_sym_u64] = ACTIONS(1161), + [anon_sym_i64] = ACTIONS(1161), + [anon_sym_u128] = ACTIONS(1161), + [anon_sym_i128] = ACTIONS(1161), + [anon_sym_u256] = ACTIONS(1161), + [anon_sym_i256] = ACTIONS(1161), + [anon_sym_b256] = ACTIONS(1161), + [anon_sym_isize] = ACTIONS(1161), + [anon_sym_usize] = ACTIONS(1161), + [anon_sym_f32] = ACTIONS(1161), + [anon_sym_f64] = ACTIONS(1161), + [anon_sym_bool] = ACTIONS(1161), + [anon_sym_char] = ACTIONS(1161), + [anon_sym_str] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_contract] = ACTIONS(1161), + [anon_sym_script] = ACTIONS(1161), + [anon_sym_predicate] = ACTIONS(1161), + [anon_sym_library] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_abi] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_configurable] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_mod] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_fn] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1161), + [anon_sym_let] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1161), + [anon_sym_pub] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_storage] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_trait] = ACTIONS(1161), + [anon_sym_type] = ACTIONS(1161), + [anon_sym_use] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_POUND] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_COLON_COLON] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_yield] = ACTIONS(1161), + [anon_sym_move] = ACTIONS(1161), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1159), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1161), + [anon_sym_false] = ACTIONS(1161), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1175), - [sym_metavariable] = ACTIONS(1173), - [sym_raw_string_literal] = ACTIONS(1173), - [sym_float_literal] = ACTIONS(1173), + [sym_self] = ACTIONS(1161), + [sym_metavariable] = ACTIONS(1159), + [sym_raw_string_literal] = ACTIONS(1159), + [sym_float_literal] = ACTIONS(1159), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_u8] = ACTIONS(1179), - [anon_sym_i8] = ACTIONS(1179), - [anon_sym_u16] = ACTIONS(1179), - [anon_sym_i16] = ACTIONS(1179), - [anon_sym_u32] = ACTIONS(1179), - [anon_sym_i32] = ACTIONS(1179), - [anon_sym_u64] = ACTIONS(1179), - [anon_sym_i64] = ACTIONS(1179), - [anon_sym_u128] = ACTIONS(1179), - [anon_sym_i128] = ACTIONS(1179), - [anon_sym_u256] = ACTIONS(1179), - [anon_sym_i256] = ACTIONS(1179), - [anon_sym_b256] = ACTIONS(1179), - [anon_sym_isize] = ACTIONS(1179), - [anon_sym_usize] = ACTIONS(1179), - [anon_sym_f32] = ACTIONS(1179), - [anon_sym_f64] = ACTIONS(1179), - [anon_sym_bool] = ACTIONS(1179), - [anon_sym_char] = ACTIONS(1179), - [anon_sym_str] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_contract] = ACTIONS(1179), - [anon_sym_script] = ACTIONS(1179), - [anon_sym_predicate] = ACTIONS(1179), - [anon_sym_library] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_abi] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_configurable] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_fn] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_impl] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_pub] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_storage] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_trait] = ACTIONS(1179), - [anon_sym_type] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_COLON_COLON] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1179), - [anon_sym_move] = ACTIONS(1179), - [sym_integer_literal] = ACTIONS(1177), - [aux_sym_string_literal_token1] = ACTIONS(1177), - [sym_char_literal] = ACTIONS(1177), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_identifier] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_u8] = ACTIONS(1165), + [anon_sym_i8] = ACTIONS(1165), + [anon_sym_u16] = ACTIONS(1165), + [anon_sym_i16] = ACTIONS(1165), + [anon_sym_u32] = ACTIONS(1165), + [anon_sym_i32] = ACTIONS(1165), + [anon_sym_u64] = ACTIONS(1165), + [anon_sym_i64] = ACTIONS(1165), + [anon_sym_u128] = ACTIONS(1165), + [anon_sym_i128] = ACTIONS(1165), + [anon_sym_u256] = ACTIONS(1165), + [anon_sym_i256] = ACTIONS(1165), + [anon_sym_b256] = ACTIONS(1165), + [anon_sym_isize] = ACTIONS(1165), + [anon_sym_usize] = ACTIONS(1165), + [anon_sym_f32] = ACTIONS(1165), + [anon_sym_f64] = ACTIONS(1165), + [anon_sym_bool] = ACTIONS(1165), + [anon_sym_char] = ACTIONS(1165), + [anon_sym_str] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1163), + [anon_sym_contract] = ACTIONS(1165), + [anon_sym_script] = ACTIONS(1165), + [anon_sym_predicate] = ACTIONS(1165), + [anon_sym_library] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_abi] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_configurable] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_impl] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_pub] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_storage] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_trait] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_COLON_COLON] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_DOT_DOT] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(1165), + [anon_sym_move] = ACTIONS(1165), + [sym_integer_literal] = ACTIONS(1163), + [aux_sym_string_literal_token1] = ACTIONS(1163), + [sym_char_literal] = ACTIONS(1163), + [anon_sym_true] = ACTIONS(1165), + [anon_sym_false] = ACTIONS(1165), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1179), - [sym_metavariable] = ACTIONS(1177), - [sym_raw_string_literal] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1177), + [sym_self] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1163), + [sym_raw_string_literal] = ACTIONS(1163), + [sym_float_literal] = ACTIONS(1163), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_u8] = ACTIONS(1183), - [anon_sym_i8] = ACTIONS(1183), - [anon_sym_u16] = ACTIONS(1183), - [anon_sym_i16] = ACTIONS(1183), - [anon_sym_u32] = ACTIONS(1183), - [anon_sym_i32] = ACTIONS(1183), - [anon_sym_u64] = ACTIONS(1183), - [anon_sym_i64] = ACTIONS(1183), - [anon_sym_u128] = ACTIONS(1183), - [anon_sym_i128] = ACTIONS(1183), - [anon_sym_u256] = ACTIONS(1183), - [anon_sym_i256] = ACTIONS(1183), - [anon_sym_b256] = ACTIONS(1183), - [anon_sym_isize] = ACTIONS(1183), - [anon_sym_usize] = ACTIONS(1183), - [anon_sym_f32] = ACTIONS(1183), - [anon_sym_f64] = ACTIONS(1183), - [anon_sym_bool] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_str] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_contract] = ACTIONS(1183), - [anon_sym_script] = ACTIONS(1183), - [anon_sym_predicate] = ACTIONS(1183), - [anon_sym_library] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_abi] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_configurable] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_mod] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_impl] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_match] = ACTIONS(1183), - [anon_sym_pub] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_storage] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_use] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_POUND] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_COLON_COLON] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_DOT_DOT] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_move] = ACTIONS(1183), - [sym_integer_literal] = ACTIONS(1181), - [aux_sym_string_literal_token1] = ACTIONS(1181), - [sym_char_literal] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1183), - [anon_sym_false] = ACTIONS(1183), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_u8] = ACTIONS(1169), + [anon_sym_i8] = ACTIONS(1169), + [anon_sym_u16] = ACTIONS(1169), + [anon_sym_i16] = ACTIONS(1169), + [anon_sym_u32] = ACTIONS(1169), + [anon_sym_i32] = ACTIONS(1169), + [anon_sym_u64] = ACTIONS(1169), + [anon_sym_i64] = ACTIONS(1169), + [anon_sym_u128] = ACTIONS(1169), + [anon_sym_i128] = ACTIONS(1169), + [anon_sym_u256] = ACTIONS(1169), + [anon_sym_i256] = ACTIONS(1169), + [anon_sym_b256] = ACTIONS(1169), + [anon_sym_isize] = ACTIONS(1169), + [anon_sym_usize] = ACTIONS(1169), + [anon_sym_f32] = ACTIONS(1169), + [anon_sym_f64] = ACTIONS(1169), + [anon_sym_bool] = ACTIONS(1169), + [anon_sym_char] = ACTIONS(1169), + [anon_sym_str] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_contract] = ACTIONS(1169), + [anon_sym_script] = ACTIONS(1169), + [anon_sym_predicate] = ACTIONS(1169), + [anon_sym_library] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_abi] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_configurable] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_fn] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_impl] = ACTIONS(1169), + [anon_sym_let] = ACTIONS(1169), + [anon_sym_match] = ACTIONS(1169), + [anon_sym_pub] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_storage] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_trait] = ACTIONS(1169), + [anon_sym_type] = ACTIONS(1169), + [anon_sym_use] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_POUND] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_COLON_COLON] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_yield] = ACTIONS(1169), + [anon_sym_move] = ACTIONS(1169), + [sym_integer_literal] = ACTIONS(1167), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1183), - [sym_metavariable] = ACTIONS(1181), - [sym_raw_string_literal] = ACTIONS(1181), - [sym_float_literal] = ACTIONS(1181), + [sym_self] = ACTIONS(1169), + [sym_metavariable] = ACTIONS(1167), + [sym_raw_string_literal] = ACTIONS(1167), + [sym_float_literal] = ACTIONS(1167), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_u256] = ACTIONS(1187), - [anon_sym_i256] = ACTIONS(1187), - [anon_sym_b256] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_contract] = ACTIONS(1187), - [anon_sym_script] = ACTIONS(1187), - [anon_sym_predicate] = ACTIONS(1187), - [anon_sym_library] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_abi] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_configurable] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_mod] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_fn] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_impl] = ACTIONS(1187), - [anon_sym_let] = ACTIONS(1187), - [anon_sym_match] = ACTIONS(1187), - [anon_sym_pub] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_storage] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_trait] = ACTIONS(1187), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_use] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_POUND] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1185), - [anon_sym_COLON_COLON] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_move] = ACTIONS(1187), - [sym_integer_literal] = ACTIONS(1185), - [aux_sym_string_literal_token1] = ACTIONS(1185), - [sym_char_literal] = ACTIONS(1185), - [anon_sym_true] = ACTIONS(1187), - [anon_sym_false] = ACTIONS(1187), + [ts_builtin_sym_end] = ACTIONS(1171), + [sym_identifier] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_u8] = ACTIONS(1173), + [anon_sym_i8] = ACTIONS(1173), + [anon_sym_u16] = ACTIONS(1173), + [anon_sym_i16] = ACTIONS(1173), + [anon_sym_u32] = ACTIONS(1173), + [anon_sym_i32] = ACTIONS(1173), + [anon_sym_u64] = ACTIONS(1173), + [anon_sym_i64] = ACTIONS(1173), + [anon_sym_u128] = ACTIONS(1173), + [anon_sym_i128] = ACTIONS(1173), + [anon_sym_u256] = ACTIONS(1173), + [anon_sym_i256] = ACTIONS(1173), + [anon_sym_b256] = ACTIONS(1173), + [anon_sym_isize] = ACTIONS(1173), + [anon_sym_usize] = ACTIONS(1173), + [anon_sym_f32] = ACTIONS(1173), + [anon_sym_f64] = ACTIONS(1173), + [anon_sym_bool] = ACTIONS(1173), + [anon_sym_char] = ACTIONS(1173), + [anon_sym_str] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_contract] = ACTIONS(1173), + [anon_sym_script] = ACTIONS(1173), + [anon_sym_predicate] = ACTIONS(1173), + [anon_sym_library] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_abi] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_configurable] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_mod] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_impl] = ACTIONS(1173), + [anon_sym_let] = ACTIONS(1173), + [anon_sym_match] = ACTIONS(1173), + [anon_sym_pub] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_storage] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_trait] = ACTIONS(1173), + [anon_sym_type] = ACTIONS(1173), + [anon_sym_use] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_COLON_COLON] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_move] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1171), + [aux_sym_string_literal_token1] = ACTIONS(1171), + [sym_char_literal] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1173), + [anon_sym_false] = ACTIONS(1173), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1187), - [sym_metavariable] = ACTIONS(1185), - [sym_raw_string_literal] = ACTIONS(1185), - [sym_float_literal] = ACTIONS(1185), + [sym_self] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1171), + [sym_raw_string_literal] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1171), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_u8] = ACTIONS(1191), - [anon_sym_i8] = ACTIONS(1191), - [anon_sym_u16] = ACTIONS(1191), - [anon_sym_i16] = ACTIONS(1191), - [anon_sym_u32] = ACTIONS(1191), - [anon_sym_i32] = ACTIONS(1191), - [anon_sym_u64] = ACTIONS(1191), - [anon_sym_i64] = ACTIONS(1191), - [anon_sym_u128] = ACTIONS(1191), - [anon_sym_i128] = ACTIONS(1191), - [anon_sym_u256] = ACTIONS(1191), - [anon_sym_i256] = ACTIONS(1191), - [anon_sym_b256] = ACTIONS(1191), - [anon_sym_isize] = ACTIONS(1191), - [anon_sym_usize] = ACTIONS(1191), - [anon_sym_f32] = ACTIONS(1191), - [anon_sym_f64] = ACTIONS(1191), - [anon_sym_bool] = ACTIONS(1191), - [anon_sym_char] = ACTIONS(1191), - [anon_sym_str] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_contract] = ACTIONS(1191), - [anon_sym_script] = ACTIONS(1191), - [anon_sym_predicate] = ACTIONS(1191), - [anon_sym_library] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_abi] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_configurable] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_mod] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_impl] = ACTIONS(1191), - [anon_sym_let] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1191), - [anon_sym_pub] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_storage] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_trait] = ACTIONS(1191), - [anon_sym_type] = ACTIONS(1191), - [anon_sym_use] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_POUND] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_yield] = ACTIONS(1191), - [anon_sym_move] = ACTIONS(1191), - [sym_integer_literal] = ACTIONS(1189), - [aux_sym_string_literal_token1] = ACTIONS(1189), - [sym_char_literal] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1191), - [anon_sym_false] = ACTIONS(1191), + [ts_builtin_sym_end] = ACTIONS(1175), + [sym_identifier] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_u8] = ACTIONS(1177), + [anon_sym_i8] = ACTIONS(1177), + [anon_sym_u16] = ACTIONS(1177), + [anon_sym_i16] = ACTIONS(1177), + [anon_sym_u32] = ACTIONS(1177), + [anon_sym_i32] = ACTIONS(1177), + [anon_sym_u64] = ACTIONS(1177), + [anon_sym_i64] = ACTIONS(1177), + [anon_sym_u128] = ACTIONS(1177), + [anon_sym_i128] = ACTIONS(1177), + [anon_sym_u256] = ACTIONS(1177), + [anon_sym_i256] = ACTIONS(1177), + [anon_sym_b256] = ACTIONS(1177), + [anon_sym_isize] = ACTIONS(1177), + [anon_sym_usize] = ACTIONS(1177), + [anon_sym_f32] = ACTIONS(1177), + [anon_sym_f64] = ACTIONS(1177), + [anon_sym_bool] = ACTIONS(1177), + [anon_sym_char] = ACTIONS(1177), + [anon_sym_str] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1175), + [anon_sym_contract] = ACTIONS(1177), + [anon_sym_script] = ACTIONS(1177), + [anon_sym_predicate] = ACTIONS(1177), + [anon_sym_library] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_abi] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_configurable] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_mod] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_fn] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_impl] = ACTIONS(1177), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1177), + [anon_sym_pub] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_storage] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_trait] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1177), + [anon_sym_use] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_POUND] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_COLON_COLON] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(1177), + [anon_sym_move] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1175), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1177), + [anon_sym_false] = ACTIONS(1177), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1191), - [sym_metavariable] = ACTIONS(1189), - [sym_raw_string_literal] = ACTIONS(1189), - [sym_float_literal] = ACTIONS(1189), + [sym_self] = ACTIONS(1177), + [sym_metavariable] = ACTIONS(1175), + [sym_raw_string_literal] = ACTIONS(1175), + [sym_float_literal] = ACTIONS(1175), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_identifier] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_u8] = ACTIONS(1195), - [anon_sym_i8] = ACTIONS(1195), - [anon_sym_u16] = ACTIONS(1195), - [anon_sym_i16] = ACTIONS(1195), - [anon_sym_u32] = ACTIONS(1195), - [anon_sym_i32] = ACTIONS(1195), - [anon_sym_u64] = ACTIONS(1195), - [anon_sym_i64] = ACTIONS(1195), - [anon_sym_u128] = ACTIONS(1195), - [anon_sym_i128] = ACTIONS(1195), - [anon_sym_u256] = ACTIONS(1195), - [anon_sym_i256] = ACTIONS(1195), - [anon_sym_b256] = ACTIONS(1195), - [anon_sym_isize] = ACTIONS(1195), - [anon_sym_usize] = ACTIONS(1195), - [anon_sym_f32] = ACTIONS(1195), - [anon_sym_f64] = ACTIONS(1195), - [anon_sym_bool] = ACTIONS(1195), - [anon_sym_char] = ACTIONS(1195), - [anon_sym_str] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_contract] = ACTIONS(1195), - [anon_sym_script] = ACTIONS(1195), - [anon_sym_predicate] = ACTIONS(1195), - [anon_sym_library] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_abi] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_configurable] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_mod] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_impl] = ACTIONS(1195), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_pub] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_storage] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_trait] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_use] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1193), - [aux_sym_string_literal_token1] = ACTIONS(1193), - [sym_char_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), + [ts_builtin_sym_end] = ACTIONS(1179), + [sym_identifier] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_u8] = ACTIONS(1181), + [anon_sym_i8] = ACTIONS(1181), + [anon_sym_u16] = ACTIONS(1181), + [anon_sym_i16] = ACTIONS(1181), + [anon_sym_u32] = ACTIONS(1181), + [anon_sym_i32] = ACTIONS(1181), + [anon_sym_u64] = ACTIONS(1181), + [anon_sym_i64] = ACTIONS(1181), + [anon_sym_u128] = ACTIONS(1181), + [anon_sym_i128] = ACTIONS(1181), + [anon_sym_u256] = ACTIONS(1181), + [anon_sym_i256] = ACTIONS(1181), + [anon_sym_b256] = ACTIONS(1181), + [anon_sym_isize] = ACTIONS(1181), + [anon_sym_usize] = ACTIONS(1181), + [anon_sym_f32] = ACTIONS(1181), + [anon_sym_f64] = ACTIONS(1181), + [anon_sym_bool] = ACTIONS(1181), + [anon_sym_char] = ACTIONS(1181), + [anon_sym_str] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_contract] = ACTIONS(1181), + [anon_sym_script] = ACTIONS(1181), + [anon_sym_predicate] = ACTIONS(1181), + [anon_sym_library] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_abi] = ACTIONS(1181), + [anon_sym_break] = ACTIONS(1181), + [anon_sym_configurable] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1181), + [anon_sym_mod] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1181), + [anon_sym_for] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_impl] = ACTIONS(1181), + [anon_sym_let] = ACTIONS(1181), + [anon_sym_match] = ACTIONS(1181), + [anon_sym_pub] = ACTIONS(1181), + [anon_sym_return] = ACTIONS(1181), + [anon_sym_storage] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_trait] = ACTIONS(1181), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_use] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1181), + [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_yield] = ACTIONS(1181), + [anon_sym_move] = ACTIONS(1181), + [sym_integer_literal] = ACTIONS(1179), + [aux_sym_string_literal_token1] = ACTIONS(1179), + [sym_char_literal] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1195), - [sym_metavariable] = ACTIONS(1193), - [sym_raw_string_literal] = ACTIONS(1193), - [sym_float_literal] = ACTIONS(1193), + [sym_self] = ACTIONS(1181), + [sym_metavariable] = ACTIONS(1179), + [sym_raw_string_literal] = ACTIONS(1179), + [sym_float_literal] = ACTIONS(1179), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_u256] = ACTIONS(1199), - [anon_sym_i256] = ACTIONS(1199), - [anon_sym_b256] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_contract] = ACTIONS(1199), - [anon_sym_script] = ACTIONS(1199), - [anon_sym_predicate] = ACTIONS(1199), - [anon_sym_library] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_abi] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_configurable] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_storage] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_COLON_COLON] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_yield] = ACTIONS(1199), - [anon_sym_move] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1197), - [aux_sym_string_literal_token1] = ACTIONS(1197), - [sym_char_literal] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), + [ts_builtin_sym_end] = ACTIONS(1183), + [sym_identifier] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_u8] = ACTIONS(1185), + [anon_sym_i8] = ACTIONS(1185), + [anon_sym_u16] = ACTIONS(1185), + [anon_sym_i16] = ACTIONS(1185), + [anon_sym_u32] = ACTIONS(1185), + [anon_sym_i32] = ACTIONS(1185), + [anon_sym_u64] = ACTIONS(1185), + [anon_sym_i64] = ACTIONS(1185), + [anon_sym_u128] = ACTIONS(1185), + [anon_sym_i128] = ACTIONS(1185), + [anon_sym_u256] = ACTIONS(1185), + [anon_sym_i256] = ACTIONS(1185), + [anon_sym_b256] = ACTIONS(1185), + [anon_sym_isize] = ACTIONS(1185), + [anon_sym_usize] = ACTIONS(1185), + [anon_sym_f32] = ACTIONS(1185), + [anon_sym_f64] = ACTIONS(1185), + [anon_sym_bool] = ACTIONS(1185), + [anon_sym_char] = ACTIONS(1185), + [anon_sym_str] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_contract] = ACTIONS(1185), + [anon_sym_script] = ACTIONS(1185), + [anon_sym_predicate] = ACTIONS(1185), + [anon_sym_library] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_abi] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_configurable] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1185), + [anon_sym_mod] = ACTIONS(1185), + [anon_sym_enum] = ACTIONS(1185), + [anon_sym_fn] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_impl] = ACTIONS(1185), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1185), + [anon_sym_pub] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_storage] = ACTIONS(1185), + [anon_sym_struct] = ACTIONS(1185), + [anon_sym_trait] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(1185), + [anon_sym_use] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_COLON_COLON] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_yield] = ACTIONS(1185), + [anon_sym_move] = ACTIONS(1185), + [sym_integer_literal] = ACTIONS(1183), + [aux_sym_string_literal_token1] = ACTIONS(1183), + [sym_char_literal] = ACTIONS(1183), + [anon_sym_true] = ACTIONS(1185), + [anon_sym_false] = ACTIONS(1185), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1197), - [sym_raw_string_literal] = ACTIONS(1197), - [sym_float_literal] = ACTIONS(1197), + [sym_self] = ACTIONS(1185), + [sym_metavariable] = ACTIONS(1183), + [sym_raw_string_literal] = ACTIONS(1183), + [sym_float_literal] = ACTIONS(1183), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1203), - [anon_sym_i8] = ACTIONS(1203), - [anon_sym_u16] = ACTIONS(1203), - [anon_sym_i16] = ACTIONS(1203), - [anon_sym_u32] = ACTIONS(1203), - [anon_sym_i32] = ACTIONS(1203), - [anon_sym_u64] = ACTIONS(1203), - [anon_sym_i64] = ACTIONS(1203), - [anon_sym_u128] = ACTIONS(1203), - [anon_sym_i128] = ACTIONS(1203), - [anon_sym_u256] = ACTIONS(1203), - [anon_sym_i256] = ACTIONS(1203), - [anon_sym_b256] = ACTIONS(1203), - [anon_sym_isize] = ACTIONS(1203), - [anon_sym_usize] = ACTIONS(1203), - [anon_sym_f32] = ACTIONS(1203), - [anon_sym_f64] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1203), - [anon_sym_char] = ACTIONS(1203), - [anon_sym_str] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_contract] = ACTIONS(1203), - [anon_sym_script] = ACTIONS(1203), - [anon_sym_predicate] = ACTIONS(1203), - [anon_sym_library] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_abi] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_configurable] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_fn] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_impl] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_pub] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_storage] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_trait] = ACTIONS(1203), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(1203), - [anon_sym_move] = ACTIONS(1203), - [sym_integer_literal] = ACTIONS(1201), - [aux_sym_string_literal_token1] = ACTIONS(1201), - [sym_char_literal] = ACTIONS(1201), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1187), + [sym_identifier] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1187), + [anon_sym_u8] = ACTIONS(1189), + [anon_sym_i8] = ACTIONS(1189), + [anon_sym_u16] = ACTIONS(1189), + [anon_sym_i16] = ACTIONS(1189), + [anon_sym_u32] = ACTIONS(1189), + [anon_sym_i32] = ACTIONS(1189), + [anon_sym_u64] = ACTIONS(1189), + [anon_sym_i64] = ACTIONS(1189), + [anon_sym_u128] = ACTIONS(1189), + [anon_sym_i128] = ACTIONS(1189), + [anon_sym_u256] = ACTIONS(1189), + [anon_sym_i256] = ACTIONS(1189), + [anon_sym_b256] = ACTIONS(1189), + [anon_sym_isize] = ACTIONS(1189), + [anon_sym_usize] = ACTIONS(1189), + [anon_sym_f32] = ACTIONS(1189), + [anon_sym_f64] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_str] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_contract] = ACTIONS(1189), + [anon_sym_script] = ACTIONS(1189), + [anon_sym_predicate] = ACTIONS(1189), + [anon_sym_library] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_abi] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_configurable] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_mod] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_impl] = ACTIONS(1189), + [anon_sym_let] = ACTIONS(1189), + [anon_sym_match] = ACTIONS(1189), + [anon_sym_pub] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_storage] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_trait] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(1189), + [anon_sym_use] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_COLON_COLON] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_move] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1187), + [aux_sym_string_literal_token1] = ACTIONS(1187), + [sym_char_literal] = ACTIONS(1187), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1201), - [sym_raw_string_literal] = ACTIONS(1201), - [sym_float_literal] = ACTIONS(1201), + [sym_self] = ACTIONS(1189), + [sym_metavariable] = ACTIONS(1187), + [sym_raw_string_literal] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1187), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_u256] = ACTIONS(1207), - [anon_sym_i256] = ACTIONS(1207), - [anon_sym_b256] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_contract] = ACTIONS(1207), - [anon_sym_script] = ACTIONS(1207), - [anon_sym_predicate] = ACTIONS(1207), - [anon_sym_library] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_abi] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_configurable] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_fn] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_impl] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_match] = ACTIONS(1207), - [anon_sym_pub] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_storage] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_trait] = ACTIONS(1207), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_use] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_COLON_COLON] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_DOT_DOT] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_yield] = ACTIONS(1207), - [anon_sym_move] = ACTIONS(1207), - [sym_integer_literal] = ACTIONS(1205), - [aux_sym_string_literal_token1] = ACTIONS(1205), - [sym_char_literal] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1207), - [anon_sym_false] = ACTIONS(1207), + [ts_builtin_sym_end] = ACTIONS(1191), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_u256] = ACTIONS(1193), + [anon_sym_i256] = ACTIONS(1193), + [anon_sym_b256] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_contract] = ACTIONS(1193), + [anon_sym_script] = ACTIONS(1193), + [anon_sym_predicate] = ACTIONS(1193), + [anon_sym_library] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_abi] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_configurable] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_storage] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1191), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_yield] = ACTIONS(1193), + [anon_sym_move] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1191), + [aux_sym_string_literal_token1] = ACTIONS(1191), + [sym_char_literal] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(1193), + [anon_sym_false] = ACTIONS(1193), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1207), - [sym_metavariable] = ACTIONS(1205), - [sym_raw_string_literal] = ACTIONS(1205), - [sym_float_literal] = ACTIONS(1205), + [sym_self] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1191), + [sym_raw_string_literal] = ACTIONS(1191), + [sym_float_literal] = ACTIONS(1191), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_u8] = ACTIONS(1211), - [anon_sym_i8] = ACTIONS(1211), - [anon_sym_u16] = ACTIONS(1211), - [anon_sym_i16] = ACTIONS(1211), - [anon_sym_u32] = ACTIONS(1211), - [anon_sym_i32] = ACTIONS(1211), - [anon_sym_u64] = ACTIONS(1211), - [anon_sym_i64] = ACTIONS(1211), - [anon_sym_u128] = ACTIONS(1211), - [anon_sym_i128] = ACTIONS(1211), - [anon_sym_u256] = ACTIONS(1211), - [anon_sym_i256] = ACTIONS(1211), - [anon_sym_b256] = ACTIONS(1211), - [anon_sym_isize] = ACTIONS(1211), - [anon_sym_usize] = ACTIONS(1211), - [anon_sym_f32] = ACTIONS(1211), - [anon_sym_f64] = ACTIONS(1211), - [anon_sym_bool] = ACTIONS(1211), - [anon_sym_char] = ACTIONS(1211), - [anon_sym_str] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_contract] = ACTIONS(1211), - [anon_sym_script] = ACTIONS(1211), - [anon_sym_predicate] = ACTIONS(1211), - [anon_sym_library] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_abi] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_configurable] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_mod] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [anon_sym_fn] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_impl] = ACTIONS(1211), - [anon_sym_let] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1211), - [anon_sym_pub] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_storage] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_trait] = ACTIONS(1211), - [anon_sym_type] = ACTIONS(1211), - [anon_sym_use] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_POUND] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1209), - [anon_sym_COLON_COLON] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_DOT_DOT] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(1211), - [anon_sym_move] = ACTIONS(1211), - [sym_integer_literal] = ACTIONS(1209), - [aux_sym_string_literal_token1] = ACTIONS(1209), - [sym_char_literal] = ACTIONS(1209), - [anon_sym_true] = ACTIONS(1211), - [anon_sym_false] = ACTIONS(1211), + [ts_builtin_sym_end] = ACTIONS(1195), + [sym_identifier] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1197), + [anon_sym_i8] = ACTIONS(1197), + [anon_sym_u16] = ACTIONS(1197), + [anon_sym_i16] = ACTIONS(1197), + [anon_sym_u32] = ACTIONS(1197), + [anon_sym_i32] = ACTIONS(1197), + [anon_sym_u64] = ACTIONS(1197), + [anon_sym_i64] = ACTIONS(1197), + [anon_sym_u128] = ACTIONS(1197), + [anon_sym_i128] = ACTIONS(1197), + [anon_sym_u256] = ACTIONS(1197), + [anon_sym_i256] = ACTIONS(1197), + [anon_sym_b256] = ACTIONS(1197), + [anon_sym_isize] = ACTIONS(1197), + [anon_sym_usize] = ACTIONS(1197), + [anon_sym_f32] = ACTIONS(1197), + [anon_sym_f64] = ACTIONS(1197), + [anon_sym_bool] = ACTIONS(1197), + [anon_sym_char] = ACTIONS(1197), + [anon_sym_str] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_contract] = ACTIONS(1197), + [anon_sym_script] = ACTIONS(1197), + [anon_sym_predicate] = ACTIONS(1197), + [anon_sym_library] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_abi] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_configurable] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_mod] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_impl] = ACTIONS(1197), + [anon_sym_let] = ACTIONS(1197), + [anon_sym_match] = ACTIONS(1197), + [anon_sym_pub] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_storage] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_trait] = ACTIONS(1197), + [anon_sym_type] = ACTIONS(1197), + [anon_sym_use] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_yield] = ACTIONS(1197), + [anon_sym_move] = ACTIONS(1197), + [sym_integer_literal] = ACTIONS(1195), + [aux_sym_string_literal_token1] = ACTIONS(1195), + [sym_char_literal] = ACTIONS(1195), + [anon_sym_true] = ACTIONS(1197), + [anon_sym_false] = ACTIONS(1197), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1211), - [sym_metavariable] = ACTIONS(1209), - [sym_raw_string_literal] = ACTIONS(1209), - [sym_float_literal] = ACTIONS(1209), + [sym_self] = ACTIONS(1197), + [sym_metavariable] = ACTIONS(1195), + [sym_raw_string_literal] = ACTIONS(1195), + [sym_float_literal] = ACTIONS(1195), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_u8] = ACTIONS(1215), - [anon_sym_i8] = ACTIONS(1215), - [anon_sym_u16] = ACTIONS(1215), - [anon_sym_i16] = ACTIONS(1215), - [anon_sym_u32] = ACTIONS(1215), - [anon_sym_i32] = ACTIONS(1215), - [anon_sym_u64] = ACTIONS(1215), - [anon_sym_i64] = ACTIONS(1215), - [anon_sym_u128] = ACTIONS(1215), - [anon_sym_i128] = ACTIONS(1215), - [anon_sym_u256] = ACTIONS(1215), - [anon_sym_i256] = ACTIONS(1215), - [anon_sym_b256] = ACTIONS(1215), - [anon_sym_isize] = ACTIONS(1215), - [anon_sym_usize] = ACTIONS(1215), - [anon_sym_f32] = ACTIONS(1215), - [anon_sym_f64] = ACTIONS(1215), - [anon_sym_bool] = ACTIONS(1215), - [anon_sym_char] = ACTIONS(1215), - [anon_sym_str] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_contract] = ACTIONS(1215), - [anon_sym_script] = ACTIONS(1215), - [anon_sym_predicate] = ACTIONS(1215), - [anon_sym_library] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_abi] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_configurable] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_mod] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [anon_sym_fn] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_impl] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_pub] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_storage] = ACTIONS(1215), - [anon_sym_struct] = ACTIONS(1215), - [anon_sym_trait] = ACTIONS(1215), - [anon_sym_type] = ACTIONS(1215), - [anon_sym_use] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_COLON_COLON] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_DOT_DOT] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_move] = ACTIONS(1215), - [sym_integer_literal] = ACTIONS(1213), - [aux_sym_string_literal_token1] = ACTIONS(1213), - [sym_char_literal] = ACTIONS(1213), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_u256] = ACTIONS(1201), + [anon_sym_i256] = ACTIONS(1201), + [anon_sym_b256] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_contract] = ACTIONS(1201), + [anon_sym_script] = ACTIONS(1201), + [anon_sym_predicate] = ACTIONS(1201), + [anon_sym_library] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_abi] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_configurable] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_storage] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_POUND] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_COLON_COLON] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_DOT_DOT] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_yield] = ACTIONS(1201), + [anon_sym_move] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [aux_sym_string_literal_token1] = ACTIONS(1199), + [sym_char_literal] = ACTIONS(1199), + [anon_sym_true] = ACTIONS(1201), + [anon_sym_false] = ACTIONS(1201), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1215), - [sym_metavariable] = ACTIONS(1213), - [sym_raw_string_literal] = ACTIONS(1213), - [sym_float_literal] = ACTIONS(1213), + [sym_self] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1199), + [sym_raw_string_literal] = ACTIONS(1199), + [sym_float_literal] = ACTIONS(1199), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_u8] = ACTIONS(1219), - [anon_sym_i8] = ACTIONS(1219), - [anon_sym_u16] = ACTIONS(1219), - [anon_sym_i16] = ACTIONS(1219), - [anon_sym_u32] = ACTIONS(1219), - [anon_sym_i32] = ACTIONS(1219), - [anon_sym_u64] = ACTIONS(1219), - [anon_sym_i64] = ACTIONS(1219), - [anon_sym_u128] = ACTIONS(1219), - [anon_sym_i128] = ACTIONS(1219), - [anon_sym_u256] = ACTIONS(1219), - [anon_sym_i256] = ACTIONS(1219), - [anon_sym_b256] = ACTIONS(1219), - [anon_sym_isize] = ACTIONS(1219), - [anon_sym_usize] = ACTIONS(1219), - [anon_sym_f32] = ACTIONS(1219), - [anon_sym_f64] = ACTIONS(1219), - [anon_sym_bool] = ACTIONS(1219), - [anon_sym_char] = ACTIONS(1219), - [anon_sym_str] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_contract] = ACTIONS(1219), - [anon_sym_script] = ACTIONS(1219), - [anon_sym_predicate] = ACTIONS(1219), - [anon_sym_library] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_abi] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_configurable] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_mod] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_fn] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_impl] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_pub] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_storage] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_trait] = ACTIONS(1219), - [anon_sym_type] = ACTIONS(1219), - [anon_sym_use] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_COLON_COLON] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PIPE] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_move] = ACTIONS(1219), - [sym_integer_literal] = ACTIONS(1217), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1217), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), + [ts_builtin_sym_end] = ACTIONS(1203), + [sym_identifier] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1205), + [anon_sym_i8] = ACTIONS(1205), + [anon_sym_u16] = ACTIONS(1205), + [anon_sym_i16] = ACTIONS(1205), + [anon_sym_u32] = ACTIONS(1205), + [anon_sym_i32] = ACTIONS(1205), + [anon_sym_u64] = ACTIONS(1205), + [anon_sym_i64] = ACTIONS(1205), + [anon_sym_u128] = ACTIONS(1205), + [anon_sym_i128] = ACTIONS(1205), + [anon_sym_u256] = ACTIONS(1205), + [anon_sym_i256] = ACTIONS(1205), + [anon_sym_b256] = ACTIONS(1205), + [anon_sym_isize] = ACTIONS(1205), + [anon_sym_usize] = ACTIONS(1205), + [anon_sym_f32] = ACTIONS(1205), + [anon_sym_f64] = ACTIONS(1205), + [anon_sym_bool] = ACTIONS(1205), + [anon_sym_char] = ACTIONS(1205), + [anon_sym_str] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1203), + [anon_sym_contract] = ACTIONS(1205), + [anon_sym_script] = ACTIONS(1205), + [anon_sym_predicate] = ACTIONS(1205), + [anon_sym_library] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_abi] = ACTIONS(1205), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_configurable] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1205), + [anon_sym_mod] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_fn] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_impl] = ACTIONS(1205), + [anon_sym_let] = ACTIONS(1205), + [anon_sym_match] = ACTIONS(1205), + [anon_sym_pub] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1205), + [anon_sym_storage] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_trait] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(1205), + [anon_sym_use] = ACTIONS(1205), + [anon_sym_while] = ACTIONS(1205), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1205), + [anon_sym_move] = ACTIONS(1205), + [sym_integer_literal] = ACTIONS(1203), + [aux_sym_string_literal_token1] = ACTIONS(1203), + [sym_char_literal] = ACTIONS(1203), + [anon_sym_true] = ACTIONS(1205), + [anon_sym_false] = ACTIONS(1205), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1219), - [sym_metavariable] = ACTIONS(1217), - [sym_raw_string_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1217), + [sym_self] = ACTIONS(1205), + [sym_metavariable] = ACTIONS(1203), + [sym_raw_string_literal] = ACTIONS(1203), + [sym_float_literal] = ACTIONS(1203), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_u256] = ACTIONS(1223), - [anon_sym_i256] = ACTIONS(1223), - [anon_sym_b256] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_contract] = ACTIONS(1223), - [anon_sym_script] = ACTIONS(1223), - [anon_sym_predicate] = ACTIONS(1223), - [anon_sym_library] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_abi] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_configurable] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_mod] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_fn] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_impl] = ACTIONS(1223), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_pub] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_storage] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_trait] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_use] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_COLON_COLON] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_yield] = ACTIONS(1223), - [anon_sym_move] = ACTIONS(1223), - [sym_integer_literal] = ACTIONS(1221), - [aux_sym_string_literal_token1] = ACTIONS(1221), - [sym_char_literal] = ACTIONS(1221), - [anon_sym_true] = ACTIONS(1223), - [anon_sym_false] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_u8] = ACTIONS(1209), + [anon_sym_i8] = ACTIONS(1209), + [anon_sym_u16] = ACTIONS(1209), + [anon_sym_i16] = ACTIONS(1209), + [anon_sym_u32] = ACTIONS(1209), + [anon_sym_i32] = ACTIONS(1209), + [anon_sym_u64] = ACTIONS(1209), + [anon_sym_i64] = ACTIONS(1209), + [anon_sym_u128] = ACTIONS(1209), + [anon_sym_i128] = ACTIONS(1209), + [anon_sym_u256] = ACTIONS(1209), + [anon_sym_i256] = ACTIONS(1209), + [anon_sym_b256] = ACTIONS(1209), + [anon_sym_isize] = ACTIONS(1209), + [anon_sym_usize] = ACTIONS(1209), + [anon_sym_f32] = ACTIONS(1209), + [anon_sym_f64] = ACTIONS(1209), + [anon_sym_bool] = ACTIONS(1209), + [anon_sym_char] = ACTIONS(1209), + [anon_sym_str] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_contract] = ACTIONS(1209), + [anon_sym_script] = ACTIONS(1209), + [anon_sym_predicate] = ACTIONS(1209), + [anon_sym_library] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_abi] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_configurable] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_mod] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_fn] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_impl] = ACTIONS(1209), + [anon_sym_let] = ACTIONS(1209), + [anon_sym_match] = ACTIONS(1209), + [anon_sym_pub] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_storage] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_trait] = ACTIONS(1209), + [anon_sym_type] = ACTIONS(1209), + [anon_sym_use] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_COLON_COLON] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(1209), + [anon_sym_move] = ACTIONS(1209), + [sym_integer_literal] = ACTIONS(1207), + [aux_sym_string_literal_token1] = ACTIONS(1207), + [sym_char_literal] = ACTIONS(1207), + [anon_sym_true] = ACTIONS(1209), + [anon_sym_false] = ACTIONS(1209), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1223), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1221), - [sym_float_literal] = ACTIONS(1221), + [sym_self] = ACTIONS(1209), + [sym_metavariable] = ACTIONS(1207), + [sym_raw_string_literal] = ACTIONS(1207), + [sym_float_literal] = ACTIONS(1207), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_u8] = ACTIONS(1227), - [anon_sym_i8] = ACTIONS(1227), - [anon_sym_u16] = ACTIONS(1227), - [anon_sym_i16] = ACTIONS(1227), - [anon_sym_u32] = ACTIONS(1227), - [anon_sym_i32] = ACTIONS(1227), - [anon_sym_u64] = ACTIONS(1227), - [anon_sym_i64] = ACTIONS(1227), - [anon_sym_u128] = ACTIONS(1227), - [anon_sym_i128] = ACTIONS(1227), - [anon_sym_u256] = ACTIONS(1227), - [anon_sym_i256] = ACTIONS(1227), - [anon_sym_b256] = ACTIONS(1227), - [anon_sym_isize] = ACTIONS(1227), - [anon_sym_usize] = ACTIONS(1227), - [anon_sym_f32] = ACTIONS(1227), - [anon_sym_f64] = ACTIONS(1227), - [anon_sym_bool] = ACTIONS(1227), - [anon_sym_char] = ACTIONS(1227), - [anon_sym_str] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_contract] = ACTIONS(1227), - [anon_sym_script] = ACTIONS(1227), - [anon_sym_predicate] = ACTIONS(1227), - [anon_sym_library] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_abi] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_configurable] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_mod] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_impl] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_pub] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_storage] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_trait] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_DOT_DOT] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1225), - [anon_sym_yield] = ACTIONS(1227), - [anon_sym_move] = ACTIONS(1227), - [sym_integer_literal] = ACTIONS(1225), - [aux_sym_string_literal_token1] = ACTIONS(1225), - [sym_char_literal] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_u8] = ACTIONS(1213), + [anon_sym_i8] = ACTIONS(1213), + [anon_sym_u16] = ACTIONS(1213), + [anon_sym_i16] = ACTIONS(1213), + [anon_sym_u32] = ACTIONS(1213), + [anon_sym_i32] = ACTIONS(1213), + [anon_sym_u64] = ACTIONS(1213), + [anon_sym_i64] = ACTIONS(1213), + [anon_sym_u128] = ACTIONS(1213), + [anon_sym_i128] = ACTIONS(1213), + [anon_sym_u256] = ACTIONS(1213), + [anon_sym_i256] = ACTIONS(1213), + [anon_sym_b256] = ACTIONS(1213), + [anon_sym_isize] = ACTIONS(1213), + [anon_sym_usize] = ACTIONS(1213), + [anon_sym_f32] = ACTIONS(1213), + [anon_sym_f64] = ACTIONS(1213), + [anon_sym_bool] = ACTIONS(1213), + [anon_sym_char] = ACTIONS(1213), + [anon_sym_str] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_contract] = ACTIONS(1213), + [anon_sym_script] = ACTIONS(1213), + [anon_sym_predicate] = ACTIONS(1213), + [anon_sym_library] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_abi] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_configurable] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_mod] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_fn] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_impl] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1213), + [anon_sym_match] = ACTIONS(1213), + [anon_sym_pub] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_storage] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_trait] = ACTIONS(1213), + [anon_sym_type] = ACTIONS(1213), + [anon_sym_use] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_COLON_COLON] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(1213), + [anon_sym_move] = ACTIONS(1213), + [sym_integer_literal] = ACTIONS(1211), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1211), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1227), - [sym_metavariable] = ACTIONS(1225), - [sym_raw_string_literal] = ACTIONS(1225), - [sym_float_literal] = ACTIONS(1225), + [sym_self] = ACTIONS(1213), + [sym_metavariable] = ACTIONS(1211), + [sym_raw_string_literal] = ACTIONS(1211), + [sym_float_literal] = ACTIONS(1211), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_u8] = ACTIONS(1231), - [anon_sym_i8] = ACTIONS(1231), - [anon_sym_u16] = ACTIONS(1231), - [anon_sym_i16] = ACTIONS(1231), - [anon_sym_u32] = ACTIONS(1231), - [anon_sym_i32] = ACTIONS(1231), - [anon_sym_u64] = ACTIONS(1231), - [anon_sym_i64] = ACTIONS(1231), - [anon_sym_u128] = ACTIONS(1231), - [anon_sym_i128] = ACTIONS(1231), - [anon_sym_u256] = ACTIONS(1231), - [anon_sym_i256] = ACTIONS(1231), - [anon_sym_b256] = ACTIONS(1231), - [anon_sym_isize] = ACTIONS(1231), - [anon_sym_usize] = ACTIONS(1231), - [anon_sym_f32] = ACTIONS(1231), - [anon_sym_f64] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1231), - [anon_sym_char] = ACTIONS(1231), - [anon_sym_str] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_contract] = ACTIONS(1231), - [anon_sym_script] = ACTIONS(1231), - [anon_sym_predicate] = ACTIONS(1231), - [anon_sym_library] = ACTIONS(1231), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_abi] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_configurable] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_mod] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_fn] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_impl] = ACTIONS(1231), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_pub] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_storage] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_trait] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_use] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_COLON_COLON] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1231), - [anon_sym_move] = ACTIONS(1231), - [sym_integer_literal] = ACTIONS(1229), - [aux_sym_string_literal_token1] = ACTIONS(1229), - [sym_char_literal] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_u8] = ACTIONS(1217), + [anon_sym_i8] = ACTIONS(1217), + [anon_sym_u16] = ACTIONS(1217), + [anon_sym_i16] = ACTIONS(1217), + [anon_sym_u32] = ACTIONS(1217), + [anon_sym_i32] = ACTIONS(1217), + [anon_sym_u64] = ACTIONS(1217), + [anon_sym_i64] = ACTIONS(1217), + [anon_sym_u128] = ACTIONS(1217), + [anon_sym_i128] = ACTIONS(1217), + [anon_sym_u256] = ACTIONS(1217), + [anon_sym_i256] = ACTIONS(1217), + [anon_sym_b256] = ACTIONS(1217), + [anon_sym_isize] = ACTIONS(1217), + [anon_sym_usize] = ACTIONS(1217), + [anon_sym_f32] = ACTIONS(1217), + [anon_sym_f64] = ACTIONS(1217), + [anon_sym_bool] = ACTIONS(1217), + [anon_sym_char] = ACTIONS(1217), + [anon_sym_str] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_contract] = ACTIONS(1217), + [anon_sym_script] = ACTIONS(1217), + [anon_sym_predicate] = ACTIONS(1217), + [anon_sym_library] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_abi] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_configurable] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_impl] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_pub] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_storage] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_trait] = ACTIONS(1217), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(1217), + [anon_sym_move] = ACTIONS(1217), + [sym_integer_literal] = ACTIONS(1215), + [aux_sym_string_literal_token1] = ACTIONS(1215), + [sym_char_literal] = ACTIONS(1215), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1231), - [sym_metavariable] = ACTIONS(1229), - [sym_raw_string_literal] = ACTIONS(1229), - [sym_float_literal] = ACTIONS(1229), + [sym_self] = ACTIONS(1217), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1215), + [sym_float_literal] = ACTIONS(1215), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u128] = ACTIONS(1235), - [anon_sym_i128] = ACTIONS(1235), - [anon_sym_u256] = ACTIONS(1235), - [anon_sym_i256] = ACTIONS(1235), - [anon_sym_b256] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_char] = ACTIONS(1235), - [anon_sym_str] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_contract] = ACTIONS(1235), - [anon_sym_script] = ACTIONS(1235), - [anon_sym_predicate] = ACTIONS(1235), - [anon_sym_library] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_abi] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_configurable] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_mod] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_fn] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_impl] = ACTIONS(1235), - [anon_sym_let] = ACTIONS(1235), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_pub] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_storage] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_trait] = ACTIONS(1235), - [anon_sym_type] = ACTIONS(1235), - [anon_sym_use] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_POUND] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1233), - [anon_sym_yield] = ACTIONS(1235), - [anon_sym_move] = ACTIONS(1235), - [sym_integer_literal] = ACTIONS(1233), - [aux_sym_string_literal_token1] = ACTIONS(1233), - [sym_char_literal] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1235), - [anon_sym_false] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1221), + [anon_sym_i8] = ACTIONS(1221), + [anon_sym_u16] = ACTIONS(1221), + [anon_sym_i16] = ACTIONS(1221), + [anon_sym_u32] = ACTIONS(1221), + [anon_sym_i32] = ACTIONS(1221), + [anon_sym_u64] = ACTIONS(1221), + [anon_sym_i64] = ACTIONS(1221), + [anon_sym_u128] = ACTIONS(1221), + [anon_sym_i128] = ACTIONS(1221), + [anon_sym_u256] = ACTIONS(1221), + [anon_sym_i256] = ACTIONS(1221), + [anon_sym_b256] = ACTIONS(1221), + [anon_sym_isize] = ACTIONS(1221), + [anon_sym_usize] = ACTIONS(1221), + [anon_sym_f32] = ACTIONS(1221), + [anon_sym_f64] = ACTIONS(1221), + [anon_sym_bool] = ACTIONS(1221), + [anon_sym_char] = ACTIONS(1221), + [anon_sym_str] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_contract] = ACTIONS(1221), + [anon_sym_script] = ACTIONS(1221), + [anon_sym_predicate] = ACTIONS(1221), + [anon_sym_library] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_abi] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_configurable] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_fn] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_impl] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_pub] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_storage] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_trait] = ACTIONS(1221), + [anon_sym_type] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_yield] = ACTIONS(1221), + [anon_sym_move] = ACTIONS(1221), + [sym_integer_literal] = ACTIONS(1219), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1235), - [sym_metavariable] = ACTIONS(1233), - [sym_raw_string_literal] = ACTIONS(1233), - [sym_float_literal] = ACTIONS(1233), + [sym_self] = ACTIONS(1221), + [sym_metavariable] = ACTIONS(1219), + [sym_raw_string_literal] = ACTIONS(1219), + [sym_float_literal] = ACTIONS(1219), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_u256] = ACTIONS(1239), - [anon_sym_i256] = ACTIONS(1239), - [anon_sym_b256] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_contract] = ACTIONS(1239), - [anon_sym_script] = ACTIONS(1239), - [anon_sym_predicate] = ACTIONS(1239), - [anon_sym_library] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_abi] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_configurable] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_mod] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_impl] = ACTIONS(1239), - [anon_sym_let] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_pub] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_storage] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_trait] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_use] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_COLON_COLON] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [sym_integer_literal] = ACTIONS(1237), - [aux_sym_string_literal_token1] = ACTIONS(1237), - [sym_char_literal] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_u256] = ACTIONS(1225), + [anon_sym_i256] = ACTIONS(1225), + [anon_sym_b256] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_contract] = ACTIONS(1225), + [anon_sym_script] = ACTIONS(1225), + [anon_sym_predicate] = ACTIONS(1225), + [anon_sym_library] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_abi] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_configurable] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_storage] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_yield] = ACTIONS(1225), + [anon_sym_move] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1223), + [aux_sym_string_literal_token1] = ACTIONS(1223), + [sym_char_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1239), - [sym_metavariable] = ACTIONS(1237), - [sym_raw_string_literal] = ACTIONS(1237), - [sym_float_literal] = ACTIONS(1237), + [sym_self] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1223), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_u8] = ACTIONS(1243), - [anon_sym_i8] = ACTIONS(1243), - [anon_sym_u16] = ACTIONS(1243), - [anon_sym_i16] = ACTIONS(1243), - [anon_sym_u32] = ACTIONS(1243), - [anon_sym_i32] = ACTIONS(1243), - [anon_sym_u64] = ACTIONS(1243), - [anon_sym_i64] = ACTIONS(1243), - [anon_sym_u128] = ACTIONS(1243), - [anon_sym_i128] = ACTIONS(1243), - [anon_sym_u256] = ACTIONS(1243), - [anon_sym_i256] = ACTIONS(1243), - [anon_sym_b256] = ACTIONS(1243), - [anon_sym_isize] = ACTIONS(1243), - [anon_sym_usize] = ACTIONS(1243), - [anon_sym_f32] = ACTIONS(1243), - [anon_sym_f64] = ACTIONS(1243), - [anon_sym_bool] = ACTIONS(1243), - [anon_sym_char] = ACTIONS(1243), - [anon_sym_str] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_contract] = ACTIONS(1243), - [anon_sym_script] = ACTIONS(1243), - [anon_sym_predicate] = ACTIONS(1243), - [anon_sym_library] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_abi] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_configurable] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_fn] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_pub] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_storage] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_trait] = ACTIONS(1243), - [anon_sym_type] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_yield] = ACTIONS(1243), - [anon_sym_move] = ACTIONS(1243), - [sym_integer_literal] = ACTIONS(1241), - [aux_sym_string_literal_token1] = ACTIONS(1241), - [sym_char_literal] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), + [ts_builtin_sym_end] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_u256] = ACTIONS(1229), + [anon_sym_i256] = ACTIONS(1229), + [anon_sym_b256] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_contract] = ACTIONS(1229), + [anon_sym_script] = ACTIONS(1229), + [anon_sym_predicate] = ACTIONS(1229), + [anon_sym_library] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_abi] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_configurable] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_storage] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_yield] = ACTIONS(1229), + [anon_sym_move] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1243), - [sym_metavariable] = ACTIONS(1241), - [sym_raw_string_literal] = ACTIONS(1241), - [sym_float_literal] = ACTIONS(1241), + [sym_self] = ACTIONS(1229), + [sym_metavariable] = ACTIONS(1227), + [sym_raw_string_literal] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u128] = ACTIONS(1247), - [anon_sym_i128] = ACTIONS(1247), - [anon_sym_u256] = ACTIONS(1247), - [anon_sym_i256] = ACTIONS(1247), - [anon_sym_b256] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1247), - [anon_sym_str] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_contract] = ACTIONS(1247), - [anon_sym_script] = ACTIONS(1247), - [anon_sym_predicate] = ACTIONS(1247), - [anon_sym_library] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_abi] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_configurable] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_impl] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_pub] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_storage] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_trait] = ACTIONS(1247), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(1247), - [anon_sym_move] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(1245), - [aux_sym_string_literal_token1] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1233), + [anon_sym_i8] = ACTIONS(1233), + [anon_sym_u16] = ACTIONS(1233), + [anon_sym_i16] = ACTIONS(1233), + [anon_sym_u32] = ACTIONS(1233), + [anon_sym_i32] = ACTIONS(1233), + [anon_sym_u64] = ACTIONS(1233), + [anon_sym_i64] = ACTIONS(1233), + [anon_sym_u128] = ACTIONS(1233), + [anon_sym_i128] = ACTIONS(1233), + [anon_sym_u256] = ACTIONS(1233), + [anon_sym_i256] = ACTIONS(1233), + [anon_sym_b256] = ACTIONS(1233), + [anon_sym_isize] = ACTIONS(1233), + [anon_sym_usize] = ACTIONS(1233), + [anon_sym_f32] = ACTIONS(1233), + [anon_sym_f64] = ACTIONS(1233), + [anon_sym_bool] = ACTIONS(1233), + [anon_sym_char] = ACTIONS(1233), + [anon_sym_str] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_contract] = ACTIONS(1233), + [anon_sym_script] = ACTIONS(1233), + [anon_sym_predicate] = ACTIONS(1233), + [anon_sym_library] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_abi] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_configurable] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_mod] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_fn] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_impl] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1233), + [anon_sym_match] = ACTIONS(1233), + [anon_sym_pub] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_storage] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_trait] = ACTIONS(1233), + [anon_sym_type] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_COLON_COLON] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_move] = ACTIONS(1233), + [sym_integer_literal] = ACTIONS(1231), + [aux_sym_string_literal_token1] = ACTIONS(1231), + [sym_char_literal] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1247), - [sym_metavariable] = ACTIONS(1245), - [sym_raw_string_literal] = ACTIONS(1245), - [sym_float_literal] = ACTIONS(1245), + [sym_self] = ACTIONS(1233), + [sym_metavariable] = ACTIONS(1231), + [sym_raw_string_literal] = ACTIONS(1231), + [sym_float_literal] = ACTIONS(1231), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u128] = ACTIONS(1251), - [anon_sym_i128] = ACTIONS(1251), - [anon_sym_u256] = ACTIONS(1251), - [anon_sym_i256] = ACTIONS(1251), - [anon_sym_b256] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_char] = ACTIONS(1251), - [anon_sym_str] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_contract] = ACTIONS(1251), - [anon_sym_script] = ACTIONS(1251), - [anon_sym_predicate] = ACTIONS(1251), - [anon_sym_library] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_abi] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_configurable] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_mod] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_fn] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_impl] = ACTIONS(1251), - [anon_sym_let] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_pub] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_storage] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_trait] = ACTIONS(1251), - [anon_sym_type] = ACTIONS(1251), - [anon_sym_use] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(1251), - [anon_sym_move] = ACTIONS(1251), - [sym_integer_literal] = ACTIONS(1249), - [aux_sym_string_literal_token1] = ACTIONS(1249), - [sym_char_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1237), + [anon_sym_i8] = ACTIONS(1237), + [anon_sym_u16] = ACTIONS(1237), + [anon_sym_i16] = ACTIONS(1237), + [anon_sym_u32] = ACTIONS(1237), + [anon_sym_i32] = ACTIONS(1237), + [anon_sym_u64] = ACTIONS(1237), + [anon_sym_i64] = ACTIONS(1237), + [anon_sym_u128] = ACTIONS(1237), + [anon_sym_i128] = ACTIONS(1237), + [anon_sym_u256] = ACTIONS(1237), + [anon_sym_i256] = ACTIONS(1237), + [anon_sym_b256] = ACTIONS(1237), + [anon_sym_isize] = ACTIONS(1237), + [anon_sym_usize] = ACTIONS(1237), + [anon_sym_f32] = ACTIONS(1237), + [anon_sym_f64] = ACTIONS(1237), + [anon_sym_bool] = ACTIONS(1237), + [anon_sym_char] = ACTIONS(1237), + [anon_sym_str] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_contract] = ACTIONS(1237), + [anon_sym_script] = ACTIONS(1237), + [anon_sym_predicate] = ACTIONS(1237), + [anon_sym_library] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_abi] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_configurable] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_impl] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_pub] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_storage] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_trait] = ACTIONS(1237), + [anon_sym_type] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_COLON_COLON] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_move] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(1235), + [aux_sym_string_literal_token1] = ACTIONS(1235), + [sym_char_literal] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1251), - [sym_metavariable] = ACTIONS(1249), - [sym_raw_string_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1249), + [sym_self] = ACTIONS(1237), + [sym_metavariable] = ACTIONS(1235), + [sym_raw_string_literal] = ACTIONS(1235), + [sym_float_literal] = ACTIONS(1235), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_u8] = ACTIONS(1255), - [anon_sym_i8] = ACTIONS(1255), - [anon_sym_u16] = ACTIONS(1255), - [anon_sym_i16] = ACTIONS(1255), - [anon_sym_u32] = ACTIONS(1255), - [anon_sym_i32] = ACTIONS(1255), - [anon_sym_u64] = ACTIONS(1255), - [anon_sym_i64] = ACTIONS(1255), - [anon_sym_u128] = ACTIONS(1255), - [anon_sym_i128] = ACTIONS(1255), - [anon_sym_u256] = ACTIONS(1255), - [anon_sym_i256] = ACTIONS(1255), - [anon_sym_b256] = ACTIONS(1255), - [anon_sym_isize] = ACTIONS(1255), - [anon_sym_usize] = ACTIONS(1255), - [anon_sym_f32] = ACTIONS(1255), - [anon_sym_f64] = ACTIONS(1255), - [anon_sym_bool] = ACTIONS(1255), - [anon_sym_char] = ACTIONS(1255), - [anon_sym_str] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_contract] = ACTIONS(1255), - [anon_sym_script] = ACTIONS(1255), - [anon_sym_predicate] = ACTIONS(1255), - [anon_sym_library] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_abi] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_configurable] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_mod] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_impl] = ACTIONS(1255), - [anon_sym_let] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_pub] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_storage] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_trait] = ACTIONS(1255), - [anon_sym_type] = ACTIONS(1255), - [anon_sym_use] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_move] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1253), - [aux_sym_string_literal_token1] = ACTIONS(1253), - [sym_char_literal] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_u256] = ACTIONS(1241), + [anon_sym_i256] = ACTIONS(1241), + [anon_sym_b256] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_contract] = ACTIONS(1241), + [anon_sym_script] = ACTIONS(1241), + [anon_sym_predicate] = ACTIONS(1241), + [anon_sym_library] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_abi] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_configurable] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_impl] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_pub] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_storage] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_trait] = ACTIONS(1241), + [anon_sym_type] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_move] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1255), - [sym_metavariable] = ACTIONS(1253), - [sym_raw_string_literal] = ACTIONS(1253), - [sym_float_literal] = ACTIONS(1253), + [sym_self] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym_raw_string_literal] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_u256] = ACTIONS(1259), - [anon_sym_i256] = ACTIONS(1259), - [anon_sym_b256] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_contract] = ACTIONS(1259), - [anon_sym_script] = ACTIONS(1259), - [anon_sym_predicate] = ACTIONS(1259), - [anon_sym_library] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_abi] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_configurable] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_storage] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_yield] = ACTIONS(1259), - [anon_sym_move] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), + [ts_builtin_sym_end] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_u8] = ACTIONS(1245), + [anon_sym_i8] = ACTIONS(1245), + [anon_sym_u16] = ACTIONS(1245), + [anon_sym_i16] = ACTIONS(1245), + [anon_sym_u32] = ACTIONS(1245), + [anon_sym_i32] = ACTIONS(1245), + [anon_sym_u64] = ACTIONS(1245), + [anon_sym_i64] = ACTIONS(1245), + [anon_sym_u128] = ACTIONS(1245), + [anon_sym_i128] = ACTIONS(1245), + [anon_sym_u256] = ACTIONS(1245), + [anon_sym_i256] = ACTIONS(1245), + [anon_sym_b256] = ACTIONS(1245), + [anon_sym_isize] = ACTIONS(1245), + [anon_sym_usize] = ACTIONS(1245), + [anon_sym_f32] = ACTIONS(1245), + [anon_sym_f64] = ACTIONS(1245), + [anon_sym_bool] = ACTIONS(1245), + [anon_sym_char] = ACTIONS(1245), + [anon_sym_str] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_contract] = ACTIONS(1245), + [anon_sym_script] = ACTIONS(1245), + [anon_sym_predicate] = ACTIONS(1245), + [anon_sym_library] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_abi] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_configurable] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_fn] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_storage] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_trait] = ACTIONS(1245), + [anon_sym_type] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1245), + [anon_sym_move] = ACTIONS(1245), + [sym_integer_literal] = ACTIONS(1243), + [aux_sym_string_literal_token1] = ACTIONS(1243), + [sym_char_literal] = ACTIONS(1243), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym_raw_string_literal] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1245), + [sym_metavariable] = ACTIONS(1243), + [sym_raw_string_literal] = ACTIONS(1243), + [sym_float_literal] = ACTIONS(1243), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_u256] = ACTIONS(1263), - [anon_sym_i256] = ACTIONS(1263), - [anon_sym_b256] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_contract] = ACTIONS(1263), - [anon_sym_script] = ACTIONS(1263), - [anon_sym_predicate] = ACTIONS(1263), - [anon_sym_library] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_abi] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_configurable] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_storage] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_move] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1249), + [anon_sym_i8] = ACTIONS(1249), + [anon_sym_u16] = ACTIONS(1249), + [anon_sym_i16] = ACTIONS(1249), + [anon_sym_u32] = ACTIONS(1249), + [anon_sym_i32] = ACTIONS(1249), + [anon_sym_u64] = ACTIONS(1249), + [anon_sym_i64] = ACTIONS(1249), + [anon_sym_u128] = ACTIONS(1249), + [anon_sym_i128] = ACTIONS(1249), + [anon_sym_u256] = ACTIONS(1249), + [anon_sym_i256] = ACTIONS(1249), + [anon_sym_b256] = ACTIONS(1249), + [anon_sym_isize] = ACTIONS(1249), + [anon_sym_usize] = ACTIONS(1249), + [anon_sym_f32] = ACTIONS(1249), + [anon_sym_f64] = ACTIONS(1249), + [anon_sym_bool] = ACTIONS(1249), + [anon_sym_char] = ACTIONS(1249), + [anon_sym_str] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_contract] = ACTIONS(1249), + [anon_sym_script] = ACTIONS(1249), + [anon_sym_predicate] = ACTIONS(1249), + [anon_sym_library] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_abi] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_configurable] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_fn] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_impl] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_pub] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_storage] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_trait] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1249), + [anon_sym_move] = ACTIONS(1249), + [sym_integer_literal] = ACTIONS(1247), + [aux_sym_string_literal_token1] = ACTIONS(1247), + [sym_char_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym_raw_string_literal] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), + [sym_self] = ACTIONS(1249), + [sym_metavariable] = ACTIONS(1247), + [sym_raw_string_literal] = ACTIONS(1247), + [sym_float_literal] = ACTIONS(1247), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_u256] = ACTIONS(1267), - [anon_sym_i256] = ACTIONS(1267), - [anon_sym_b256] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_contract] = ACTIONS(1267), - [anon_sym_script] = ACTIONS(1267), - [anon_sym_predicate] = ACTIONS(1267), - [anon_sym_library] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_abi] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_configurable] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_storage] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_yield] = ACTIONS(1267), - [anon_sym_move] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_u256] = ACTIONS(1253), + [anon_sym_i256] = ACTIONS(1253), + [anon_sym_b256] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_contract] = ACTIONS(1253), + [anon_sym_script] = ACTIONS(1253), + [anon_sym_predicate] = ACTIONS(1253), + [anon_sym_library] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_abi] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_configurable] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_storage] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1253), + [anon_sym_move] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1251), + [aux_sym_string_literal_token1] = ACTIONS(1251), + [sym_char_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym_raw_string_literal] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), + [sym_self] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1251), + [sym_raw_string_literal] = ACTIONS(1251), + [sym_float_literal] = ACTIONS(1251), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_u256] = ACTIONS(1271), - [anon_sym_i256] = ACTIONS(1271), - [anon_sym_b256] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_contract] = ACTIONS(1271), - [anon_sym_script] = ACTIONS(1271), - [anon_sym_predicate] = ACTIONS(1271), - [anon_sym_library] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_abi] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_configurable] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_storage] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_yield] = ACTIONS(1271), - [anon_sym_move] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_u8] = ACTIONS(1257), + [anon_sym_i8] = ACTIONS(1257), + [anon_sym_u16] = ACTIONS(1257), + [anon_sym_i16] = ACTIONS(1257), + [anon_sym_u32] = ACTIONS(1257), + [anon_sym_i32] = ACTIONS(1257), + [anon_sym_u64] = ACTIONS(1257), + [anon_sym_i64] = ACTIONS(1257), + [anon_sym_u128] = ACTIONS(1257), + [anon_sym_i128] = ACTIONS(1257), + [anon_sym_u256] = ACTIONS(1257), + [anon_sym_i256] = ACTIONS(1257), + [anon_sym_b256] = ACTIONS(1257), + [anon_sym_isize] = ACTIONS(1257), + [anon_sym_usize] = ACTIONS(1257), + [anon_sym_f32] = ACTIONS(1257), + [anon_sym_f64] = ACTIONS(1257), + [anon_sym_bool] = ACTIONS(1257), + [anon_sym_char] = ACTIONS(1257), + [anon_sym_str] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_contract] = ACTIONS(1257), + [anon_sym_script] = ACTIONS(1257), + [anon_sym_predicate] = ACTIONS(1257), + [anon_sym_library] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_abi] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_configurable] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_default] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_fn] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_impl] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_pub] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_storage] = ACTIONS(1257), + [anon_sym_struct] = ACTIONS(1257), + [anon_sym_trait] = ACTIONS(1257), + [anon_sym_type] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_move] = ACTIONS(1257), + [sym_integer_literal] = ACTIONS(1255), + [aux_sym_string_literal_token1] = ACTIONS(1255), + [sym_char_literal] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym_raw_string_literal] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), + [sym_self] = ACTIONS(1257), + [sym_metavariable] = ACTIONS(1255), + [sym_raw_string_literal] = ACTIONS(1255), + [sym_float_literal] = ACTIONS(1255), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_u256] = ACTIONS(1275), - [anon_sym_i256] = ACTIONS(1275), - [anon_sym_b256] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_contract] = ACTIONS(1275), - [anon_sym_script] = ACTIONS(1275), - [anon_sym_predicate] = ACTIONS(1275), - [anon_sym_library] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_abi] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_configurable] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_storage] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_yield] = ACTIONS(1275), - [anon_sym_move] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_u8] = ACTIONS(1261), + [anon_sym_i8] = ACTIONS(1261), + [anon_sym_u16] = ACTIONS(1261), + [anon_sym_i16] = ACTIONS(1261), + [anon_sym_u32] = ACTIONS(1261), + [anon_sym_i32] = ACTIONS(1261), + [anon_sym_u64] = ACTIONS(1261), + [anon_sym_i64] = ACTIONS(1261), + [anon_sym_u128] = ACTIONS(1261), + [anon_sym_i128] = ACTIONS(1261), + [anon_sym_u256] = ACTIONS(1261), + [anon_sym_i256] = ACTIONS(1261), + [anon_sym_b256] = ACTIONS(1261), + [anon_sym_isize] = ACTIONS(1261), + [anon_sym_usize] = ACTIONS(1261), + [anon_sym_f32] = ACTIONS(1261), + [anon_sym_f64] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_str] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_contract] = ACTIONS(1261), + [anon_sym_script] = ACTIONS(1261), + [anon_sym_predicate] = ACTIONS(1261), + [anon_sym_library] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_abi] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_configurable] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_default] = ACTIONS(1261), + [anon_sym_mod] = ACTIONS(1261), + [anon_sym_enum] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_let] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_storage] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1261), + [anon_sym_trait] = ACTIONS(1261), + [anon_sym_type] = ACTIONS(1261), + [anon_sym_use] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1261), + [anon_sym_move] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym_raw_string_literal] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), + [sym_self] = ACTIONS(1261), + [sym_metavariable] = ACTIONS(1259), + [sym_raw_string_literal] = ACTIONS(1259), + [sym_float_literal] = ACTIONS(1259), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_u256] = ACTIONS(1279), - [anon_sym_i256] = ACTIONS(1279), - [anon_sym_b256] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_contract] = ACTIONS(1279), - [anon_sym_script] = ACTIONS(1279), - [anon_sym_predicate] = ACTIONS(1279), - [anon_sym_library] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_abi] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_configurable] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_fn] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_impl] = ACTIONS(1279), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_match] = ACTIONS(1279), - [anon_sym_pub] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_storage] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_trait] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_use] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_yield] = ACTIONS(1279), - [anon_sym_move] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_u8] = ACTIONS(1265), + [anon_sym_i8] = ACTIONS(1265), + [anon_sym_u16] = ACTIONS(1265), + [anon_sym_i16] = ACTIONS(1265), + [anon_sym_u32] = ACTIONS(1265), + [anon_sym_i32] = ACTIONS(1265), + [anon_sym_u64] = ACTIONS(1265), + [anon_sym_i64] = ACTIONS(1265), + [anon_sym_u128] = ACTIONS(1265), + [anon_sym_i128] = ACTIONS(1265), + [anon_sym_u256] = ACTIONS(1265), + [anon_sym_i256] = ACTIONS(1265), + [anon_sym_b256] = ACTIONS(1265), + [anon_sym_isize] = ACTIONS(1265), + [anon_sym_usize] = ACTIONS(1265), + [anon_sym_f32] = ACTIONS(1265), + [anon_sym_f64] = ACTIONS(1265), + [anon_sym_bool] = ACTIONS(1265), + [anon_sym_char] = ACTIONS(1265), + [anon_sym_str] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_contract] = ACTIONS(1265), + [anon_sym_script] = ACTIONS(1265), + [anon_sym_predicate] = ACTIONS(1265), + [anon_sym_library] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_abi] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_configurable] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1265), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_impl] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_pub] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_storage] = ACTIONS(1265), + [anon_sym_struct] = ACTIONS(1265), + [anon_sym_trait] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_COLON_COLON] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [sym_integer_literal] = ACTIONS(1263), + [aux_sym_string_literal_token1] = ACTIONS(1263), + [sym_char_literal] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1277), - [sym_raw_string_literal] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), + [sym_self] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1263), + [sym_raw_string_literal] = ACTIONS(1263), + [sym_float_literal] = ACTIONS(1263), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_identifier] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_u8] = ACTIONS(1283), - [anon_sym_i8] = ACTIONS(1283), - [anon_sym_u16] = ACTIONS(1283), - [anon_sym_i16] = ACTIONS(1283), - [anon_sym_u32] = ACTIONS(1283), - [anon_sym_i32] = ACTIONS(1283), - [anon_sym_u64] = ACTIONS(1283), - [anon_sym_i64] = ACTIONS(1283), - [anon_sym_u128] = ACTIONS(1283), - [anon_sym_i128] = ACTIONS(1283), - [anon_sym_u256] = ACTIONS(1283), - [anon_sym_i256] = ACTIONS(1283), - [anon_sym_b256] = ACTIONS(1283), - [anon_sym_isize] = ACTIONS(1283), - [anon_sym_usize] = ACTIONS(1283), - [anon_sym_f32] = ACTIONS(1283), - [anon_sym_f64] = ACTIONS(1283), - [anon_sym_bool] = ACTIONS(1283), - [anon_sym_char] = ACTIONS(1283), - [anon_sym_str] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_contract] = ACTIONS(1283), - [anon_sym_script] = ACTIONS(1283), - [anon_sym_predicate] = ACTIONS(1283), - [anon_sym_library] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_abi] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_configurable] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_mod] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_fn] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_impl] = ACTIONS(1283), - [anon_sym_let] = ACTIONS(1283), - [anon_sym_match] = ACTIONS(1283), - [anon_sym_pub] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_storage] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_trait] = ACTIONS(1283), - [anon_sym_type] = ACTIONS(1283), - [anon_sym_use] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_POUND] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_move] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1281), - [aux_sym_string_literal_token1] = ACTIONS(1281), - [sym_char_literal] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(1283), - [anon_sym_false] = ACTIONS(1283), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_u256] = ACTIONS(1269), + [anon_sym_i256] = ACTIONS(1269), + [anon_sym_b256] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_contract] = ACTIONS(1269), + [anon_sym_script] = ACTIONS(1269), + [anon_sym_predicate] = ACTIONS(1269), + [anon_sym_library] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_abi] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_configurable] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_mod] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_impl] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_pub] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_storage] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1269), + [anon_sym_trait] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_use] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_COLON_COLON] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [sym_integer_literal] = ACTIONS(1267), + [aux_sym_string_literal_token1] = ACTIONS(1267), + [sym_char_literal] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1283), - [sym_metavariable] = ACTIONS(1281), - [sym_raw_string_literal] = ACTIONS(1281), - [sym_float_literal] = ACTIONS(1281), + [sym_self] = ACTIONS(1269), + [sym_metavariable] = ACTIONS(1267), + [sym_raw_string_literal] = ACTIONS(1267), + [sym_float_literal] = ACTIONS(1267), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_u8] = ACTIONS(1287), - [anon_sym_i8] = ACTIONS(1287), - [anon_sym_u16] = ACTIONS(1287), - [anon_sym_i16] = ACTIONS(1287), - [anon_sym_u32] = ACTIONS(1287), - [anon_sym_i32] = ACTIONS(1287), - [anon_sym_u64] = ACTIONS(1287), - [anon_sym_i64] = ACTIONS(1287), - [anon_sym_u128] = ACTIONS(1287), - [anon_sym_i128] = ACTIONS(1287), - [anon_sym_u256] = ACTIONS(1287), - [anon_sym_i256] = ACTIONS(1287), - [anon_sym_b256] = ACTIONS(1287), - [anon_sym_isize] = ACTIONS(1287), - [anon_sym_usize] = ACTIONS(1287), - [anon_sym_f32] = ACTIONS(1287), - [anon_sym_f64] = ACTIONS(1287), - [anon_sym_bool] = ACTIONS(1287), - [anon_sym_char] = ACTIONS(1287), - [anon_sym_str] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_contract] = ACTIONS(1287), - [anon_sym_script] = ACTIONS(1287), - [anon_sym_predicate] = ACTIONS(1287), - [anon_sym_library] = ACTIONS(1287), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_abi] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_configurable] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_mod] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_fn] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_impl] = ACTIONS(1287), - [anon_sym_let] = ACTIONS(1287), - [anon_sym_match] = ACTIONS(1287), - [anon_sym_pub] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_storage] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_trait] = ACTIONS(1287), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_use] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_DOT_DOT] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_move] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [aux_sym_string_literal_token1] = ACTIONS(1285), - [sym_char_literal] = ACTIONS(1285), - [anon_sym_true] = ACTIONS(1287), - [anon_sym_false] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1271), + [sym_identifier] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_u256] = ACTIONS(1273), + [anon_sym_i256] = ACTIONS(1273), + [anon_sym_b256] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_contract] = ACTIONS(1273), + [anon_sym_script] = ACTIONS(1273), + [anon_sym_predicate] = ACTIONS(1273), + [anon_sym_library] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_abi] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_configurable] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_mod] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_fn] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_impl] = ACTIONS(1273), + [anon_sym_let] = ACTIONS(1273), + [anon_sym_match] = ACTIONS(1273), + [anon_sym_pub] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_storage] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_trait] = ACTIONS(1273), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_use] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_COLON_COLON] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1273), + [anon_sym_move] = ACTIONS(1273), + [sym_integer_literal] = ACTIONS(1271), + [aux_sym_string_literal_token1] = ACTIONS(1271), + [sym_char_literal] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1273), + [anon_sym_false] = ACTIONS(1273), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1287), - [sym_metavariable] = ACTIONS(1285), - [sym_raw_string_literal] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1285), + [sym_self] = ACTIONS(1273), + [sym_metavariable] = ACTIONS(1271), + [sym_raw_string_literal] = ACTIONS(1271), + [sym_float_literal] = ACTIONS(1271), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1289), - [sym_identifier] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_u8] = ACTIONS(1291), - [anon_sym_i8] = ACTIONS(1291), - [anon_sym_u16] = ACTIONS(1291), - [anon_sym_i16] = ACTIONS(1291), - [anon_sym_u32] = ACTIONS(1291), - [anon_sym_i32] = ACTIONS(1291), - [anon_sym_u64] = ACTIONS(1291), - [anon_sym_i64] = ACTIONS(1291), - [anon_sym_u128] = ACTIONS(1291), - [anon_sym_i128] = ACTIONS(1291), - [anon_sym_u256] = ACTIONS(1291), - [anon_sym_i256] = ACTIONS(1291), - [anon_sym_b256] = ACTIONS(1291), - [anon_sym_isize] = ACTIONS(1291), - [anon_sym_usize] = ACTIONS(1291), - [anon_sym_f32] = ACTIONS(1291), - [anon_sym_f64] = ACTIONS(1291), - [anon_sym_bool] = ACTIONS(1291), - [anon_sym_char] = ACTIONS(1291), - [anon_sym_str] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_contract] = ACTIONS(1291), - [anon_sym_script] = ACTIONS(1291), - [anon_sym_predicate] = ACTIONS(1291), - [anon_sym_library] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_abi] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_configurable] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_mod] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_impl] = ACTIONS(1291), - [anon_sym_let] = ACTIONS(1291), - [anon_sym_match] = ACTIONS(1291), - [anon_sym_pub] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_storage] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_trait] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_use] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_COLON_COLON] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_yield] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1289), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), + [ts_builtin_sym_end] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_u8] = ACTIONS(1277), + [anon_sym_i8] = ACTIONS(1277), + [anon_sym_u16] = ACTIONS(1277), + [anon_sym_i16] = ACTIONS(1277), + [anon_sym_u32] = ACTIONS(1277), + [anon_sym_i32] = ACTIONS(1277), + [anon_sym_u64] = ACTIONS(1277), + [anon_sym_i64] = ACTIONS(1277), + [anon_sym_u128] = ACTIONS(1277), + [anon_sym_i128] = ACTIONS(1277), + [anon_sym_u256] = ACTIONS(1277), + [anon_sym_i256] = ACTIONS(1277), + [anon_sym_b256] = ACTIONS(1277), + [anon_sym_isize] = ACTIONS(1277), + [anon_sym_usize] = ACTIONS(1277), + [anon_sym_f32] = ACTIONS(1277), + [anon_sym_f64] = ACTIONS(1277), + [anon_sym_bool] = ACTIONS(1277), + [anon_sym_char] = ACTIONS(1277), + [anon_sym_str] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_contract] = ACTIONS(1277), + [anon_sym_script] = ACTIONS(1277), + [anon_sym_predicate] = ACTIONS(1277), + [anon_sym_library] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_abi] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_configurable] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_mod] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1277), + [anon_sym_fn] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_impl] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_pub] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_storage] = ACTIONS(1277), + [anon_sym_struct] = ACTIONS(1277), + [anon_sym_trait] = ACTIONS(1277), + [anon_sym_type] = ACTIONS(1277), + [anon_sym_use] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_COLON_COLON] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1277), + [anon_sym_move] = ACTIONS(1277), + [sym_integer_literal] = ACTIONS(1275), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1291), - [sym_metavariable] = ACTIONS(1289), - [sym_raw_string_literal] = ACTIONS(1289), - [sym_float_literal] = ACTIONS(1289), + [sym_self] = ACTIONS(1277), + [sym_metavariable] = ACTIONS(1275), + [sym_raw_string_literal] = ACTIONS(1275), + [sym_float_literal] = ACTIONS(1275), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_u256] = ACTIONS(1295), - [anon_sym_i256] = ACTIONS(1295), - [anon_sym_b256] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1293), - [anon_sym_contract] = ACTIONS(1295), - [anon_sym_script] = ACTIONS(1295), - [anon_sym_predicate] = ACTIONS(1295), - [anon_sym_library] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_abi] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_configurable] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_mod] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_fn] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_impl] = ACTIONS(1295), - [anon_sym_let] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1295), - [anon_sym_pub] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_storage] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_trait] = ACTIONS(1295), - [anon_sym_type] = ACTIONS(1295), - [anon_sym_use] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_POUND] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_COLON_COLON] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym_DOT_DOT] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1293), - [anon_sym_yield] = ACTIONS(1295), - [anon_sym_move] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [aux_sym_string_literal_token1] = ACTIONS(1293), - [sym_char_literal] = ACTIONS(1293), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), + [ts_builtin_sym_end] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_u8] = ACTIONS(1281), + [anon_sym_i8] = ACTIONS(1281), + [anon_sym_u16] = ACTIONS(1281), + [anon_sym_i16] = ACTIONS(1281), + [anon_sym_u32] = ACTIONS(1281), + [anon_sym_i32] = ACTIONS(1281), + [anon_sym_u64] = ACTIONS(1281), + [anon_sym_i64] = ACTIONS(1281), + [anon_sym_u128] = ACTIONS(1281), + [anon_sym_i128] = ACTIONS(1281), + [anon_sym_u256] = ACTIONS(1281), + [anon_sym_i256] = ACTIONS(1281), + [anon_sym_b256] = ACTIONS(1281), + [anon_sym_isize] = ACTIONS(1281), + [anon_sym_usize] = ACTIONS(1281), + [anon_sym_f32] = ACTIONS(1281), + [anon_sym_f64] = ACTIONS(1281), + [anon_sym_bool] = ACTIONS(1281), + [anon_sym_char] = ACTIONS(1281), + [anon_sym_str] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_contract] = ACTIONS(1281), + [anon_sym_script] = ACTIONS(1281), + [anon_sym_predicate] = ACTIONS(1281), + [anon_sym_library] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_abi] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_configurable] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_mod] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_fn] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_impl] = ACTIONS(1281), + [anon_sym_let] = ACTIONS(1281), + [anon_sym_match] = ACTIONS(1281), + [anon_sym_pub] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_storage] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_trait] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1281), + [anon_sym_use] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_COLON_COLON] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1281), + [anon_sym_move] = ACTIONS(1281), + [sym_integer_literal] = ACTIONS(1279), + [aux_sym_string_literal_token1] = ACTIONS(1279), + [sym_char_literal] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1281), + [anon_sym_false] = ACTIONS(1281), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1293), - [sym_raw_string_literal] = ACTIONS(1293), - [sym_float_literal] = ACTIONS(1293), + [sym_self] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1279), + [sym_raw_string_literal] = ACTIONS(1279), + [sym_float_literal] = ACTIONS(1279), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_u256] = ACTIONS(1299), - [anon_sym_i256] = ACTIONS(1299), - [anon_sym_b256] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_contract] = ACTIONS(1299), - [anon_sym_script] = ACTIONS(1299), - [anon_sym_predicate] = ACTIONS(1299), - [anon_sym_library] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_abi] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_configurable] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_mod] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_let] = ACTIONS(1299), - [anon_sym_match] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_storage] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_trait] = ACTIONS(1299), - [anon_sym_type] = ACTIONS(1299), - [anon_sym_use] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1297), - [anon_sym_yield] = ACTIONS(1299), - [anon_sym_move] = ACTIONS(1299), - [sym_integer_literal] = ACTIONS(1297), - [aux_sym_string_literal_token1] = ACTIONS(1297), - [sym_char_literal] = ACTIONS(1297), - [anon_sym_true] = ACTIONS(1299), - [anon_sym_false] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_u8] = ACTIONS(1285), + [anon_sym_i8] = ACTIONS(1285), + [anon_sym_u16] = ACTIONS(1285), + [anon_sym_i16] = ACTIONS(1285), + [anon_sym_u32] = ACTIONS(1285), + [anon_sym_i32] = ACTIONS(1285), + [anon_sym_u64] = ACTIONS(1285), + [anon_sym_i64] = ACTIONS(1285), + [anon_sym_u128] = ACTIONS(1285), + [anon_sym_i128] = ACTIONS(1285), + [anon_sym_u256] = ACTIONS(1285), + [anon_sym_i256] = ACTIONS(1285), + [anon_sym_b256] = ACTIONS(1285), + [anon_sym_isize] = ACTIONS(1285), + [anon_sym_usize] = ACTIONS(1285), + [anon_sym_f32] = ACTIONS(1285), + [anon_sym_f64] = ACTIONS(1285), + [anon_sym_bool] = ACTIONS(1285), + [anon_sym_char] = ACTIONS(1285), + [anon_sym_str] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_contract] = ACTIONS(1285), + [anon_sym_script] = ACTIONS(1285), + [anon_sym_predicate] = ACTIONS(1285), + [anon_sym_library] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_abi] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_configurable] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_mod] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1285), + [anon_sym_fn] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_impl] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1285), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_pub] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_storage] = ACTIONS(1285), + [anon_sym_struct] = ACTIONS(1285), + [anon_sym_trait] = ACTIONS(1285), + [anon_sym_type] = ACTIONS(1285), + [anon_sym_use] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1285), + [anon_sym_move] = ACTIONS(1285), + [sym_integer_literal] = ACTIONS(1283), + [aux_sym_string_literal_token1] = ACTIONS(1283), + [sym_char_literal] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1285), + [anon_sym_false] = ACTIONS(1285), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1299), - [sym_metavariable] = ACTIONS(1297), - [sym_raw_string_literal] = ACTIONS(1297), - [sym_float_literal] = ACTIONS(1297), + [sym_self] = ACTIONS(1285), + [sym_metavariable] = ACTIONS(1283), + [sym_raw_string_literal] = ACTIONS(1283), + [sym_float_literal] = ACTIONS(1283), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_u8] = ACTIONS(1303), - [anon_sym_i8] = ACTIONS(1303), - [anon_sym_u16] = ACTIONS(1303), - [anon_sym_i16] = ACTIONS(1303), - [anon_sym_u32] = ACTIONS(1303), - [anon_sym_i32] = ACTIONS(1303), - [anon_sym_u64] = ACTIONS(1303), - [anon_sym_i64] = ACTIONS(1303), - [anon_sym_u128] = ACTIONS(1303), - [anon_sym_i128] = ACTIONS(1303), - [anon_sym_u256] = ACTIONS(1303), - [anon_sym_i256] = ACTIONS(1303), - [anon_sym_b256] = ACTIONS(1303), - [anon_sym_isize] = ACTIONS(1303), - [anon_sym_usize] = ACTIONS(1303), - [anon_sym_f32] = ACTIONS(1303), - [anon_sym_f64] = ACTIONS(1303), - [anon_sym_bool] = ACTIONS(1303), - [anon_sym_char] = ACTIONS(1303), - [anon_sym_str] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_contract] = ACTIONS(1303), - [anon_sym_script] = ACTIONS(1303), - [anon_sym_predicate] = ACTIONS(1303), - [anon_sym_library] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_abi] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_configurable] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_mod] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_fn] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1303), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_match] = ACTIONS(1303), - [anon_sym_pub] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_storage] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_trait] = ACTIONS(1303), - [anon_sym_type] = ACTIONS(1303), - [anon_sym_use] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_COLON_COLON] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(1303), - [anon_sym_move] = ACTIONS(1303), - [sym_integer_literal] = ACTIONS(1301), - [aux_sym_string_literal_token1] = ACTIONS(1301), - [sym_char_literal] = ACTIONS(1301), - [anon_sym_true] = ACTIONS(1303), - [anon_sym_false] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_u8] = ACTIONS(1289), + [anon_sym_i8] = ACTIONS(1289), + [anon_sym_u16] = ACTIONS(1289), + [anon_sym_i16] = ACTIONS(1289), + [anon_sym_u32] = ACTIONS(1289), + [anon_sym_i32] = ACTIONS(1289), + [anon_sym_u64] = ACTIONS(1289), + [anon_sym_i64] = ACTIONS(1289), + [anon_sym_u128] = ACTIONS(1289), + [anon_sym_i128] = ACTIONS(1289), + [anon_sym_u256] = ACTIONS(1289), + [anon_sym_i256] = ACTIONS(1289), + [anon_sym_b256] = ACTIONS(1289), + [anon_sym_isize] = ACTIONS(1289), + [anon_sym_usize] = ACTIONS(1289), + [anon_sym_f32] = ACTIONS(1289), + [anon_sym_f64] = ACTIONS(1289), + [anon_sym_bool] = ACTIONS(1289), + [anon_sym_char] = ACTIONS(1289), + [anon_sym_str] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_contract] = ACTIONS(1289), + [anon_sym_script] = ACTIONS(1289), + [anon_sym_predicate] = ACTIONS(1289), + [anon_sym_library] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_abi] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_configurable] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_mod] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_fn] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_impl] = ACTIONS(1289), + [anon_sym_let] = ACTIONS(1289), + [anon_sym_match] = ACTIONS(1289), + [anon_sym_pub] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_storage] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_trait] = ACTIONS(1289), + [anon_sym_type] = ACTIONS(1289), + [anon_sym_use] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1289), + [anon_sym_move] = ACTIONS(1289), + [sym_integer_literal] = ACTIONS(1287), + [aux_sym_string_literal_token1] = ACTIONS(1287), + [sym_char_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1289), + [anon_sym_false] = ACTIONS(1289), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1303), - [sym_metavariable] = ACTIONS(1301), - [sym_raw_string_literal] = ACTIONS(1301), - [sym_float_literal] = ACTIONS(1301), + [sym_self] = ACTIONS(1289), + [sym_metavariable] = ACTIONS(1287), + [sym_raw_string_literal] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1287), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_u8] = ACTIONS(1307), - [anon_sym_i8] = ACTIONS(1307), - [anon_sym_u16] = ACTIONS(1307), - [anon_sym_i16] = ACTIONS(1307), - [anon_sym_u32] = ACTIONS(1307), - [anon_sym_i32] = ACTIONS(1307), - [anon_sym_u64] = ACTIONS(1307), - [anon_sym_i64] = ACTIONS(1307), - [anon_sym_u128] = ACTIONS(1307), - [anon_sym_i128] = ACTIONS(1307), - [anon_sym_u256] = ACTIONS(1307), - [anon_sym_i256] = ACTIONS(1307), - [anon_sym_b256] = ACTIONS(1307), - [anon_sym_isize] = ACTIONS(1307), - [anon_sym_usize] = ACTIONS(1307), - [anon_sym_f32] = ACTIONS(1307), - [anon_sym_f64] = ACTIONS(1307), - [anon_sym_bool] = ACTIONS(1307), - [anon_sym_char] = ACTIONS(1307), - [anon_sym_str] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_contract] = ACTIONS(1307), - [anon_sym_script] = ACTIONS(1307), - [anon_sym_predicate] = ACTIONS(1307), - [anon_sym_library] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_abi] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_configurable] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_mod] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_match] = ACTIONS(1307), - [anon_sym_pub] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_storage] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_trait] = ACTIONS(1307), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_use] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_COLON_COLON] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_yield] = ACTIONS(1307), - [anon_sym_move] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1305), - [aux_sym_string_literal_token1] = ACTIONS(1305), - [sym_char_literal] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), + [ts_builtin_sym_end] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_u8] = ACTIONS(1293), + [anon_sym_i8] = ACTIONS(1293), + [anon_sym_u16] = ACTIONS(1293), + [anon_sym_i16] = ACTIONS(1293), + [anon_sym_u32] = ACTIONS(1293), + [anon_sym_i32] = ACTIONS(1293), + [anon_sym_u64] = ACTIONS(1293), + [anon_sym_i64] = ACTIONS(1293), + [anon_sym_u128] = ACTIONS(1293), + [anon_sym_i128] = ACTIONS(1293), + [anon_sym_u256] = ACTIONS(1293), + [anon_sym_i256] = ACTIONS(1293), + [anon_sym_b256] = ACTIONS(1293), + [anon_sym_isize] = ACTIONS(1293), + [anon_sym_usize] = ACTIONS(1293), + [anon_sym_f32] = ACTIONS(1293), + [anon_sym_f64] = ACTIONS(1293), + [anon_sym_bool] = ACTIONS(1293), + [anon_sym_char] = ACTIONS(1293), + [anon_sym_str] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_contract] = ACTIONS(1293), + [anon_sym_script] = ACTIONS(1293), + [anon_sym_predicate] = ACTIONS(1293), + [anon_sym_library] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_abi] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_configurable] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_mod] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_fn] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_impl] = ACTIONS(1293), + [anon_sym_let] = ACTIONS(1293), + [anon_sym_match] = ACTIONS(1293), + [anon_sym_pub] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_storage] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_trait] = ACTIONS(1293), + [anon_sym_type] = ACTIONS(1293), + [anon_sym_use] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1293), + [anon_sym_move] = ACTIONS(1293), + [sym_integer_literal] = ACTIONS(1291), + [aux_sym_string_literal_token1] = ACTIONS(1291), + [sym_char_literal] = ACTIONS(1291), + [anon_sym_true] = ACTIONS(1293), + [anon_sym_false] = ACTIONS(1293), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1307), - [sym_metavariable] = ACTIONS(1305), - [sym_raw_string_literal] = ACTIONS(1305), - [sym_float_literal] = ACTIONS(1305), + [sym_self] = ACTIONS(1293), + [sym_metavariable] = ACTIONS(1291), + [sym_raw_string_literal] = ACTIONS(1291), + [sym_float_literal] = ACTIONS(1291), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_u8] = ACTIONS(1311), - [anon_sym_i8] = ACTIONS(1311), - [anon_sym_u16] = ACTIONS(1311), - [anon_sym_i16] = ACTIONS(1311), - [anon_sym_u32] = ACTIONS(1311), - [anon_sym_i32] = ACTIONS(1311), - [anon_sym_u64] = ACTIONS(1311), - [anon_sym_i64] = ACTIONS(1311), - [anon_sym_u128] = ACTIONS(1311), - [anon_sym_i128] = ACTIONS(1311), - [anon_sym_u256] = ACTIONS(1311), - [anon_sym_i256] = ACTIONS(1311), - [anon_sym_b256] = ACTIONS(1311), - [anon_sym_isize] = ACTIONS(1311), - [anon_sym_usize] = ACTIONS(1311), - [anon_sym_f32] = ACTIONS(1311), - [anon_sym_f64] = ACTIONS(1311), - [anon_sym_bool] = ACTIONS(1311), - [anon_sym_char] = ACTIONS(1311), - [anon_sym_str] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_contract] = ACTIONS(1311), - [anon_sym_script] = ACTIONS(1311), - [anon_sym_predicate] = ACTIONS(1311), - [anon_sym_library] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_abi] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_configurable] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_mod] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_fn] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_pub] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_storage] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_trait] = ACTIONS(1311), - [anon_sym_type] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_yield] = ACTIONS(1311), - [anon_sym_move] = ACTIONS(1311), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1309), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_u256] = ACTIONS(1297), + [anon_sym_i256] = ACTIONS(1297), + [anon_sym_b256] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_contract] = ACTIONS(1297), + [anon_sym_script] = ACTIONS(1297), + [anon_sym_predicate] = ACTIONS(1297), + [anon_sym_library] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_abi] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_configurable] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_mod] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_impl] = ACTIONS(1297), + [anon_sym_let] = ACTIONS(1297), + [anon_sym_match] = ACTIONS(1297), + [anon_sym_pub] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_storage] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_trait] = ACTIONS(1297), + [anon_sym_type] = ACTIONS(1297), + [anon_sym_use] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_COLON_COLON] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1297), + [anon_sym_move] = ACTIONS(1297), + [sym_integer_literal] = ACTIONS(1295), + [aux_sym_string_literal_token1] = ACTIONS(1295), + [sym_char_literal] = ACTIONS(1295), + [anon_sym_true] = ACTIONS(1297), + [anon_sym_false] = ACTIONS(1297), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1309), - [sym_raw_string_literal] = ACTIONS(1309), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1297), + [sym_metavariable] = ACTIONS(1295), + [sym_raw_string_literal] = ACTIONS(1295), + [sym_float_literal] = ACTIONS(1295), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_u8] = ACTIONS(1315), - [anon_sym_i8] = ACTIONS(1315), - [anon_sym_u16] = ACTIONS(1315), - [anon_sym_i16] = ACTIONS(1315), - [anon_sym_u32] = ACTIONS(1315), - [anon_sym_i32] = ACTIONS(1315), - [anon_sym_u64] = ACTIONS(1315), - [anon_sym_i64] = ACTIONS(1315), - [anon_sym_u128] = ACTIONS(1315), - [anon_sym_i128] = ACTIONS(1315), - [anon_sym_u256] = ACTIONS(1315), - [anon_sym_i256] = ACTIONS(1315), - [anon_sym_b256] = ACTIONS(1315), - [anon_sym_isize] = ACTIONS(1315), - [anon_sym_usize] = ACTIONS(1315), - [anon_sym_f32] = ACTIONS(1315), - [anon_sym_f64] = ACTIONS(1315), - [anon_sym_bool] = ACTIONS(1315), - [anon_sym_char] = ACTIONS(1315), - [anon_sym_str] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_contract] = ACTIONS(1315), - [anon_sym_script] = ACTIONS(1315), - [anon_sym_predicate] = ACTIONS(1315), - [anon_sym_library] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_abi] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_configurable] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_mod] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_fn] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_impl] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), - [anon_sym_pub] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_storage] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_trait] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1313), - [anon_sym_COLON_COLON] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_yield] = ACTIONS(1315), - [anon_sym_move] = ACTIONS(1315), - [sym_integer_literal] = ACTIONS(1313), - [aux_sym_string_literal_token1] = ACTIONS(1313), - [sym_char_literal] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_u8] = ACTIONS(1301), + [anon_sym_i8] = ACTIONS(1301), + [anon_sym_u16] = ACTIONS(1301), + [anon_sym_i16] = ACTIONS(1301), + [anon_sym_u32] = ACTIONS(1301), + [anon_sym_i32] = ACTIONS(1301), + [anon_sym_u64] = ACTIONS(1301), + [anon_sym_i64] = ACTIONS(1301), + [anon_sym_u128] = ACTIONS(1301), + [anon_sym_i128] = ACTIONS(1301), + [anon_sym_u256] = ACTIONS(1301), + [anon_sym_i256] = ACTIONS(1301), + [anon_sym_b256] = ACTIONS(1301), + [anon_sym_isize] = ACTIONS(1301), + [anon_sym_usize] = ACTIONS(1301), + [anon_sym_f32] = ACTIONS(1301), + [anon_sym_f64] = ACTIONS(1301), + [anon_sym_bool] = ACTIONS(1301), + [anon_sym_char] = ACTIONS(1301), + [anon_sym_str] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_contract] = ACTIONS(1301), + [anon_sym_script] = ACTIONS(1301), + [anon_sym_predicate] = ACTIONS(1301), + [anon_sym_library] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_abi] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_configurable] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_mod] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_impl] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_match] = ACTIONS(1301), + [anon_sym_pub] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_storage] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_trait] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_use] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_COLON_COLON] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1301), + [anon_sym_move] = ACTIONS(1301), + [sym_integer_literal] = ACTIONS(1299), + [aux_sym_string_literal_token1] = ACTIONS(1299), + [sym_char_literal] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1301), + [anon_sym_false] = ACTIONS(1301), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1313), - [sym_raw_string_literal] = ACTIONS(1313), - [sym_float_literal] = ACTIONS(1313), + [sym_self] = ACTIONS(1301), + [sym_metavariable] = ACTIONS(1299), + [sym_raw_string_literal] = ACTIONS(1299), + [sym_float_literal] = ACTIONS(1299), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_u8] = ACTIONS(1319), - [anon_sym_i8] = ACTIONS(1319), - [anon_sym_u16] = ACTIONS(1319), - [anon_sym_i16] = ACTIONS(1319), - [anon_sym_u32] = ACTIONS(1319), - [anon_sym_i32] = ACTIONS(1319), - [anon_sym_u64] = ACTIONS(1319), - [anon_sym_i64] = ACTIONS(1319), - [anon_sym_u128] = ACTIONS(1319), - [anon_sym_i128] = ACTIONS(1319), - [anon_sym_u256] = ACTIONS(1319), - [anon_sym_i256] = ACTIONS(1319), - [anon_sym_b256] = ACTIONS(1319), - [anon_sym_isize] = ACTIONS(1319), - [anon_sym_usize] = ACTIONS(1319), - [anon_sym_f32] = ACTIONS(1319), - [anon_sym_f64] = ACTIONS(1319), - [anon_sym_bool] = ACTIONS(1319), - [anon_sym_char] = ACTIONS(1319), - [anon_sym_str] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_contract] = ACTIONS(1319), - [anon_sym_script] = ACTIONS(1319), - [anon_sym_predicate] = ACTIONS(1319), - [anon_sym_library] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_abi] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_configurable] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_mod] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_fn] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_impl] = ACTIONS(1319), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_match] = ACTIONS(1319), - [anon_sym_pub] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_storage] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_trait] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_use] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1317), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1317), - [anon_sym_yield] = ACTIONS(1319), - [anon_sym_move] = ACTIONS(1319), - [sym_integer_literal] = ACTIONS(1317), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [ts_builtin_sym_end] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_u256] = ACTIONS(1305), + [anon_sym_i256] = ACTIONS(1305), + [anon_sym_b256] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_contract] = ACTIONS(1305), + [anon_sym_script] = ACTIONS(1305), + [anon_sym_predicate] = ACTIONS(1305), + [anon_sym_library] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_abi] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_configurable] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_mod] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_let] = ACTIONS(1305), + [anon_sym_match] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_storage] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_trait] = ACTIONS(1305), + [anon_sym_type] = ACTIONS(1305), + [anon_sym_use] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_POUND] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_move] = ACTIONS(1305), + [sym_integer_literal] = ACTIONS(1303), + [aux_sym_string_literal_token1] = ACTIONS(1303), + [sym_char_literal] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1305), + [anon_sym_false] = ACTIONS(1305), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1319), - [sym_metavariable] = ACTIONS(1317), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_float_literal] = ACTIONS(1317), + [sym_self] = ACTIONS(1305), + [sym_metavariable] = ACTIONS(1303), + [sym_raw_string_literal] = ACTIONS(1303), + [sym_float_literal] = ACTIONS(1303), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_u8] = ACTIONS(1323), - [anon_sym_i8] = ACTIONS(1323), - [anon_sym_u16] = ACTIONS(1323), - [anon_sym_i16] = ACTIONS(1323), - [anon_sym_u32] = ACTIONS(1323), - [anon_sym_i32] = ACTIONS(1323), - [anon_sym_u64] = ACTIONS(1323), - [anon_sym_i64] = ACTIONS(1323), - [anon_sym_u128] = ACTIONS(1323), - [anon_sym_i128] = ACTIONS(1323), - [anon_sym_u256] = ACTIONS(1323), - [anon_sym_i256] = ACTIONS(1323), - [anon_sym_b256] = ACTIONS(1323), - [anon_sym_isize] = ACTIONS(1323), - [anon_sym_usize] = ACTIONS(1323), - [anon_sym_f32] = ACTIONS(1323), - [anon_sym_f64] = ACTIONS(1323), - [anon_sym_bool] = ACTIONS(1323), - [anon_sym_char] = ACTIONS(1323), - [anon_sym_str] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_contract] = ACTIONS(1323), - [anon_sym_script] = ACTIONS(1323), - [anon_sym_predicate] = ACTIONS(1323), - [anon_sym_library] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_abi] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_configurable] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_mod] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_impl] = ACTIONS(1323), - [anon_sym_let] = ACTIONS(1323), - [anon_sym_match] = ACTIONS(1323), - [anon_sym_pub] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_storage] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_trait] = ACTIONS(1323), - [anon_sym_type] = ACTIONS(1323), - [anon_sym_use] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_COLON_COLON] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_DOT_DOT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_yield] = ACTIONS(1323), - [anon_sym_move] = ACTIONS(1323), - [sym_integer_literal] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [sym_char_literal] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_u256] = ACTIONS(1309), + [anon_sym_i256] = ACTIONS(1309), + [anon_sym_b256] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_contract] = ACTIONS(1309), + [anon_sym_script] = ACTIONS(1309), + [anon_sym_predicate] = ACTIONS(1309), + [anon_sym_library] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_abi] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_configurable] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_mod] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_pub] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_storage] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_trait] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_use] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_yield] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [sym_integer_literal] = ACTIONS(1307), + [aux_sym_string_literal_token1] = ACTIONS(1307), + [sym_char_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1321), - [sym_raw_string_literal] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1321), + [sym_self] = ACTIONS(1309), + [sym_metavariable] = ACTIONS(1307), + [sym_raw_string_literal] = ACTIONS(1307), + [sym_float_literal] = ACTIONS(1307), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_u8] = ACTIONS(1327), - [anon_sym_i8] = ACTIONS(1327), - [anon_sym_u16] = ACTIONS(1327), - [anon_sym_i16] = ACTIONS(1327), - [anon_sym_u32] = ACTIONS(1327), - [anon_sym_i32] = ACTIONS(1327), - [anon_sym_u64] = ACTIONS(1327), - [anon_sym_i64] = ACTIONS(1327), - [anon_sym_u128] = ACTIONS(1327), - [anon_sym_i128] = ACTIONS(1327), - [anon_sym_u256] = ACTIONS(1327), - [anon_sym_i256] = ACTIONS(1327), - [anon_sym_b256] = ACTIONS(1327), - [anon_sym_isize] = ACTIONS(1327), - [anon_sym_usize] = ACTIONS(1327), - [anon_sym_f32] = ACTIONS(1327), - [anon_sym_f64] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [anon_sym_char] = ACTIONS(1327), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_contract] = ACTIONS(1327), - [anon_sym_script] = ACTIONS(1327), - [anon_sym_predicate] = ACTIONS(1327), - [anon_sym_library] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_abi] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_configurable] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_mod] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_fn] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1327), - [anon_sym_let] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1327), - [anon_sym_pub] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_storage] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_trait] = ACTIONS(1327), - [anon_sym_type] = ACTIONS(1327), - [anon_sym_use] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_COLON_COLON] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_yield] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [aux_sym_string_literal_token1] = ACTIONS(1325), - [sym_char_literal] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1327), - [anon_sym_false] = ACTIONS(1327), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_u8] = ACTIONS(1313), + [anon_sym_i8] = ACTIONS(1313), + [anon_sym_u16] = ACTIONS(1313), + [anon_sym_i16] = ACTIONS(1313), + [anon_sym_u32] = ACTIONS(1313), + [anon_sym_i32] = ACTIONS(1313), + [anon_sym_u64] = ACTIONS(1313), + [anon_sym_i64] = ACTIONS(1313), + [anon_sym_u128] = ACTIONS(1313), + [anon_sym_i128] = ACTIONS(1313), + [anon_sym_u256] = ACTIONS(1313), + [anon_sym_i256] = ACTIONS(1313), + [anon_sym_b256] = ACTIONS(1313), + [anon_sym_isize] = ACTIONS(1313), + [anon_sym_usize] = ACTIONS(1313), + [anon_sym_f32] = ACTIONS(1313), + [anon_sym_f64] = ACTIONS(1313), + [anon_sym_bool] = ACTIONS(1313), + [anon_sym_char] = ACTIONS(1313), + [anon_sym_str] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_contract] = ACTIONS(1313), + [anon_sym_script] = ACTIONS(1313), + [anon_sym_predicate] = ACTIONS(1313), + [anon_sym_library] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_abi] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_configurable] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_mod] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_fn] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_impl] = ACTIONS(1313), + [anon_sym_let] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_pub] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_storage] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_trait] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_use] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_COLON_COLON] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1311), + [aux_sym_string_literal_token1] = ACTIONS(1311), + [sym_char_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1327), - [sym_metavariable] = ACTIONS(1325), - [sym_raw_string_literal] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1325), + [sym_self] = ACTIONS(1313), + [sym_metavariable] = ACTIONS(1311), + [sym_raw_string_literal] = ACTIONS(1311), + [sym_float_literal] = ACTIONS(1311), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1331), - [anon_sym_i8] = ACTIONS(1331), - [anon_sym_u16] = ACTIONS(1331), - [anon_sym_i16] = ACTIONS(1331), - [anon_sym_u32] = ACTIONS(1331), - [anon_sym_i32] = ACTIONS(1331), - [anon_sym_u64] = ACTIONS(1331), - [anon_sym_i64] = ACTIONS(1331), - [anon_sym_u128] = ACTIONS(1331), - [anon_sym_i128] = ACTIONS(1331), - [anon_sym_u256] = ACTIONS(1331), - [anon_sym_i256] = ACTIONS(1331), - [anon_sym_b256] = ACTIONS(1331), - [anon_sym_isize] = ACTIONS(1331), - [anon_sym_usize] = ACTIONS(1331), - [anon_sym_f32] = ACTIONS(1331), - [anon_sym_f64] = ACTIONS(1331), - [anon_sym_bool] = ACTIONS(1331), - [anon_sym_char] = ACTIONS(1331), - [anon_sym_str] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_contract] = ACTIONS(1331), - [anon_sym_script] = ACTIONS(1331), - [anon_sym_predicate] = ACTIONS(1331), - [anon_sym_library] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_abi] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_configurable] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_mod] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_fn] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_impl] = ACTIONS(1331), - [anon_sym_let] = ACTIONS(1331), - [anon_sym_match] = ACTIONS(1331), - [anon_sym_pub] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_storage] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_trait] = ACTIONS(1331), - [anon_sym_type] = ACTIONS(1331), - [anon_sym_use] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_yield] = ACTIONS(1331), - [anon_sym_move] = ACTIONS(1331), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1329), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), + [ts_builtin_sym_end] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_u8] = ACTIONS(1317), + [anon_sym_i8] = ACTIONS(1317), + [anon_sym_u16] = ACTIONS(1317), + [anon_sym_i16] = ACTIONS(1317), + [anon_sym_u32] = ACTIONS(1317), + [anon_sym_i32] = ACTIONS(1317), + [anon_sym_u64] = ACTIONS(1317), + [anon_sym_i64] = ACTIONS(1317), + [anon_sym_u128] = ACTIONS(1317), + [anon_sym_i128] = ACTIONS(1317), + [anon_sym_u256] = ACTIONS(1317), + [anon_sym_i256] = ACTIONS(1317), + [anon_sym_b256] = ACTIONS(1317), + [anon_sym_isize] = ACTIONS(1317), + [anon_sym_usize] = ACTIONS(1317), + [anon_sym_f32] = ACTIONS(1317), + [anon_sym_f64] = ACTIONS(1317), + [anon_sym_bool] = ACTIONS(1317), + [anon_sym_char] = ACTIONS(1317), + [anon_sym_str] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_contract] = ACTIONS(1317), + [anon_sym_script] = ACTIONS(1317), + [anon_sym_predicate] = ACTIONS(1317), + [anon_sym_library] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_abi] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_configurable] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_mod] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_fn] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_impl] = ACTIONS(1317), + [anon_sym_let] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_pub] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_storage] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_trait] = ACTIONS(1317), + [anon_sym_type] = ACTIONS(1317), + [anon_sym_use] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1317), + [anon_sym_move] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1315), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1317), + [anon_sym_false] = ACTIONS(1317), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1331), - [sym_metavariable] = ACTIONS(1329), - [sym_raw_string_literal] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), + [sym_self] = ACTIONS(1317), + [sym_metavariable] = ACTIONS(1315), + [sym_raw_string_literal] = ACTIONS(1315), + [sym_float_literal] = ACTIONS(1315), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_u256] = ACTIONS(1335), - [anon_sym_i256] = ACTIONS(1335), - [anon_sym_b256] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_contract] = ACTIONS(1335), - [anon_sym_script] = ACTIONS(1335), - [anon_sym_predicate] = ACTIONS(1335), - [anon_sym_library] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_abi] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_configurable] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_mod] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_fn] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_impl] = ACTIONS(1335), - [anon_sym_let] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1335), - [anon_sym_pub] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_storage] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_trait] = ACTIONS(1335), - [anon_sym_type] = ACTIONS(1335), - [anon_sym_use] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_COLON_COLON] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_move] = ACTIONS(1335), - [sym_integer_literal] = ACTIONS(1333), - [aux_sym_string_literal_token1] = ACTIONS(1333), - [sym_char_literal] = ACTIONS(1333), - [anon_sym_true] = ACTIONS(1335), - [anon_sym_false] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_u8] = ACTIONS(1321), + [anon_sym_i8] = ACTIONS(1321), + [anon_sym_u16] = ACTIONS(1321), + [anon_sym_i16] = ACTIONS(1321), + [anon_sym_u32] = ACTIONS(1321), + [anon_sym_i32] = ACTIONS(1321), + [anon_sym_u64] = ACTIONS(1321), + [anon_sym_i64] = ACTIONS(1321), + [anon_sym_u128] = ACTIONS(1321), + [anon_sym_i128] = ACTIONS(1321), + [anon_sym_u256] = ACTIONS(1321), + [anon_sym_i256] = ACTIONS(1321), + [anon_sym_b256] = ACTIONS(1321), + [anon_sym_isize] = ACTIONS(1321), + [anon_sym_usize] = ACTIONS(1321), + [anon_sym_f32] = ACTIONS(1321), + [anon_sym_f64] = ACTIONS(1321), + [anon_sym_bool] = ACTIONS(1321), + [anon_sym_char] = ACTIONS(1321), + [anon_sym_str] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_contract] = ACTIONS(1321), + [anon_sym_script] = ACTIONS(1321), + [anon_sym_predicate] = ACTIONS(1321), + [anon_sym_library] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_abi] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_configurable] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_mod] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_fn] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1321), + [anon_sym_let] = ACTIONS(1321), + [anon_sym_match] = ACTIONS(1321), + [anon_sym_pub] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_storage] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_trait] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_use] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1321), + [anon_sym_move] = ACTIONS(1321), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1319), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1321), + [anon_sym_false] = ACTIONS(1321), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1335), - [sym_metavariable] = ACTIONS(1333), - [sym_raw_string_literal] = ACTIONS(1333), - [sym_float_literal] = ACTIONS(1333), + [sym_self] = ACTIONS(1321), + [sym_metavariable] = ACTIONS(1319), + [sym_raw_string_literal] = ACTIONS(1319), + [sym_float_literal] = ACTIONS(1319), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_u8] = ACTIONS(1339), - [anon_sym_i8] = ACTIONS(1339), - [anon_sym_u16] = ACTIONS(1339), - [anon_sym_i16] = ACTIONS(1339), - [anon_sym_u32] = ACTIONS(1339), - [anon_sym_i32] = ACTIONS(1339), - [anon_sym_u64] = ACTIONS(1339), - [anon_sym_i64] = ACTIONS(1339), - [anon_sym_u128] = ACTIONS(1339), - [anon_sym_i128] = ACTIONS(1339), - [anon_sym_u256] = ACTIONS(1339), - [anon_sym_i256] = ACTIONS(1339), - [anon_sym_b256] = ACTIONS(1339), - [anon_sym_isize] = ACTIONS(1339), - [anon_sym_usize] = ACTIONS(1339), - [anon_sym_f32] = ACTIONS(1339), - [anon_sym_f64] = ACTIONS(1339), - [anon_sym_bool] = ACTIONS(1339), - [anon_sym_char] = ACTIONS(1339), - [anon_sym_str] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_contract] = ACTIONS(1339), - [anon_sym_script] = ACTIONS(1339), - [anon_sym_predicate] = ACTIONS(1339), - [anon_sym_library] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_abi] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_configurable] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_mod] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_impl] = ACTIONS(1339), - [anon_sym_let] = ACTIONS(1339), - [anon_sym_match] = ACTIONS(1339), - [anon_sym_pub] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_storage] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_trait] = ACTIONS(1339), - [anon_sym_type] = ACTIONS(1339), - [anon_sym_use] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_DOT_DOT] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_yield] = ACTIONS(1339), - [anon_sym_move] = ACTIONS(1339), - [sym_integer_literal] = ACTIONS(1337), - [aux_sym_string_literal_token1] = ACTIONS(1337), - [sym_char_literal] = ACTIONS(1337), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_u8] = ACTIONS(1325), + [anon_sym_i8] = ACTIONS(1325), + [anon_sym_u16] = ACTIONS(1325), + [anon_sym_i16] = ACTIONS(1325), + [anon_sym_u32] = ACTIONS(1325), + [anon_sym_i32] = ACTIONS(1325), + [anon_sym_u64] = ACTIONS(1325), + [anon_sym_i64] = ACTIONS(1325), + [anon_sym_u128] = ACTIONS(1325), + [anon_sym_i128] = ACTIONS(1325), + [anon_sym_u256] = ACTIONS(1325), + [anon_sym_i256] = ACTIONS(1325), + [anon_sym_b256] = ACTIONS(1325), + [anon_sym_isize] = ACTIONS(1325), + [anon_sym_usize] = ACTIONS(1325), + [anon_sym_f32] = ACTIONS(1325), + [anon_sym_f64] = ACTIONS(1325), + [anon_sym_bool] = ACTIONS(1325), + [anon_sym_char] = ACTIONS(1325), + [anon_sym_str] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_contract] = ACTIONS(1325), + [anon_sym_script] = ACTIONS(1325), + [anon_sym_predicate] = ACTIONS(1325), + [anon_sym_library] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_abi] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_configurable] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_mod] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_impl] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_pub] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_storage] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_trait] = ACTIONS(1325), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1325), + [anon_sym_move] = ACTIONS(1325), + [sym_integer_literal] = ACTIONS(1323), + [aux_sym_string_literal_token1] = ACTIONS(1323), + [sym_char_literal] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(1325), + [anon_sym_false] = ACTIONS(1325), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1339), - [sym_metavariable] = ACTIONS(1337), - [sym_raw_string_literal] = ACTIONS(1337), - [sym_float_literal] = ACTIONS(1337), + [sym_self] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1323), + [sym_raw_string_literal] = ACTIONS(1323), + [sym_float_literal] = ACTIONS(1323), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_u256] = ACTIONS(1343), - [anon_sym_i256] = ACTIONS(1343), - [anon_sym_b256] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_contract] = ACTIONS(1343), - [anon_sym_script] = ACTIONS(1343), - [anon_sym_predicate] = ACTIONS(1343), - [anon_sym_library] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_abi] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_configurable] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_mod] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_fn] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_impl] = ACTIONS(1343), - [anon_sym_let] = ACTIONS(1343), - [anon_sym_match] = ACTIONS(1343), - [anon_sym_pub] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_storage] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_trait] = ACTIONS(1343), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_use] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_COLON_COLON] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PIPE] = ACTIONS(1341), - [anon_sym_yield] = ACTIONS(1343), - [anon_sym_move] = ACTIONS(1343), - [sym_integer_literal] = ACTIONS(1341), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1341), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1329), + [anon_sym_i8] = ACTIONS(1329), + [anon_sym_u16] = ACTIONS(1329), + [anon_sym_i16] = ACTIONS(1329), + [anon_sym_u32] = ACTIONS(1329), + [anon_sym_i32] = ACTIONS(1329), + [anon_sym_u64] = ACTIONS(1329), + [anon_sym_i64] = ACTIONS(1329), + [anon_sym_u128] = ACTIONS(1329), + [anon_sym_i128] = ACTIONS(1329), + [anon_sym_u256] = ACTIONS(1329), + [anon_sym_i256] = ACTIONS(1329), + [anon_sym_b256] = ACTIONS(1329), + [anon_sym_isize] = ACTIONS(1329), + [anon_sym_usize] = ACTIONS(1329), + [anon_sym_f32] = ACTIONS(1329), + [anon_sym_f64] = ACTIONS(1329), + [anon_sym_bool] = ACTIONS(1329), + [anon_sym_char] = ACTIONS(1329), + [anon_sym_str] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_contract] = ACTIONS(1329), + [anon_sym_script] = ACTIONS(1329), + [anon_sym_predicate] = ACTIONS(1329), + [anon_sym_library] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_abi] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_configurable] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_mod] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1329), + [anon_sym_let] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(1329), + [anon_sym_pub] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_storage] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_trait] = ACTIONS(1329), + [anon_sym_type] = ACTIONS(1329), + [anon_sym_use] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1329), + [anon_sym_move] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [aux_sym_string_literal_token1] = ACTIONS(1327), + [sym_char_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1343), - [sym_metavariable] = ACTIONS(1341), - [sym_raw_string_literal] = ACTIONS(1341), - [sym_float_literal] = ACTIONS(1341), + [sym_self] = ACTIONS(1329), + [sym_metavariable] = ACTIONS(1327), + [sym_raw_string_literal] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1327), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_u8] = ACTIONS(1347), - [anon_sym_i8] = ACTIONS(1347), - [anon_sym_u16] = ACTIONS(1347), - [anon_sym_i16] = ACTIONS(1347), - [anon_sym_u32] = ACTIONS(1347), - [anon_sym_i32] = ACTIONS(1347), - [anon_sym_u64] = ACTIONS(1347), - [anon_sym_i64] = ACTIONS(1347), - [anon_sym_u128] = ACTIONS(1347), - [anon_sym_i128] = ACTIONS(1347), - [anon_sym_u256] = ACTIONS(1347), - [anon_sym_i256] = ACTIONS(1347), - [anon_sym_b256] = ACTIONS(1347), - [anon_sym_isize] = ACTIONS(1347), - [anon_sym_usize] = ACTIONS(1347), - [anon_sym_f32] = ACTIONS(1347), - [anon_sym_f64] = ACTIONS(1347), - [anon_sym_bool] = ACTIONS(1347), - [anon_sym_char] = ACTIONS(1347), - [anon_sym_str] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1345), - [anon_sym_contract] = ACTIONS(1347), - [anon_sym_script] = ACTIONS(1347), - [anon_sym_predicate] = ACTIONS(1347), - [anon_sym_library] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_abi] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_configurable] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_mod] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_fn] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1347), - [anon_sym_match] = ACTIONS(1347), - [anon_sym_pub] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_storage] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_trait] = ACTIONS(1347), - [anon_sym_type] = ACTIONS(1347), - [anon_sym_use] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_COLON_COLON] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_yield] = ACTIONS(1347), - [anon_sym_move] = ACTIONS(1347), - [sym_integer_literal] = ACTIONS(1345), - [aux_sym_string_literal_token1] = ACTIONS(1345), - [sym_char_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1347), - [anon_sym_false] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_u8] = ACTIONS(1333), + [anon_sym_i8] = ACTIONS(1333), + [anon_sym_u16] = ACTIONS(1333), + [anon_sym_i16] = ACTIONS(1333), + [anon_sym_u32] = ACTIONS(1333), + [anon_sym_i32] = ACTIONS(1333), + [anon_sym_u64] = ACTIONS(1333), + [anon_sym_i64] = ACTIONS(1333), + [anon_sym_u128] = ACTIONS(1333), + [anon_sym_i128] = ACTIONS(1333), + [anon_sym_u256] = ACTIONS(1333), + [anon_sym_i256] = ACTIONS(1333), + [anon_sym_b256] = ACTIONS(1333), + [anon_sym_isize] = ACTIONS(1333), + [anon_sym_usize] = ACTIONS(1333), + [anon_sym_f32] = ACTIONS(1333), + [anon_sym_f64] = ACTIONS(1333), + [anon_sym_bool] = ACTIONS(1333), + [anon_sym_char] = ACTIONS(1333), + [anon_sym_str] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_contract] = ACTIONS(1333), + [anon_sym_script] = ACTIONS(1333), + [anon_sym_predicate] = ACTIONS(1333), + [anon_sym_library] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_abi] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_configurable] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_mod] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1333), + [anon_sym_let] = ACTIONS(1333), + [anon_sym_match] = ACTIONS(1333), + [anon_sym_pub] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_storage] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_trait] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1333), + [anon_sym_use] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_COLON_COLON] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1333), + [anon_sym_move] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [aux_sym_string_literal_token1] = ACTIONS(1331), + [sym_char_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1345), - [sym_raw_string_literal] = ACTIONS(1345), - [sym_float_literal] = ACTIONS(1345), + [sym_self] = ACTIONS(1333), + [sym_metavariable] = ACTIONS(1331), + [sym_raw_string_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1331), [sym_block_comment] = ACTIONS(3), }, [344] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_match_arm] = STATE(410), - [sym_last_match_arm] = STATE(2026), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(414), - [aux_sym_match_block_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(875), - [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_u256] = ACTIONS(685), - [anon_sym_i256] = ACTIONS(685), - [anon_sym_b256] = 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_char] = ACTIONS(685), - [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_deref] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(725), - [aux_sym_string_literal_token1] = ACTIONS(727), - [sym_char_literal] = ACTIONS(725), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_u8] = ACTIONS(1337), + [anon_sym_i8] = ACTIONS(1337), + [anon_sym_u16] = ACTIONS(1337), + [anon_sym_i16] = ACTIONS(1337), + [anon_sym_u32] = ACTIONS(1337), + [anon_sym_i32] = ACTIONS(1337), + [anon_sym_u64] = ACTIONS(1337), + [anon_sym_i64] = ACTIONS(1337), + [anon_sym_u128] = ACTIONS(1337), + [anon_sym_i128] = ACTIONS(1337), + [anon_sym_u256] = ACTIONS(1337), + [anon_sym_i256] = ACTIONS(1337), + [anon_sym_b256] = ACTIONS(1337), + [anon_sym_isize] = ACTIONS(1337), + [anon_sym_usize] = ACTIONS(1337), + [anon_sym_f32] = ACTIONS(1337), + [anon_sym_f64] = ACTIONS(1337), + [anon_sym_bool] = ACTIONS(1337), + [anon_sym_char] = ACTIONS(1337), + [anon_sym_str] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_contract] = ACTIONS(1337), + [anon_sym_script] = ACTIONS(1337), + [anon_sym_predicate] = ACTIONS(1337), + [anon_sym_library] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_abi] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_configurable] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_mod] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_fn] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_impl] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_pub] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_storage] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_trait] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_move] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [aux_sym_string_literal_token1] = ACTIONS(1335), + [sym_char_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), + [sym_self] = ACTIONS(1337), + [sym_metavariable] = ACTIONS(1335), + [sym_raw_string_literal] = ACTIONS(1335), + [sym_float_literal] = ACTIONS(1335), [sym_block_comment] = ACTIONS(3), }, [345] = { + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_u256] = ACTIONS(1341), + [anon_sym_i256] = ACTIONS(1341), + [anon_sym_b256] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_contract] = ACTIONS(1341), + [anon_sym_script] = ACTIONS(1341), + [anon_sym_predicate] = ACTIONS(1341), + [anon_sym_library] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_abi] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_configurable] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_fn] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_storage] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_trait] = ACTIONS(1341), + [anon_sym_type] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_move] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1339), + [aux_sym_string_literal_token1] = ACTIONS(1339), + [sym_char_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1341), + [anon_sym_false] = ACTIONS(1341), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1341), + [sym_metavariable] = ACTIONS(1339), + [sym_raw_string_literal] = ACTIONS(1339), + [sym_float_literal] = ACTIONS(1339), + [sym_block_comment] = ACTIONS(3), + }, + [346] = { + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_u8] = ACTIONS(1345), + [anon_sym_i8] = ACTIONS(1345), + [anon_sym_u16] = ACTIONS(1345), + [anon_sym_i16] = ACTIONS(1345), + [anon_sym_u32] = ACTIONS(1345), + [anon_sym_i32] = ACTIONS(1345), + [anon_sym_u64] = ACTIONS(1345), + [anon_sym_i64] = ACTIONS(1345), + [anon_sym_u128] = ACTIONS(1345), + [anon_sym_i128] = ACTIONS(1345), + [anon_sym_u256] = ACTIONS(1345), + [anon_sym_i256] = ACTIONS(1345), + [anon_sym_b256] = ACTIONS(1345), + [anon_sym_isize] = ACTIONS(1345), + [anon_sym_usize] = ACTIONS(1345), + [anon_sym_f32] = ACTIONS(1345), + [anon_sym_f64] = ACTIONS(1345), + [anon_sym_bool] = ACTIONS(1345), + [anon_sym_char] = ACTIONS(1345), + [anon_sym_str] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_contract] = ACTIONS(1345), + [anon_sym_script] = ACTIONS(1345), + [anon_sym_predicate] = ACTIONS(1345), + [anon_sym_library] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_abi] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_configurable] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_mod] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_impl] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_pub] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_storage] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_trait] = ACTIONS(1345), + [anon_sym_type] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1345), + [anon_sym_move] = ACTIONS(1345), + [sym_integer_literal] = ACTIONS(1343), + [aux_sym_string_literal_token1] = ACTIONS(1343), + [sym_char_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1345), + [sym_metavariable] = ACTIONS(1343), + [sym_raw_string_literal] = ACTIONS(1343), + [sym_float_literal] = ACTIONS(1343), + [sym_block_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_u8] = ACTIONS(1349), + [anon_sym_i8] = ACTIONS(1349), + [anon_sym_u16] = ACTIONS(1349), + [anon_sym_i16] = ACTIONS(1349), + [anon_sym_u32] = ACTIONS(1349), + [anon_sym_i32] = ACTIONS(1349), + [anon_sym_u64] = ACTIONS(1349), + [anon_sym_i64] = ACTIONS(1349), + [anon_sym_u128] = ACTIONS(1349), + [anon_sym_i128] = ACTIONS(1349), + [anon_sym_u256] = ACTIONS(1349), + [anon_sym_i256] = ACTIONS(1349), + [anon_sym_b256] = ACTIONS(1349), + [anon_sym_isize] = ACTIONS(1349), + [anon_sym_usize] = ACTIONS(1349), + [anon_sym_f32] = ACTIONS(1349), + [anon_sym_f64] = ACTIONS(1349), + [anon_sym_bool] = ACTIONS(1349), + [anon_sym_char] = ACTIONS(1349), + [anon_sym_str] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_contract] = ACTIONS(1349), + [anon_sym_script] = ACTIONS(1349), + [anon_sym_predicate] = ACTIONS(1349), + [anon_sym_library] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_abi] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_configurable] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_mod] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_fn] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_impl] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_pub] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_storage] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_trait] = ACTIONS(1349), + [anon_sym_type] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1349), + [anon_sym_move] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1347), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1349), + [sym_metavariable] = ACTIONS(1347), + [sym_raw_string_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1347), + [sym_block_comment] = ACTIONS(3), + }, + [348] = { [ts_builtin_sym_end] = ACTIONS(1351), [sym_identifier] = ACTIONS(1353), [anon_sym_SEMI] = ACTIONS(1351), @@ -47724,9 +43479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1353), [anon_sym_predicate] = ACTIONS(1353), [anon_sym_library] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), [anon_sym_SQUOTE] = ACTIONS(1353), [anon_sym_abi] = ACTIONS(1353), [anon_sym_break] = ACTIONS(1353), @@ -47752,6 +43504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1353), [anon_sym_POUND] = ACTIONS(1351), [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), [anon_sym_asm] = ACTIONS(1353), [anon_sym_LT] = ACTIONS(1351), [anon_sym_COLON_COLON] = ACTIONS(1351), @@ -47774,7 +43529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1351), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1355), [sym_identifier] = ACTIONS(1357), [anon_sym_SEMI] = ACTIONS(1355), @@ -47803,9 +43558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1357), [anon_sym_predicate] = ACTIONS(1357), [anon_sym_library] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), [anon_sym_SQUOTE] = ACTIONS(1357), [anon_sym_abi] = ACTIONS(1357), [anon_sym_break] = ACTIONS(1357), @@ -47831,6 +43583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1357), [anon_sym_POUND] = ACTIONS(1355), [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1355), [anon_sym_asm] = ACTIONS(1357), [anon_sym_LT] = ACTIONS(1355), [anon_sym_COLON_COLON] = ACTIONS(1355), @@ -47853,7 +43608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1355), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1359), [sym_identifier] = ACTIONS(1361), [anon_sym_SEMI] = ACTIONS(1359), @@ -47882,9 +43637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1361), [anon_sym_predicate] = ACTIONS(1361), [anon_sym_library] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), [anon_sym_SQUOTE] = ACTIONS(1361), [anon_sym_abi] = ACTIONS(1361), [anon_sym_break] = ACTIONS(1361), @@ -47910,6 +43662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1361), [anon_sym_POUND] = ACTIONS(1359), [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), [anon_sym_asm] = ACTIONS(1361), [anon_sym_LT] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(1359), @@ -47932,7 +43687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1359), [sym_block_comment] = ACTIONS(3), }, - [348] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1363), [sym_identifier] = ACTIONS(1365), [anon_sym_SEMI] = ACTIONS(1363), @@ -47961,9 +43716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1365), [anon_sym_predicate] = ACTIONS(1365), [anon_sym_library] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), [anon_sym_SQUOTE] = ACTIONS(1365), [anon_sym_abi] = ACTIONS(1365), [anon_sym_break] = ACTIONS(1365), @@ -47989,6 +43741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1365), [anon_sym_POUND] = ACTIONS(1363), [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1363), [anon_sym_asm] = ACTIONS(1365), [anon_sym_LT] = ACTIONS(1363), [anon_sym_COLON_COLON] = ACTIONS(1363), @@ -48011,7 +43766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1363), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1367), [sym_identifier] = ACTIONS(1369), [anon_sym_SEMI] = ACTIONS(1367), @@ -48040,9 +43795,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1369), [anon_sym_predicate] = ACTIONS(1369), [anon_sym_library] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), [anon_sym_SQUOTE] = ACTIONS(1369), [anon_sym_abi] = ACTIONS(1369), [anon_sym_break] = ACTIONS(1369), @@ -48068,6 +43820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1369), [anon_sym_POUND] = ACTIONS(1367), [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), [anon_sym_asm] = ACTIONS(1369), [anon_sym_LT] = ACTIONS(1367), [anon_sym_COLON_COLON] = ACTIONS(1367), @@ -48090,7 +43845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1367), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1371), [sym_identifier] = ACTIONS(1373), [anon_sym_SEMI] = ACTIONS(1371), @@ -48119,9 +43874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1373), [anon_sym_predicate] = ACTIONS(1373), [anon_sym_library] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), [anon_sym_SQUOTE] = ACTIONS(1373), [anon_sym_abi] = ACTIONS(1373), [anon_sym_break] = ACTIONS(1373), @@ -48147,6 +43899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(1371), [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), [anon_sym_asm] = ACTIONS(1373), [anon_sym_LT] = ACTIONS(1371), [anon_sym_COLON_COLON] = ACTIONS(1371), @@ -48169,7 +43924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1371), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1375), [sym_identifier] = ACTIONS(1377), [anon_sym_SEMI] = ACTIONS(1375), @@ -48198,9 +43953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1377), [anon_sym_predicate] = ACTIONS(1377), [anon_sym_library] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), [anon_sym_SQUOTE] = ACTIONS(1377), [anon_sym_abi] = ACTIONS(1377), [anon_sym_break] = ACTIONS(1377), @@ -48226,6 +43978,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1377), [anon_sym_POUND] = ACTIONS(1375), [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), [anon_sym_asm] = ACTIONS(1377), [anon_sym_LT] = ACTIONS(1375), [anon_sym_COLON_COLON] = ACTIONS(1375), @@ -48248,7 +44003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1375), [sym_block_comment] = ACTIONS(3), }, - [352] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1379), [sym_identifier] = ACTIONS(1381), [anon_sym_SEMI] = ACTIONS(1379), @@ -48277,9 +44032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1381), [anon_sym_predicate] = ACTIONS(1381), [anon_sym_library] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), [anon_sym_SQUOTE] = ACTIONS(1381), [anon_sym_abi] = ACTIONS(1381), [anon_sym_break] = ACTIONS(1381), @@ -48305,6 +44057,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1381), [anon_sym_POUND] = ACTIONS(1379), [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), [anon_sym_asm] = ACTIONS(1381), [anon_sym_LT] = ACTIONS(1379), [anon_sym_COLON_COLON] = ACTIONS(1379), @@ -48327,7 +44082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1379), [sym_block_comment] = ACTIONS(3), }, - [353] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1383), [sym_identifier] = ACTIONS(1385), [anon_sym_SEMI] = ACTIONS(1383), @@ -48356,9 +44111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1385), [anon_sym_predicate] = ACTIONS(1385), [anon_sym_library] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), [anon_sym_SQUOTE] = ACTIONS(1385), [anon_sym_abi] = ACTIONS(1385), [anon_sym_break] = ACTIONS(1385), @@ -48384,6 +44136,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1385), [anon_sym_POUND] = ACTIONS(1383), [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), [anon_sym_asm] = ACTIONS(1385), [anon_sym_LT] = ACTIONS(1383), [anon_sym_COLON_COLON] = ACTIONS(1383), @@ -48406,7 +44161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1383), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1387), [sym_identifier] = ACTIONS(1389), [anon_sym_SEMI] = ACTIONS(1387), @@ -48435,9 +44190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1389), [anon_sym_predicate] = ACTIONS(1389), [anon_sym_library] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), [anon_sym_SQUOTE] = ACTIONS(1389), [anon_sym_abi] = ACTIONS(1389), [anon_sym_break] = ACTIONS(1389), @@ -48463,6 +44215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1389), [anon_sym_POUND] = ACTIONS(1387), [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), [anon_sym_asm] = ACTIONS(1389), [anon_sym_LT] = ACTIONS(1387), [anon_sym_COLON_COLON] = ACTIONS(1387), @@ -48485,86 +44240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1387), [sym_block_comment] = ACTIONS(3), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_u256] = ACTIONS(441), - [anon_sym_i256] = ACTIONS(441), - [anon_sym_b256] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_contract] = ACTIONS(441), - [anon_sym_script] = ACTIONS(441), - [anon_sym_predicate] = ACTIONS(441), - [anon_sym_library] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_abi] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_configurable] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_mod] = ACTIONS(441), - [anon_sym_enum] = ACTIONS(441), - [anon_sym_fn] = ACTIONS(441), - [anon_sym_for] = ACTIONS(441), - [anon_sym_if] = ACTIONS(441), - [anon_sym_impl] = ACTIONS(441), - [anon_sym_let] = ACTIONS(441), - [anon_sym_match] = ACTIONS(441), - [anon_sym_pub] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_storage] = ACTIONS(441), - [anon_sym_struct] = ACTIONS(441), - [anon_sym_trait] = ACTIONS(441), - [anon_sym_type] = ACTIONS(441), - [anon_sym_use] = ACTIONS(441), - [anon_sym_while] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_asm] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(441), - [anon_sym_move] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1391), [sym_identifier] = ACTIONS(1393), [anon_sym_SEMI] = ACTIONS(1391), @@ -48593,9 +44269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1393), [anon_sym_predicate] = ACTIONS(1393), [anon_sym_library] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), [anon_sym_SQUOTE] = ACTIONS(1393), [anon_sym_abi] = ACTIONS(1393), [anon_sym_break] = ACTIONS(1393), @@ -48621,6 +44294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1393), [anon_sym_POUND] = ACTIONS(1391), [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), [anon_sym_asm] = ACTIONS(1393), [anon_sym_LT] = ACTIONS(1391), [anon_sym_COLON_COLON] = ACTIONS(1391), @@ -48643,7 +44319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1391), [sym_block_comment] = ACTIONS(3), }, - [357] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1395), [sym_identifier] = ACTIONS(1397), [anon_sym_SEMI] = ACTIONS(1395), @@ -48672,9 +44348,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1397), [anon_sym_predicate] = ACTIONS(1397), [anon_sym_library] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), [anon_sym_SQUOTE] = ACTIONS(1397), [anon_sym_abi] = ACTIONS(1397), [anon_sym_break] = ACTIONS(1397), @@ -48700,6 +44373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1397), [anon_sym_POUND] = ACTIONS(1395), [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), [anon_sym_asm] = ACTIONS(1397), [anon_sym_LT] = ACTIONS(1395), [anon_sym_COLON_COLON] = ACTIONS(1395), @@ -48722,86 +44398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1395), [sym_block_comment] = ACTIONS(3), }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(425), - [sym_identifier] = ACTIONS(427), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym_u8] = ACTIONS(427), - [anon_sym_i8] = ACTIONS(427), - [anon_sym_u16] = ACTIONS(427), - [anon_sym_i16] = ACTIONS(427), - [anon_sym_u32] = ACTIONS(427), - [anon_sym_i32] = ACTIONS(427), - [anon_sym_u64] = ACTIONS(427), - [anon_sym_i64] = ACTIONS(427), - [anon_sym_u128] = ACTIONS(427), - [anon_sym_i128] = ACTIONS(427), - [anon_sym_u256] = ACTIONS(427), - [anon_sym_i256] = ACTIONS(427), - [anon_sym_b256] = ACTIONS(427), - [anon_sym_isize] = ACTIONS(427), - [anon_sym_usize] = ACTIONS(427), - [anon_sym_f32] = ACTIONS(427), - [anon_sym_f64] = ACTIONS(427), - [anon_sym_bool] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_str] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_contract] = ACTIONS(427), - [anon_sym_script] = ACTIONS(427), - [anon_sym_predicate] = ACTIONS(427), - [anon_sym_library] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_SQUOTE] = ACTIONS(427), - [anon_sym_abi] = ACTIONS(427), - [anon_sym_break] = ACTIONS(427), - [anon_sym_configurable] = ACTIONS(427), - [anon_sym_const] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_mod] = ACTIONS(427), - [anon_sym_enum] = ACTIONS(427), - [anon_sym_fn] = ACTIONS(427), - [anon_sym_for] = ACTIONS(427), - [anon_sym_if] = ACTIONS(427), - [anon_sym_impl] = ACTIONS(427), - [anon_sym_let] = ACTIONS(427), - [anon_sym_match] = ACTIONS(427), - [anon_sym_pub] = ACTIONS(427), - [anon_sym_return] = ACTIONS(427), - [anon_sym_storage] = ACTIONS(427), - [anon_sym_struct] = ACTIONS(427), - [anon_sym_trait] = ACTIONS(427), - [anon_sym_type] = ACTIONS(427), - [anon_sym_use] = ACTIONS(427), - [anon_sym_while] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_asm] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_move] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(425), - [aux_sym_string_literal_token1] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [anon_sym_true] = ACTIONS(427), - [anon_sym_false] = ACTIONS(427), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(427), - [sym_metavariable] = ACTIONS(425), - [sym_raw_string_literal] = ACTIONS(425), - [sym_float_literal] = ACTIONS(425), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1399), [sym_identifier] = ACTIONS(1401), [anon_sym_SEMI] = ACTIONS(1399), @@ -48830,9 +44427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1401), [anon_sym_predicate] = ACTIONS(1401), [anon_sym_library] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), [anon_sym_SQUOTE] = ACTIONS(1401), [anon_sym_abi] = ACTIONS(1401), [anon_sym_break] = ACTIONS(1401), @@ -48858,6 +44452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1401), [anon_sym_POUND] = ACTIONS(1399), [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), [anon_sym_asm] = ACTIONS(1401), [anon_sym_LT] = ACTIONS(1399), [anon_sym_COLON_COLON] = ACTIONS(1399), @@ -48880,7 +44477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1399), [sym_block_comment] = ACTIONS(3), }, - [360] = { + [361] = { [ts_builtin_sym_end] = ACTIONS(1403), [sym_identifier] = ACTIONS(1405), [anon_sym_SEMI] = ACTIONS(1403), @@ -48909,9 +44506,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1405), [anon_sym_predicate] = ACTIONS(1405), [anon_sym_library] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), [anon_sym_SQUOTE] = ACTIONS(1405), [anon_sym_abi] = ACTIONS(1405), [anon_sym_break] = ACTIONS(1405), @@ -48937,6 +44531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1405), [anon_sym_POUND] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), [anon_sym_asm] = ACTIONS(1405), [anon_sym_LT] = ACTIONS(1403), [anon_sym_COLON_COLON] = ACTIONS(1403), @@ -48959,7 +44556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1403), [sym_block_comment] = ACTIONS(3), }, - [361] = { + [362] = { [ts_builtin_sym_end] = ACTIONS(1407), [sym_identifier] = ACTIONS(1409), [anon_sym_SEMI] = ACTIONS(1407), @@ -48988,9 +44585,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1409), [anon_sym_predicate] = ACTIONS(1409), [anon_sym_library] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), [anon_sym_SQUOTE] = ACTIONS(1409), [anon_sym_abi] = ACTIONS(1409), [anon_sym_break] = ACTIONS(1409), @@ -49016,6 +44610,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1409), [anon_sym_POUND] = ACTIONS(1407), [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), [anon_sym_asm] = ACTIONS(1409), [anon_sym_LT] = ACTIONS(1407), [anon_sym_COLON_COLON] = ACTIONS(1407), @@ -49038,7 +44635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1407), [sym_block_comment] = ACTIONS(3), }, - [362] = { + [363] = { [ts_builtin_sym_end] = ACTIONS(1411), [sym_identifier] = ACTIONS(1413), [anon_sym_SEMI] = ACTIONS(1411), @@ -49067,9 +44664,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1413), [anon_sym_predicate] = ACTIONS(1413), [anon_sym_library] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), [anon_sym_SQUOTE] = ACTIONS(1413), [anon_sym_abi] = ACTIONS(1413), [anon_sym_break] = ACTIONS(1413), @@ -49095,6 +44689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1413), [anon_sym_POUND] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), [anon_sym_asm] = ACTIONS(1413), [anon_sym_LT] = ACTIONS(1411), [anon_sym_COLON_COLON] = ACTIONS(1411), @@ -49117,85 +44714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1411), [sym_block_comment] = ACTIONS(3), }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(435), - [sym_identifier] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_u256] = ACTIONS(437), - [anon_sym_i256] = ACTIONS(437), - [anon_sym_b256] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_contract] = ACTIONS(437), - [anon_sym_script] = ACTIONS(437), - [anon_sym_predicate] = ACTIONS(437), - [anon_sym_library] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_abi] = ACTIONS(437), - [anon_sym_break] = ACTIONS(437), - [anon_sym_configurable] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(437), - [anon_sym_default] = ACTIONS(437), - [anon_sym_mod] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(437), - [anon_sym_fn] = ACTIONS(437), - [anon_sym_for] = ACTIONS(437), - [anon_sym_if] = ACTIONS(437), - [anon_sym_impl] = ACTIONS(437), - [anon_sym_let] = ACTIONS(437), - [anon_sym_match] = ACTIONS(437), - [anon_sym_pub] = ACTIONS(437), - [anon_sym_return] = ACTIONS(437), - [anon_sym_storage] = ACTIONS(437), - [anon_sym_struct] = ACTIONS(437), - [anon_sym_trait] = ACTIONS(437), - [anon_sym_type] = ACTIONS(437), - [anon_sym_use] = ACTIONS(437), - [anon_sym_while] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_DOT_DOT] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(435), - [anon_sym_yield] = ACTIONS(437), - [anon_sym_move] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - [sym_block_comment] = ACTIONS(3), - }, [364] = { [ts_builtin_sym_end] = ACTIONS(1415), [sym_identifier] = ACTIONS(1417), @@ -49225,9 +44743,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1417), [anon_sym_predicate] = ACTIONS(1417), [anon_sym_library] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), [anon_sym_SQUOTE] = ACTIONS(1417), [anon_sym_abi] = ACTIONS(1417), [anon_sym_break] = ACTIONS(1417), @@ -49253,6 +44768,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1417), [anon_sym_POUND] = ACTIONS(1415), [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), [anon_sym_asm] = ACTIONS(1417), [anon_sym_LT] = ACTIONS(1415), [anon_sym_COLON_COLON] = ACTIONS(1415), @@ -49304,9 +44822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1421), [anon_sym_predicate] = ACTIONS(1421), [anon_sym_library] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), [anon_sym_SQUOTE] = ACTIONS(1421), [anon_sym_abi] = ACTIONS(1421), [anon_sym_break] = ACTIONS(1421), @@ -49332,6 +44847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1421), [anon_sym_POUND] = ACTIONS(1419), [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_asm] = ACTIONS(1421), [anon_sym_LT] = ACTIONS(1419), [anon_sym_COLON_COLON] = ACTIONS(1419), @@ -49355,401 +44873,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_u256] = ACTIONS(1425), - [anon_sym_i256] = ACTIONS(1425), - [anon_sym_b256] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_contract] = ACTIONS(1425), - [anon_sym_script] = ACTIONS(1425), - [anon_sym_predicate] = ACTIONS(1425), - [anon_sym_library] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_abi] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_configurable] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_storage] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - [sym_block_comment] = ACTIONS(3), - }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_u256] = ACTIONS(1429), - [anon_sym_i256] = ACTIONS(1429), - [anon_sym_b256] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_contract] = ACTIONS(1429), - [anon_sym_script] = ACTIONS(1429), - [anon_sym_predicate] = ACTIONS(1429), - [anon_sym_library] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_abi] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_configurable] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_match_arm] = STATE(408), + [sym_last_match_arm] = STATE(2139), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(1423), + [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_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = 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_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), [anon_sym_default] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_storage] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - [sym_block_comment] = ACTIONS(3), - }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_u256] = ACTIONS(1433), - [anon_sym_i256] = ACTIONS(1433), - [anon_sym_b256] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_contract] = ACTIONS(1433), - [anon_sym_script] = ACTIONS(1433), - [anon_sym_predicate] = ACTIONS(1433), - [anon_sym_library] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(357), [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_abi] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_configurable] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_storage] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - [sym_block_comment] = ACTIONS(3), - }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_u256] = ACTIONS(1437), - [anon_sym_i256] = ACTIONS(1437), - [anon_sym_b256] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_contract] = ACTIONS(1437), - [anon_sym_script] = ACTIONS(1437), - [anon_sym_predicate] = ACTIONS(1437), - [anon_sym_library] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_abi] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_configurable] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_storage] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym_raw_string_literal] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - [sym_block_comment] = ACTIONS(3), - }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_u8] = ACTIONS(1441), - [anon_sym_i8] = ACTIONS(1441), - [anon_sym_u16] = ACTIONS(1441), - [anon_sym_i16] = ACTIONS(1441), - [anon_sym_u32] = ACTIONS(1441), - [anon_sym_i32] = ACTIONS(1441), - [anon_sym_u64] = ACTIONS(1441), - [anon_sym_i64] = ACTIONS(1441), - [anon_sym_u128] = ACTIONS(1441), - [anon_sym_i128] = ACTIONS(1441), - [anon_sym_u256] = ACTIONS(1441), - [anon_sym_i256] = ACTIONS(1441), - [anon_sym_b256] = ACTIONS(1441), - [anon_sym_isize] = ACTIONS(1441), - [anon_sym_usize] = ACTIONS(1441), - [anon_sym_f32] = ACTIONS(1441), - [anon_sym_f64] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_str] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_contract] = ACTIONS(1441), - [anon_sym_script] = ACTIONS(1441), - [anon_sym_predicate] = ACTIONS(1441), - [anon_sym_library] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_abi] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_configurable] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_impl] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_match] = ACTIONS(1441), - [anon_sym_pub] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_storage] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_trait] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_use] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_COLON_COLON] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_move] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1439), - [aux_sym_string_literal_token1] = ACTIONS(1439), - [sym_char_literal] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1441), - [sym_metavariable] = ACTIONS(1439), - [sym_raw_string_literal] = ACTIONS(1439), - [sym_float_literal] = ACTIONS(1439), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [367] = { [ts_builtin_sym_end] = ACTIONS(1443), [sym_identifier] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1443), @@ -49778,9 +44980,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1445), [anon_sym_predicate] = ACTIONS(1445), [anon_sym_library] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), [anon_sym_SQUOTE] = ACTIONS(1445), [anon_sym_abi] = ACTIONS(1445), [anon_sym_break] = ACTIONS(1445), @@ -49806,6 +45005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(1443), [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), [anon_sym_asm] = ACTIONS(1445), [anon_sym_LT] = ACTIONS(1443), [anon_sym_COLON_COLON] = ACTIONS(1443), @@ -49828,7 +45030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1443), [sym_block_comment] = ACTIONS(3), }, - [372] = { + [368] = { [ts_builtin_sym_end] = ACTIONS(1447), [sym_identifier] = ACTIONS(1449), [anon_sym_SEMI] = ACTIONS(1447), @@ -49857,9 +45059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1449), [anon_sym_predicate] = ACTIONS(1449), [anon_sym_library] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), [anon_sym_SQUOTE] = ACTIONS(1449), [anon_sym_abi] = ACTIONS(1449), [anon_sym_break] = ACTIONS(1449), @@ -49885,6 +45084,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1449), [anon_sym_POUND] = ACTIONS(1447), [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_asm] = ACTIONS(1449), [anon_sym_LT] = ACTIONS(1447), [anon_sym_COLON_COLON] = ACTIONS(1447), @@ -49907,7 +45109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1447), [sym_block_comment] = ACTIONS(3), }, - [373] = { + [369] = { [ts_builtin_sym_end] = ACTIONS(1451), [sym_identifier] = ACTIONS(1453), [anon_sym_SEMI] = ACTIONS(1451), @@ -49936,9 +45138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1453), [anon_sym_predicate] = ACTIONS(1453), [anon_sym_library] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), [anon_sym_SQUOTE] = ACTIONS(1453), [anon_sym_abi] = ACTIONS(1453), [anon_sym_break] = ACTIONS(1453), @@ -49964,6 +45163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1453), [anon_sym_POUND] = ACTIONS(1451), [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), [anon_sym_asm] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(1451), [anon_sym_COLON_COLON] = ACTIONS(1451), @@ -49986,7 +45188,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1451), [sym_block_comment] = ACTIONS(3), }, - [374] = { + [370] = { + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_u256] = ACTIONS(429), + [anon_sym_i256] = ACTIONS(429), + [anon_sym_b256] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_contract] = ACTIONS(429), + [anon_sym_script] = ACTIONS(429), + [anon_sym_predicate] = ACTIONS(429), + [anon_sym_library] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_abi] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_configurable] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_mod] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(429), + [anon_sym_fn] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_impl] = ACTIONS(429), + [anon_sym_let] = ACTIONS(429), + [anon_sym_match] = ACTIONS(429), + [anon_sym_pub] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_storage] = ACTIONS(429), + [anon_sym_struct] = ACTIONS(429), + [anon_sym_trait] = ACTIONS(429), + [anon_sym_type] = ACTIONS(429), + [anon_sym_use] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(427), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_move] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, + [371] = { [ts_builtin_sym_end] = ACTIONS(1455), [sym_identifier] = ACTIONS(1457), [anon_sym_SEMI] = ACTIONS(1455), @@ -50015,9 +45296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1457), [anon_sym_predicate] = ACTIONS(1457), [anon_sym_library] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), [anon_sym_SQUOTE] = ACTIONS(1457), [anon_sym_abi] = ACTIONS(1457), [anon_sym_break] = ACTIONS(1457), @@ -50043,6 +45321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1457), [anon_sym_POUND] = ACTIONS(1455), [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), [anon_sym_asm] = ACTIONS(1457), [anon_sym_LT] = ACTIONS(1455), [anon_sym_COLON_COLON] = ACTIONS(1455), @@ -50065,7 +45346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1455), [sym_block_comment] = ACTIONS(3), }, - [375] = { + [372] = { [ts_builtin_sym_end] = ACTIONS(1459), [sym_identifier] = ACTIONS(1461), [anon_sym_SEMI] = ACTIONS(1459), @@ -50094,9 +45375,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1461), [anon_sym_predicate] = ACTIONS(1461), [anon_sym_library] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), [anon_sym_SQUOTE] = ACTIONS(1461), [anon_sym_abi] = ACTIONS(1461), [anon_sym_break] = ACTIONS(1461), @@ -50122,6 +45400,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1461), [anon_sym_POUND] = ACTIONS(1459), [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), [anon_sym_asm] = ACTIONS(1461), [anon_sym_LT] = ACTIONS(1459), [anon_sym_COLON_COLON] = ACTIONS(1459), @@ -50144,7 +45425,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1459), [sym_block_comment] = ACTIONS(3), }, - [376] = { + [373] = { + [ts_builtin_sym_end] = ACTIONS(443), + [sym_identifier] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(443), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_u256] = ACTIONS(445), + [anon_sym_i256] = ACTIONS(445), + [anon_sym_b256] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_contract] = ACTIONS(445), + [anon_sym_script] = ACTIONS(445), + [anon_sym_predicate] = ACTIONS(445), + [anon_sym_library] = ACTIONS(445), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_abi] = ACTIONS(445), + [anon_sym_break] = ACTIONS(445), + [anon_sym_configurable] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_mod] = ACTIONS(445), + [anon_sym_enum] = ACTIONS(445), + [anon_sym_fn] = ACTIONS(445), + [anon_sym_for] = ACTIONS(445), + [anon_sym_if] = ACTIONS(445), + [anon_sym_impl] = ACTIONS(445), + [anon_sym_let] = ACTIONS(445), + [anon_sym_match] = ACTIONS(445), + [anon_sym_pub] = ACTIONS(445), + [anon_sym_return] = ACTIONS(445), + [anon_sym_storage] = ACTIONS(445), + [anon_sym_struct] = ACTIONS(445), + [anon_sym_trait] = ACTIONS(445), + [anon_sym_type] = ACTIONS(445), + [anon_sym_use] = ACTIONS(445), + [anon_sym_while] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_asm] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), + [sym_block_comment] = ACTIONS(3), + }, + [374] = { + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_u256] = ACTIONS(437), + [anon_sym_i256] = ACTIONS(437), + [anon_sym_b256] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_contract] = ACTIONS(437), + [anon_sym_script] = ACTIONS(437), + [anon_sym_predicate] = ACTIONS(437), + [anon_sym_library] = ACTIONS(437), + [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_abi] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_configurable] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_mod] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(437), + [anon_sym_fn] = ACTIONS(437), + [anon_sym_for] = ACTIONS(437), + [anon_sym_if] = ACTIONS(437), + [anon_sym_impl] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_match] = ACTIONS(437), + [anon_sym_pub] = ACTIONS(437), + [anon_sym_return] = ACTIONS(437), + [anon_sym_storage] = ACTIONS(437), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_trait] = ACTIONS(437), + [anon_sym_type] = ACTIONS(437), + [anon_sym_use] = ACTIONS(437), + [anon_sym_while] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(437), + [anon_sym_move] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), + [sym_block_comment] = ACTIONS(3), + }, + [375] = { [ts_builtin_sym_end] = ACTIONS(1463), [sym_identifier] = ACTIONS(1465), [anon_sym_SEMI] = ACTIONS(1463), @@ -50173,9 +45612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1465), [anon_sym_predicate] = ACTIONS(1465), [anon_sym_library] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), [anon_sym_SQUOTE] = ACTIONS(1465), [anon_sym_abi] = ACTIONS(1465), [anon_sym_break] = ACTIONS(1465), @@ -50201,6 +45637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1465), [anon_sym_POUND] = ACTIONS(1463), [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), [anon_sym_asm] = ACTIONS(1465), [anon_sym_LT] = ACTIONS(1463), [anon_sym_COLON_COLON] = ACTIONS(1463), @@ -50223,7 +45662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1463), [sym_block_comment] = ACTIONS(3), }, - [377] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1467), [sym_identifier] = ACTIONS(1469), [anon_sym_SEMI] = ACTIONS(1467), @@ -50252,9 +45691,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1469), [anon_sym_predicate] = ACTIONS(1469), [anon_sym_library] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), [anon_sym_SQUOTE] = ACTIONS(1469), [anon_sym_abi] = ACTIONS(1469), [anon_sym_break] = ACTIONS(1469), @@ -50280,6 +45716,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1469), [anon_sym_POUND] = ACTIONS(1467), [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), [anon_sym_asm] = ACTIONS(1469), [anon_sym_LT] = ACTIONS(1467), [anon_sym_COLON_COLON] = ACTIONS(1467), @@ -50302,7 +45741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1467), [sym_block_comment] = ACTIONS(3), }, - [378] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1471), [sym_identifier] = ACTIONS(1473), [anon_sym_SEMI] = ACTIONS(1471), @@ -50331,9 +45770,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1473), [anon_sym_predicate] = ACTIONS(1473), [anon_sym_library] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), [anon_sym_SQUOTE] = ACTIONS(1473), [anon_sym_abi] = ACTIONS(1473), [anon_sym_break] = ACTIONS(1473), @@ -50359,6 +45795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1473), [anon_sym_POUND] = ACTIONS(1471), [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), [anon_sym_asm] = ACTIONS(1473), [anon_sym_LT] = ACTIONS(1471), [anon_sym_COLON_COLON] = ACTIONS(1471), @@ -50381,7 +45820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1471), [sym_block_comment] = ACTIONS(3), }, - [379] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1475), [sym_identifier] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1475), @@ -50410,9 +45849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1477), [anon_sym_predicate] = ACTIONS(1477), [anon_sym_library] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), [anon_sym_SQUOTE] = ACTIONS(1477), [anon_sym_abi] = ACTIONS(1477), [anon_sym_break] = ACTIONS(1477), @@ -50438,6 +45874,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1477), [anon_sym_POUND] = ACTIONS(1475), [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), [anon_sym_asm] = ACTIONS(1477), [anon_sym_LT] = ACTIONS(1475), [anon_sym_COLON_COLON] = ACTIONS(1475), @@ -50460,7 +45899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1475), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1479), [sym_identifier] = ACTIONS(1481), [anon_sym_SEMI] = ACTIONS(1479), @@ -50489,9 +45928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1481), [anon_sym_predicate] = ACTIONS(1481), [anon_sym_library] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), [anon_sym_SQUOTE] = ACTIONS(1481), [anon_sym_abi] = ACTIONS(1481), [anon_sym_break] = ACTIONS(1481), @@ -50517,6 +45953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1481), [anon_sym_POUND] = ACTIONS(1479), [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), [anon_sym_asm] = ACTIONS(1481), [anon_sym_LT] = ACTIONS(1479), [anon_sym_COLON_COLON] = ACTIONS(1479), @@ -50539,557 +45978,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1479), [sym_block_comment] = ACTIONS(3), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_u256] = ACTIONS(1485), - [anon_sym_i256] = ACTIONS(1485), - [anon_sym_b256] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_contract] = ACTIONS(1485), - [anon_sym_script] = ACTIONS(1485), - [anon_sym_predicate] = ACTIONS(1485), - [anon_sym_library] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), + [380] = { + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_match_arm] = STATE(409), + [sym_last_match_arm] = STATE(2135), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(1423), + [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_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = 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_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_abi] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_configurable] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_impl] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_pub] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_storage] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_trait] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym_raw_string_literal] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), + [sym_block_comment] = ACTIONS(3), + }, + [381] = { + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_u256] = ACTIONS(1487), + [anon_sym_i256] = ACTIONS(1487), + [anon_sym_b256] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_contract] = ACTIONS(1487), + [anon_sym_script] = ACTIONS(1487), + [anon_sym_predicate] = ACTIONS(1487), + [anon_sym_library] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_abi] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_configurable] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_mod] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_impl] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_pub] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_storage] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_move] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym_raw_string_literal] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_u256] = ACTIONS(1489), - [anon_sym_i256] = ACTIONS(1489), - [anon_sym_b256] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_contract] = ACTIONS(1489), - [anon_sym_script] = ACTIONS(1489), - [anon_sym_predicate] = ACTIONS(1489), - [anon_sym_library] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_abi] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_configurable] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_mod] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_impl] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_pub] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_storage] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_trait] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_u256] = ACTIONS(1491), + [anon_sym_i256] = ACTIONS(1491), + [anon_sym_b256] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_contract] = ACTIONS(1491), + [anon_sym_script] = ACTIONS(1491), + [anon_sym_predicate] = ACTIONS(1491), + [anon_sym_library] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_abi] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_configurable] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_storage] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_asm] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_move] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym_raw_string_literal] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), + [sym_self] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym_raw_string_literal] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_u256] = ACTIONS(1493), - [anon_sym_i256] = ACTIONS(1493), - [anon_sym_b256] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_contract] = ACTIONS(1493), - [anon_sym_script] = ACTIONS(1493), - [anon_sym_predicate] = ACTIONS(1493), - [anon_sym_library] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_abi] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_configurable] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_storage] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_u256] = ACTIONS(1495), + [anon_sym_i256] = ACTIONS(1495), + [anon_sym_b256] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_contract] = ACTIONS(1495), + [anon_sym_script] = ACTIONS(1495), + [anon_sym_predicate] = ACTIONS(1495), + [anon_sym_library] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_abi] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_configurable] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_storage] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_asm] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_move] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym_raw_string_literal] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [sym_self] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym_raw_string_literal] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_u256] = ACTIONS(1497), - [anon_sym_i256] = ACTIONS(1497), - [anon_sym_b256] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_contract] = ACTIONS(1497), - [anon_sym_script] = ACTIONS(1497), - [anon_sym_predicate] = ACTIONS(1497), - [anon_sym_library] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_abi] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_configurable] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_storage] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_u256] = ACTIONS(1499), + [anon_sym_i256] = ACTIONS(1499), + [anon_sym_b256] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_contract] = ACTIONS(1499), + [anon_sym_script] = ACTIONS(1499), + [anon_sym_predicate] = ACTIONS(1499), + [anon_sym_library] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_abi] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_configurable] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_storage] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_asm] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym_raw_string_literal] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [sym_self] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym_raw_string_literal] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_u256] = ACTIONS(1501), - [anon_sym_i256] = ACTIONS(1501), - [anon_sym_b256] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_contract] = ACTIONS(1501), - [anon_sym_script] = ACTIONS(1501), - [anon_sym_predicate] = ACTIONS(1501), - [anon_sym_library] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_abi] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_configurable] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_storage] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_u256] = ACTIONS(1503), + [anon_sym_i256] = ACTIONS(1503), + [anon_sym_b256] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_contract] = ACTIONS(1503), + [anon_sym_script] = ACTIONS(1503), + [anon_sym_predicate] = ACTIONS(1503), + [anon_sym_library] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_abi] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_configurable] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_storage] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_asm] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym_raw_string_literal] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [sym_self] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym_raw_string_literal] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_u256] = ACTIONS(1505), - [anon_sym_i256] = ACTIONS(1505), - [anon_sym_b256] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_contract] = ACTIONS(1505), - [anon_sym_script] = ACTIONS(1505), - [anon_sym_predicate] = ACTIONS(1505), - [anon_sym_library] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_abi] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_configurable] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_storage] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_u256] = ACTIONS(1507), + [anon_sym_i256] = ACTIONS(1507), + [anon_sym_b256] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_contract] = ACTIONS(1507), + [anon_sym_script] = ACTIONS(1507), + [anon_sym_predicate] = ACTIONS(1507), + [anon_sym_library] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_abi] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_configurable] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_storage] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_asm] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym_raw_string_literal] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [sym_self] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym_raw_string_literal] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_u256] = ACTIONS(1509), - [anon_sym_i256] = ACTIONS(1509), - [anon_sym_b256] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_contract] = ACTIONS(1509), - [anon_sym_script] = ACTIONS(1509), - [anon_sym_predicate] = ACTIONS(1509), - [anon_sym_library] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_abi] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_configurable] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_storage] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(414), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_match_arm] = STATE(410), + [sym_last_match_arm] = STATE(2169), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(414), + [aux_sym_match_block_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1423), + [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_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = 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_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym_raw_string_literal] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [388] = { @@ -51121,9 +46639,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1513), [anon_sym_predicate] = ACTIONS(1513), [anon_sym_library] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), [anon_sym_SQUOTE] = ACTIONS(1513), [anon_sym_abi] = ACTIONS(1513), [anon_sym_break] = ACTIONS(1513), @@ -51149,6 +46664,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(1511), [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), [anon_sym_asm] = ACTIONS(1513), [anon_sym_LT] = ACTIONS(1511), [anon_sym_COLON_COLON] = ACTIONS(1511), @@ -51200,9 +46718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1517), [anon_sym_predicate] = ACTIONS(1517), [anon_sym_library] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), [anon_sym_SQUOTE] = ACTIONS(1517), [anon_sym_abi] = ACTIONS(1517), [anon_sym_break] = ACTIONS(1517), @@ -51228,6 +46743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(1515), [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), [anon_sym_asm] = ACTIONS(1517), [anon_sym_LT] = ACTIONS(1515), [anon_sym_COLON_COLON] = ACTIONS(1515), @@ -51279,9 +46797,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1521), [anon_sym_predicate] = ACTIONS(1521), [anon_sym_library] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), [anon_sym_SQUOTE] = ACTIONS(1521), [anon_sym_abi] = ACTIONS(1521), [anon_sym_break] = ACTIONS(1521), @@ -51307,6 +46822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(1519), [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), [anon_sym_asm] = ACTIONS(1521), [anon_sym_LT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1519), @@ -51358,9 +46876,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1525), [anon_sym_predicate] = ACTIONS(1525), [anon_sym_library] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), [anon_sym_SQUOTE] = ACTIONS(1525), [anon_sym_abi] = ACTIONS(1525), [anon_sym_break] = ACTIONS(1525), @@ -51386,6 +46901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1525), [anon_sym_POUND] = ACTIONS(1523), [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), [anon_sym_asm] = ACTIONS(1525), [anon_sym_LT] = ACTIONS(1523), [anon_sym_COLON_COLON] = ACTIONS(1523), @@ -51437,9 +46955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1529), [anon_sym_predicate] = ACTIONS(1529), [anon_sym_library] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), [anon_sym_SQUOTE] = ACTIONS(1529), [anon_sym_abi] = ACTIONS(1529), [anon_sym_break] = ACTIONS(1529), @@ -51465,6 +46980,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(1527), [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), [anon_sym_asm] = ACTIONS(1529), [anon_sym_LT] = ACTIONS(1527), [anon_sym_COLON_COLON] = ACTIONS(1527), @@ -51516,9 +47034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1533), [anon_sym_predicate] = ACTIONS(1533), [anon_sym_library] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), [anon_sym_SQUOTE] = ACTIONS(1533), [anon_sym_abi] = ACTIONS(1533), [anon_sym_break] = ACTIONS(1533), @@ -51544,6 +47059,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1533), [anon_sym_POUND] = ACTIONS(1531), [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), [anon_sym_asm] = ACTIONS(1533), [anon_sym_LT] = ACTIONS(1531), [anon_sym_COLON_COLON] = ACTIONS(1531), @@ -51595,9 +47113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1537), [anon_sym_predicate] = ACTIONS(1537), [anon_sym_library] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), [anon_sym_SQUOTE] = ACTIONS(1537), [anon_sym_abi] = ACTIONS(1537), [anon_sym_break] = ACTIONS(1537), @@ -51623,6 +47138,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1537), [anon_sym_POUND] = ACTIONS(1535), [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), [anon_sym_asm] = ACTIONS(1537), [anon_sym_LT] = ACTIONS(1535), [anon_sym_COLON_COLON] = ACTIONS(1535), @@ -51674,9 +47192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1541), [anon_sym_predicate] = ACTIONS(1541), [anon_sym_library] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), [anon_sym_SQUOTE] = ACTIONS(1541), [anon_sym_abi] = ACTIONS(1541), [anon_sym_break] = ACTIONS(1541), @@ -51702,6 +47217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1541), [anon_sym_POUND] = ACTIONS(1539), [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), [anon_sym_asm] = ACTIONS(1541), [anon_sym_LT] = ACTIONS(1539), [anon_sym_COLON_COLON] = ACTIONS(1539), @@ -51753,9 +47271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1545), [anon_sym_predicate] = ACTIONS(1545), [anon_sym_library] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), [anon_sym_SQUOTE] = ACTIONS(1545), [anon_sym_abi] = ACTIONS(1545), [anon_sym_break] = ACTIONS(1545), @@ -51781,6 +47296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(1543), [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), [anon_sym_asm] = ACTIONS(1545), [anon_sym_LT] = ACTIONS(1543), [anon_sym_COLON_COLON] = ACTIONS(1543), @@ -51832,9 +47350,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1549), [anon_sym_predicate] = ACTIONS(1549), [anon_sym_library] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), [anon_sym_SQUOTE] = ACTIONS(1549), [anon_sym_abi] = ACTIONS(1549), [anon_sym_break] = ACTIONS(1549), @@ -51860,6 +47375,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1549), [anon_sym_POUND] = ACTIONS(1547), [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_asm] = ACTIONS(1549), [anon_sym_LT] = ACTIONS(1547), [anon_sym_COLON_COLON] = ACTIONS(1547), @@ -51911,9 +47429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1553), [anon_sym_predicate] = ACTIONS(1553), [anon_sym_library] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_abi] = ACTIONS(1553), [anon_sym_break] = ACTIONS(1553), @@ -51939,6 +47454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(1551), [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), [anon_sym_asm] = ACTIONS(1553), [anon_sym_LT] = ACTIONS(1551), [anon_sym_COLON_COLON] = ACTIONS(1551), @@ -51990,9 +47508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1557), [anon_sym_predicate] = ACTIONS(1557), [anon_sym_library] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), [anon_sym_SQUOTE] = ACTIONS(1557), [anon_sym_abi] = ACTIONS(1557), [anon_sym_break] = ACTIONS(1557), @@ -52018,6 +47533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(1555), [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_asm] = ACTIONS(1557), [anon_sym_LT] = ACTIONS(1555), [anon_sym_COLON_COLON] = ACTIONS(1555), @@ -52069,9 +47587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1561), [anon_sym_predicate] = ACTIONS(1561), [anon_sym_library] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), [anon_sym_SQUOTE] = ACTIONS(1561), [anon_sym_abi] = ACTIONS(1561), [anon_sym_break] = ACTIONS(1561), @@ -52097,6 +47612,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(1559), [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), [anon_sym_asm] = ACTIONS(1561), [anon_sym_LT] = ACTIONS(1559), [anon_sym_COLON_COLON] = ACTIONS(1559), @@ -52148,9 +47666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1565), [anon_sym_predicate] = ACTIONS(1565), [anon_sym_library] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), [anon_sym_SQUOTE] = ACTIONS(1565), [anon_sym_abi] = ACTIONS(1565), [anon_sym_break] = ACTIONS(1565), @@ -52176,6 +47691,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(1563), [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), [anon_sym_asm] = ACTIONS(1565), [anon_sym_LT] = ACTIONS(1563), [anon_sym_COLON_COLON] = ACTIONS(1563), @@ -52227,9 +47745,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1569), [anon_sym_predicate] = ACTIONS(1569), [anon_sym_library] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), [anon_sym_SQUOTE] = ACTIONS(1569), [anon_sym_abi] = ACTIONS(1569), [anon_sym_break] = ACTIONS(1569), @@ -52255,6 +47770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1569), [anon_sym_POUND] = ACTIONS(1567), [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), [anon_sym_asm] = ACTIONS(1569), [anon_sym_LT] = ACTIONS(1567), [anon_sym_COLON_COLON] = ACTIONS(1567), @@ -52306,9 +47824,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1573), [anon_sym_predicate] = ACTIONS(1573), [anon_sym_library] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), [anon_sym_SQUOTE] = ACTIONS(1573), [anon_sym_abi] = ACTIONS(1573), [anon_sym_break] = ACTIONS(1573), @@ -52334,6 +47849,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(1571), [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), [anon_sym_asm] = ACTIONS(1573), [anon_sym_LT] = ACTIONS(1571), [anon_sym_COLON_COLON] = ACTIONS(1571), @@ -52385,9 +47903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1577), [anon_sym_predicate] = ACTIONS(1577), [anon_sym_library] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), [anon_sym_SQUOTE] = ACTIONS(1577), [anon_sym_abi] = ACTIONS(1577), [anon_sym_break] = ACTIONS(1577), @@ -52413,6 +47928,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1577), [anon_sym_POUND] = ACTIONS(1575), [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), [anon_sym_asm] = ACTIONS(1577), [anon_sym_LT] = ACTIONS(1575), [anon_sym_COLON_COLON] = ACTIONS(1575), @@ -52464,9 +47982,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1581), [anon_sym_predicate] = ACTIONS(1581), [anon_sym_library] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_SQUOTE] = ACTIONS(1581), [anon_sym_abi] = ACTIONS(1581), [anon_sym_break] = ACTIONS(1581), @@ -52492,6 +48007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(1579), [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), [anon_sym_asm] = ACTIONS(1581), [anon_sym_LT] = ACTIONS(1579), [anon_sym_COLON_COLON] = ACTIONS(1579), @@ -52543,9 +48061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1585), [anon_sym_predicate] = ACTIONS(1585), [anon_sym_library] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), [anon_sym_SQUOTE] = ACTIONS(1585), [anon_sym_abi] = ACTIONS(1585), [anon_sym_break] = ACTIONS(1585), @@ -52571,6 +48086,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(1583), [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), [anon_sym_asm] = ACTIONS(1585), [anon_sym_LT] = ACTIONS(1583), [anon_sym_COLON_COLON] = ACTIONS(1583), @@ -52622,9 +48140,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_script] = ACTIONS(1589), [anon_sym_predicate] = ACTIONS(1589), [anon_sym_library] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), [anon_sym_SQUOTE] = ACTIONS(1589), [anon_sym_abi] = ACTIONS(1589), [anon_sym_break] = ACTIONS(1589), @@ -52650,6 +48165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(1587), [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), [anon_sym_asm] = ACTIONS(1589), [anon_sym_LT] = ACTIONS(1587), [anon_sym_COLON_COLON] = ACTIONS(1587), @@ -52673,37 +48191,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [408] = { - [sym_primitive_type] = STATE(1174), + [sym_primitive_type] = STATE(1176), [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), [sym_match_arm] = STATE(411), - [sym_last_match_arm] = STATE(2032), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), + [sym_last_match_arm] = STATE(2003), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), [aux_sym_enum_variant_list_repeat1] = STATE(414), [aux_sym_match_block_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(875), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -52724,18 +48242,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -52744,44 +48262,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [409] = { - [sym_primitive_type] = STATE(1174), + [sym_primitive_type] = STATE(1176), [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), [sym_match_arm] = STATE(411), - [sym_last_match_arm] = STATE(2125), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), + [sym_last_match_arm] = STATE(2039), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), [aux_sym_enum_variant_list_repeat1] = STATE(414), [aux_sym_match_block_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(875), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -52802,18 +48320,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -52822,44 +48340,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [410] = { - [sym_primitive_type] = STATE(1174), + [sym_primitive_type] = STATE(1176), [sym_attribute_item] = STATE(414), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), [sym_match_arm] = STATE(411), - [sym_last_match_arm] = STATE(2028), - [sym_match_pattern] = STATE(2033), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), + [sym_last_match_arm] = STATE(2178), + [sym_match_pattern] = STATE(2173), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), [aux_sym_enum_variant_list_repeat1] = STATE(414), [aux_sym_match_block_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(875), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -52880,18 +48398,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -52900,41 +48418,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [411] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(413), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(412), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), [sym_match_arm] = STATE(411), - [sym_match_pattern] = STATE(2103), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(413), + [sym_match_pattern] = STATE(2077), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(412), [aux_sym_match_block_repeat1] = STATE(411), [sym_identifier] = ACTIONS(1591), [anon_sym_u8] = ACTIONS(1594), @@ -52958,10 +48476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1594), [anon_sym_str] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1612), [anon_sym_LT] = ACTIONS(1615), [anon_sym_COLON_COLON] = ACTIONS(1618), [anon_sym__] = ACTIONS(1621), @@ -52984,14 +48502,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [412] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(474), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_match_pattern] = STATE(2107), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(1423), + [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_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = 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_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), + [sym_block_comment] = ACTIONS(3), + }, + [413] = { + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), [sym_identifier] = ACTIONS(1657), [anon_sym_u8] = ACTIONS(1660), [anon_sym_i8] = ACTIONS(1660), @@ -53015,10 +48608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1663), [anon_sym_LBRACK] = ACTIONS(1666), [anon_sym_RBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1669), [aux_sym__non_special_token_token1] = ACTIONS(1657), [anon_sym_SQUOTE] = ACTIONS(1657), [anon_sym_abi] = ACTIONS(1657), @@ -53045,6 +48634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1657), [anon_sym_where] = ACTIONS(1657), [anon_sym_while] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1669), [sym_mutable_specifier] = ACTIONS(1657), [anon_sym_DOLLAR] = ACTIONS(1677), [sym_integer_literal] = ACTIONS(1680), @@ -53058,110 +48651,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, - [413] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(476), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_match_pattern] = STATE(2159), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(875), - [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_u256] = ACTIONS(685), - [anon_sym_i256] = ACTIONS(685), - [anon_sym_b256] = 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_char] = ACTIONS(685), - [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_deref] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(725), - [aux_sym_string_literal_token1] = ACTIONS(727), - [sym_char_literal] = ACTIONS(725), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), - [sym_block_comment] = ACTIONS(3), - }, [414] = { - [sym_primitive_type] = STATE(1174), - [sym_attribute_item] = STATE(476), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_match_pattern] = STATE(2027), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_attribute_item] = STATE(474), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_match_pattern] = STATE(2001), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1576), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [aux_sym_enum_variant_list_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -53182,18 +48700,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -53202,39 +48720,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [415] = { - [sym_primitive_type] = STATE(1174), - [sym_asm_parameter] = STATE(1636), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1536), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_asm_parameter] = STATE(1704), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1507), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -53255,19 +48773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1693), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -53276,21 +48794,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [416] = { - [sym_primitive_type] = STATE(419), - [sym_delim_token_tree] = STATE(419), - [sym__delim_tokens] = STATE(419), - [sym__non_delim_token] = STATE(419), - [sym__literal] = STATE(419), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(419), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), @@ -53313,9 +48831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_RBRACK] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), [aux_sym__non_special_token_token1] = ACTIONS(1695), [anon_sym_SQUOTE] = ACTIONS(1695), [anon_sym_abi] = ACTIONS(1695), @@ -53342,6 +48857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1695), [anon_sym_where] = ACTIONS(1695), [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), [sym_mutable_specifier] = ACTIONS(1695), [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), @@ -53356,14 +48874,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [417] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), + [sym_primitive_type] = STATE(421), + [sym_delim_token_tree] = STATE(421), + [sym__delim_tokens] = STATE(421), + [sym__non_delim_token] = STATE(421), + [sym__literal] = STATE(421), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(421), [sym_identifier] = ACTIONS(1717), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), @@ -53386,9 +48904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_RBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), [aux_sym__non_special_token_token1] = ACTIONS(1717), [anon_sym_SQUOTE] = ACTIONS(1717), [anon_sym_abi] = ACTIONS(1717), @@ -53415,6 +48930,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1717), [anon_sym_where] = ACTIONS(1717), [anon_sym_while] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1719), [sym_mutable_specifier] = ACTIONS(1717), [anon_sym_DOLLAR] = ACTIONS(1721), [sym_integer_literal] = ACTIONS(1711), @@ -53429,15 +48947,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [418] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1717), + [sym_primitive_type] = STATE(420), + [sym_delim_token_tree] = STATE(420), + [sym__delim_tokens] = STATE(420), + [sym__non_delim_token] = STATE(420), + [sym__literal] = STATE(420), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(420), + [sym_identifier] = ACTIONS(1723), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -53459,58 +48977,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_abi] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_configurable] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_storage] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [sym_mutable_specifier] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_RBRACK] = ACTIONS(1719), + [aux_sym__non_special_token_token1] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_abi] = ACTIONS(1723), + [anon_sym_as] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_configurable] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_default] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_pub] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_storage] = ACTIONS(1723), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_trait] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_use] = ACTIONS(1723), + [anon_sym_where] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1725), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1717), + [sym_self] = ACTIONS(1723), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [419] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1717), + [sym_primitive_type] = STATE(416), + [sym_delim_token_tree] = STATE(416), + [sym__delim_tokens] = STATE(416), + [sym__non_delim_token] = STATE(416), + [sym__literal] = STATE(416), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1727), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -53532,58 +49050,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_RBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_abi] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_configurable] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_storage] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [sym_mutable_specifier] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1721), + [aux_sym__non_special_token_token1] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_abi] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_configurable] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_impl] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_storage] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_trait] = ACTIONS(1727), + [anon_sym_type] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_where] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1729), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1717), + [sym_self] = ACTIONS(1727), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [420] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1717), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -53605,58 +49123,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1719), - [aux_sym__non_special_token_token1] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_abi] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_configurable] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_storage] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [sym_mutable_specifier] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_RBRACK] = ACTIONS(1705), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1717), + [sym_self] = ACTIONS(1695), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [421] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1717), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -53678,75 +49196,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_abi] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_configurable] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_storage] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [sym_mutable_specifier] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1721), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1705), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1717), + [sym_self] = ACTIONS(1695), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [422] = { - [sym_primitive_type] = STATE(1174), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1536), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_asm_parameter] = STATE(1966), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1507), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -53767,18 +49285,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1731), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -53787,95 +49305,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [423] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1555), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), - [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_u256] = ACTIONS(685), - [anon_sym_i256] = ACTIONS(685), - [anon_sym_b256] = 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_char] = ACTIONS(685), - [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_deref] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(725), - [aux_sym_string_literal_token1] = ACTIONS(727), - [sym_char_literal] = ACTIONS(725), - [anon_sym_true] = ACTIONS(729), - [anon_sym_false] = ACTIONS(729), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), - [sym_block_comment] = ACTIONS(3), - }, - [424] = { - [sym_primitive_type] = STATE(412), - [sym_delim_token_tree] = STATE(412), - [sym__delim_tokens] = STATE(412), - [sym__non_delim_token] = STATE(412), - [sym__literal] = STATE(412), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1717), + [sym_primitive_type] = STATE(431), + [sym_delim_token_tree] = STATE(431), + [sym__delim_tokens] = STATE(431), + [sym__non_delim_token] = STATE(431), + [sym__literal] = STATE(431), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1733), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -53897,75 +49342,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1723), - [aux_sym__non_special_token_token1] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_abi] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_configurable] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_storage] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [sym_mutable_specifier] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_RBRACK] = ACTIONS(1735), + [aux_sym__non_special_token_token1] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), + [anon_sym_abi] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_configurable] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_mod] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_impl] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_pub] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_storage] = ACTIONS(1733), + [anon_sym_struct] = ACTIONS(1733), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), + [anon_sym_where] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1737), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1717), + [sym_self] = ACTIONS(1733), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, - [425] = { - [sym_primitive_type] = STATE(1174), - [sym_parameter] = STATE(1761), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1499), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [424] = { + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1550), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -53986,19 +49430,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1741), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(1733), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), [aux_sym_string_literal_token1] = ACTIONS(727), @@ -54006,22 +49451,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1735), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, + [425] = { + [sym_primitive_type] = STATE(432), + [sym_delim_token_tree] = STATE(432), + [sym__delim_tokens] = STATE(432), + [sym__non_delim_token] = STATE(432), + [sym__literal] = STATE(432), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1743), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_u256] = ACTIONS(1697), + [anon_sym_i256] = ACTIONS(1697), + [anon_sym_b256] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [aux_sym__non_special_token_token1] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_abi] = ACTIONS(1743), + [anon_sym_as] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_configurable] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_mod] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_fn] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_impl] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_pub] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_storage] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_trait] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_where] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1745), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1743), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), + [sym_block_comment] = ACTIONS(3), + }, [426] = { - [sym_primitive_type] = STATE(424), - [sym_delim_token_tree] = STATE(424), - [sym__delim_tokens] = STATE(424), - [sym__non_delim_token] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1737), + [sym_primitive_type] = STATE(430), + [sym_delim_token_tree] = STATE(430), + [sym__delim_tokens] = STATE(430), + [sym__non_delim_token] = STATE(430), + [sym__literal] = STATE(430), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1747), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -54043,74 +49561,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1703), - [aux_sym__non_special_token_token1] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_abi] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_configurable] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_storage] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_where] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [sym_mutable_specifier] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1739), + [aux_sym__non_special_token_token1] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_abi] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_configurable] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_mod] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [anon_sym_fn] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_impl] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_pub] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_storage] = ACTIONS(1747), + [anon_sym_struct] = ACTIONS(1747), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_where] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1735), + [sym_mutable_specifier] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1749), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1737), + [sym_self] = ACTIONS(1747), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [427] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1481), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1529), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54131,19 +49649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54152,38 +49670,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [428] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1484), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1503), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54204,19 +49722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1751), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54225,39 +49743,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [429] = { - [sym_primitive_type] = STATE(1174), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1536), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_asm_parameter] = STATE(1966), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1507), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54278,18 +49796,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1753), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54298,22 +49816,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [430] = { - [sym_primitive_type] = STATE(418), - [sym_delim_token_tree] = STATE(418), - [sym__delim_tokens] = STATE(418), - [sym__non_delim_token] = STATE(418), - [sym__literal] = STATE(418), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(1745), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -54335,58 +49853,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_abi] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_configurable] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_fn] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_impl] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_pub] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_storage] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_trait] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_where] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [sym_mutable_specifier] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1747), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1755), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1745), + [sym_self] = ACTIONS(1695), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [431] = { - [sym_primitive_type] = STATE(417), - [sym_delim_token_tree] = STATE(417), - [sym__delim_tokens] = STATE(417), - [sym__non_delim_token] = STATE(417), - [sym__literal] = STATE(417), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1749), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -54408,58 +49926,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_RBRACK] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_abi] = ACTIONS(1749), - [anon_sym_as] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_configurable] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_mod] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_fn] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_impl] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_pub] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_storage] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_trait] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_where] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [sym_mutable_specifier] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1753), + [anon_sym_RBRACK] = ACTIONS(1755), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1749), + [sym_self] = ACTIONS(1695), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [432] = { - [sym_primitive_type] = STATE(421), - [sym_delim_token_tree] = STATE(421), - [sym__delim_tokens] = STATE(421), - [sym__non_delim_token] = STATE(421), - [sym__literal] = STATE(421), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1755), + [sym_primitive_type] = STATE(413), + [sym_delim_token_tree] = STATE(413), + [sym__delim_tokens] = STATE(413), + [sym__non_delim_token] = STATE(413), + [sym__literal] = STATE(413), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_delim_token_tree_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1697), [anon_sym_i8] = ACTIONS(1697), [anon_sym_u16] = ACTIONS(1697), @@ -54481,148 +49999,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1697), [anon_sym_str] = ACTIONS(1699), [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1707), - [aux_sym__non_special_token_token1] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_abi] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_configurable] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_mod] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_fn] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_impl] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_pub] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_storage] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_trait] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_where] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [sym_mutable_specifier] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), + [aux_sym__non_special_token_token1] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_abi] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_configurable] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_mod] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_impl] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_storage] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_trait] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_use] = ACTIONS(1695), + [anon_sym_where] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(1709), [sym_integer_literal] = ACTIONS(1711), [aux_sym_string_literal_token1] = ACTIONS(1713), [sym_char_literal] = ACTIONS(1711), [anon_sym_true] = ACTIONS(1715), [anon_sym_false] = ACTIONS(1715), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1755), + [sym_self] = ACTIONS(1695), [sym_raw_string_literal] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [433] = { - [sym_primitive_type] = STATE(420), - [sym_delim_token_tree] = STATE(420), - [sym__delim_tokens] = STATE(420), - [sym__non_delim_token] = STATE(420), - [sym__literal] = STATE(420), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_delim_token_tree_repeat1] = STATE(420), - [sym_identifier] = ACTIONS(1759), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u128] = ACTIONS(1697), - [anon_sym_i128] = ACTIONS(1697), - [anon_sym_u256] = ACTIONS(1697), - [anon_sym_i256] = ACTIONS(1697), - [anon_sym_b256] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [anon_sym_str] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1751), - [aux_sym__non_special_token_token1] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_abi] = ACTIONS(1759), - [anon_sym_as] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_configurable] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_mod] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_impl] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_storage] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_trait] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_use] = ACTIONS(1759), - [anon_sym_where] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [sym_mutable_specifier] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), + [sym_primitive_type] = STATE(1176), + [sym_parameter] = STATE(1802), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1551), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), + [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_u256] = ACTIONS(685), + [anon_sym_i256] = ACTIONS(685), + [anon_sym_b256] = 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_char] = ACTIONS(685), + [anon_sym_str] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_deref] = ACTIONS(723), + [sym_integer_literal] = ACTIONS(725), + [aux_sym_string_literal_token1] = ACTIONS(727), + [sym_char_literal] = ACTIONS(725), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(725), + [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [434] = { - [sym_primitive_type] = STATE(1174), - [sym_asm_parameter] = STATE(1936), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1536), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_asm_parameter] = STATE(1966), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1507), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54643,17 +50161,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54662,38 +50180,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [435] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54714,18 +50232,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(1425), [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54734,38 +50252,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [436] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54786,18 +50304,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54806,38 +50324,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [437] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54858,18 +50376,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54878,38 +50396,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [438] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -54930,18 +50448,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1769), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -54950,39 +50468,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [439] = { - [sym_primitive_type] = STATE(1174), - [sym_parameter] = STATE(1964), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1720), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55003,17 +50520,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1771), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55022,38 +50540,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1735), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [440] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_parameter] = STATE(1894), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1757), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55074,18 +50593,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55094,38 +50612,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [441] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55146,18 +50664,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55166,38 +50684,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [442] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1591), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55218,17 +50736,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55237,38 +50755,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [443] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1465), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1536), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55289,17 +50807,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55308,38 +50826,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [444] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1969), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1243), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55360,17 +50878,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55379,38 +50897,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [445] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1877), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1750), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55431,17 +50949,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55450,38 +50968,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [446] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1808), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1839), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55502,17 +51020,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55521,38 +51039,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [447] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1701), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1950), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55573,17 +51091,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55592,38 +51110,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [448] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1854), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1723), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55644,17 +51162,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55663,38 +51181,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1777), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [449] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1630), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1457), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55715,17 +51233,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55734,38 +51252,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1777), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [450] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1241), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1220), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55786,17 +51304,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), [sym_mutable_specifier] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55806,37 +51324,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1781), - [sym_metavariable] = ACTIONS(893), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [451] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1840), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1537), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55857,17 +51375,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55876,38 +51394,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [452] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1485), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1229), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55928,17 +51446,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -55947,38 +51465,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1783), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [453] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1812), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -55999,17 +51517,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56018,38 +51536,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [454] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1234), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1232), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56070,17 +51588,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56089,38 +51607,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [455] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1239), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1218), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56141,17 +51659,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56160,38 +51678,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [456] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1450), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56212,17 +51730,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), [sym_mutable_specifier] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56231,38 +51749,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [457] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1239), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1872), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56283,17 +51801,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56302,38 +51820,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1787), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [458] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1447), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1946), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56354,17 +51872,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56373,38 +51891,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [459] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56425,17 +51943,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56444,38 +51962,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [460] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1216), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1235), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56496,17 +52014,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56515,38 +52033,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [461] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1220), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56567,17 +52085,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56586,38 +52104,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [462] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1219), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1217), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56638,17 +52156,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56657,38 +52175,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1789), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [463] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1244), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1217), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56709,17 +52227,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56728,38 +52246,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [464] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1793), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1975), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56780,17 +52298,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56799,38 +52317,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [465] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1914), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1974), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56851,17 +52369,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56870,38 +52388,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [466] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1773), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1983), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56922,17 +52440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -56941,38 +52459,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [467] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1471), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1985), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -56993,17 +52511,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -57012,38 +52530,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [468] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1811), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1805), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -57064,17 +52582,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -57083,38 +52601,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [469] = { - [sym_primitive_type] = STATE(1174), - [sym_bracketed_type] = STATE(2084), - [sym_generic_type] = STATE(2083), - [sym_generic_type_with_turbofish] = STATE(2081), - [sym_scoped_identifier] = STATE(1126), - [sym_scoped_type_identifier] = STATE(1673), - [sym_const_block] = STATE(1226), - [sym__pattern] = STATE(1230), - [sym_tuple_pattern] = STATE(1226), - [sym_slice_pattern] = STATE(1226), - [sym_tuple_struct_pattern] = STATE(1226), - [sym_struct_pattern] = STATE(1226), - [sym_remaining_field_pattern] = STATE(1226), - [sym_mut_pattern] = STATE(1226), - [sym_range_pattern] = STATE(1226), - [sym_ref_pattern] = STATE(1226), - [sym_deref_pattern] = STATE(1226), - [sym_captured_pattern] = STATE(1226), - [sym_reference_pattern] = STATE(1226), - [sym_or_pattern] = STATE(1226), - [sym__literal_pattern] = STATE(1193), - [sym_negative_literal] = STATE(1198), - [sym_string_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym_identifier] = ACTIONS(875), + [sym_primitive_type] = STATE(1176), + [sym_bracketed_type] = STATE(2145), + [sym_generic_type] = STATE(2146), + [sym_generic_type_with_turbofish] = STATE(2148), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier] = STATE(1719), + [sym_const_block] = STATE(1236), + [sym__pattern] = STATE(1563), + [sym_tuple_pattern] = STATE(1236), + [sym_slice_pattern] = STATE(1236), + [sym_tuple_struct_pattern] = STATE(1236), + [sym_struct_pattern] = STATE(1236), + [sym_remaining_field_pattern] = STATE(1236), + [sym_mut_pattern] = STATE(1236), + [sym_range_pattern] = STATE(1236), + [sym_ref_pattern] = STATE(1236), + [sym_deref_pattern] = STATE(1236), + [sym_captured_pattern] = STATE(1236), + [sym_reference_pattern] = STATE(1236), + [sym_or_pattern] = STATE(1236), + [sym__literal_pattern] = STATE(1200), + [sym_negative_literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(1423), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), [anon_sym_u16] = ACTIONS(685), @@ -57135,17 +52653,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(685), [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_const] = ACTIONS(883), - [anon_sym_default] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1433), [anon_sym_LT] = ACTIONS(75), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym__] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(889), - [anon_sym_ref] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym__] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(797), + [sym_mutable_specifier] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(721), [anon_sym_deref] = ACTIONS(723), [sym_integer_literal] = ACTIONS(725), @@ -57154,36 +52672,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(729), [anon_sym_false] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(891), - [sym_metavariable] = ACTIONS(893), + [sym_self] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), [sym_block_comment] = ACTIONS(3), }, [470] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1901), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1901), - [sym__literal] = STATE(1901), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1579), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1891), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1891), + [sym__literal] = STATE(1891), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57206,13 +52724,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1807), [anon_sym_COLON_COLON] = ACTIONS(1809), @@ -57231,29 +52749,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [471] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1901), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1901), - [sym__literal] = STATE(1901), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1579), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1891), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1891), + [sym__literal] = STATE(1891), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57276,13 +52794,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1821), [anon_sym_COLON_COLON] = ACTIONS(1809), @@ -57301,29 +52819,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [472] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1901), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1901), - [sym__literal] = STATE(1901), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1579), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1891), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1891), + [sym__literal] = STATE(1891), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57346,13 +52864,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1823), [anon_sym_COLON_COLON] = ACTIONS(1809), @@ -57371,29 +52889,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [473] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1901), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1901), - [sym__literal] = STATE(1901), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1579), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1891), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1891), + [sym__literal] = STATE(1891), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57416,13 +52934,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_GT] = ACTIONS(1825), [anon_sym_COLON_COLON] = ACTIONS(1809), @@ -57441,29 +52959,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [474] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1478), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1796), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1796), - [sym__literal] = STATE(1796), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_attribute_item] = STATE(474), + [aux_sym_enum_variant_list_repeat1] = STATE(474), + [sym_identifier] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_u256] = ACTIONS(1827), + [anon_sym_i256] = ACTIONS(1827), + [anon_sym_b256] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_RBRACK] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_abi] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_storage] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_asm] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym__] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_ref] = ACTIONS(1827), + [sym_mutable_specifier] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1827), + [anon_sym_deref] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1829), + [sym_raw_string_literal] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), + [sym_block_comment] = ACTIONS(3), + }, + [475] = { + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1579), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1891), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1891), + [sym__literal] = STATE(1891), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57486,13 +53073,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(1811), @@ -57509,30 +53096,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, - [475] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1543), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1628), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1628), - [sym__literal] = STATE(1628), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [476] = { + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1533), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1708), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57555,13 +53142,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(1811), @@ -57578,99 +53165,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, - [476] = { - [sym_attribute_item] = STATE(476), - [aux_sym_enum_variant_list_repeat1] = STATE(476), - [sym_identifier] = ACTIONS(1827), - [anon_sym_u8] = ACTIONS(1827), - [anon_sym_i8] = ACTIONS(1827), - [anon_sym_u16] = ACTIONS(1827), - [anon_sym_i16] = ACTIONS(1827), - [anon_sym_u32] = ACTIONS(1827), - [anon_sym_i32] = ACTIONS(1827), - [anon_sym_u64] = ACTIONS(1827), - [anon_sym_i64] = ACTIONS(1827), - [anon_sym_u128] = ACTIONS(1827), - [anon_sym_i128] = ACTIONS(1827), - [anon_sym_u256] = ACTIONS(1827), - [anon_sym_i256] = ACTIONS(1827), - [anon_sym_b256] = ACTIONS(1827), - [anon_sym_isize] = ACTIONS(1827), - [anon_sym_usize] = ACTIONS(1827), - [anon_sym_f32] = ACTIONS(1827), - [anon_sym_f64] = ACTIONS(1827), - [anon_sym_bool] = ACTIONS(1827), - [anon_sym_char] = ACTIONS(1827), - [anon_sym_str] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_abi] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_match] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_storage] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_asm] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym__] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_ref] = ACTIONS(1827), - [sym_mutable_specifier] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_move] = ACTIONS(1827), - [anon_sym_deref] = ACTIONS(1827), - [sym_integer_literal] = ACTIONS(1829), - [aux_sym_string_literal_token1] = ACTIONS(1829), - [sym_char_literal] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1827), - [sym_metavariable] = ACTIONS(1829), - [sym_raw_string_literal] = ACTIONS(1829), - [sym_float_literal] = ACTIONS(1829), - [sym_block_comment] = ACTIONS(3), - }, [477] = { - [sym_primitive_type] = STATE(1109), - [sym_function_modifiers] = STATE(2169), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(2045), - [sym_array_type] = STATE(1176), - [sym_function_type] = STATE(1176), - [sym_tuple_type] = STATE(1176), - [sym_unit_type] = STATE(1176), - [sym_generic_type] = STATE(1077), - [sym_generic_type_with_turbofish] = STATE(1105), - [sym_bounded_type] = STATE(1176), - [sym_type_binding] = STATE(1901), - [sym_reference_type] = STATE(1176), - [sym_pointer_type] = STATE(1176), - [sym_empty_type] = STATE(1176), - [sym_abstract_type] = STATE(1176), - [sym_scoped_identifier] = STATE(2052), - [sym_scoped_type_identifier] = STATE(1262), - [sym_block] = STATE(1901), - [sym__literal] = STATE(1901), - [sym_string_literal] = STATE(1850), - [sym_boolean_literal] = STATE(1850), - [aux_sym_function_modifiers_repeat1] = STATE(1496), + [sym_primitive_type] = STATE(1160), + [sym_function_modifiers] = STATE(1989), + [sym__type] = STATE(1520), + [sym_bracketed_type] = STATE(2049), + [sym_array_type] = STATE(1179), + [sym_function_type] = STATE(1179), + [sym_tuple_type] = STATE(1179), + [sym_unit_type] = STATE(1179), + [sym_generic_type] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1034), + [sym_bounded_type] = STATE(1179), + [sym_type_binding] = STATE(1774), + [sym_reference_type] = STATE(1179), + [sym_pointer_type] = STATE(1179), + [sym_empty_type] = STATE(1179), + [sym_abstract_type] = STATE(1179), + [sym_scoped_identifier] = STATE(2162), + [sym_scoped_type_identifier] = STATE(1278), + [sym_block] = STATE(1774), + [sym__literal] = STATE(1774), + [sym_string_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [aux_sym_function_modifiers_repeat1] = STATE(1521), [sym_identifier] = ACTIONS(1791), [anon_sym_u8] = ACTIONS(685), [anon_sym_i8] = ACTIONS(685), @@ -57693,13 +53211,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(685), [anon_sym_str] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(703), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym_LT] = ACTIONS(75), [anon_sym_COLON_COLON] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(1811), @@ -57717,73 +53235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [478] = { - [sym_identifier] = ACTIONS(1097), - [anon_sym_u8] = ACTIONS(1097), - [anon_sym_i8] = ACTIONS(1097), - [anon_sym_u16] = ACTIONS(1097), - [anon_sym_i16] = ACTIONS(1097), - [anon_sym_u32] = ACTIONS(1097), - [anon_sym_i32] = ACTIONS(1097), - [anon_sym_u64] = ACTIONS(1097), - [anon_sym_i64] = ACTIONS(1097), - [anon_sym_u128] = ACTIONS(1097), - [anon_sym_i128] = ACTIONS(1097), - [anon_sym_u256] = ACTIONS(1097), - [anon_sym_i256] = ACTIONS(1097), - [anon_sym_b256] = ACTIONS(1097), - [anon_sym_isize] = ACTIONS(1097), - [anon_sym_usize] = ACTIONS(1097), - [anon_sym_f32] = ACTIONS(1097), - [anon_sym_f64] = ACTIONS(1097), - [anon_sym_bool] = ACTIONS(1097), - [anon_sym_char] = ACTIONS(1097), - [anon_sym_str] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_abi] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_match] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_storage] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_POUND] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_asm] = ACTIONS(1097), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym__] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_ref] = ACTIONS(1097), - [sym_mutable_specifier] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1097), - [anon_sym_deref] = ACTIONS(1097), - [sym_integer_literal] = ACTIONS(1095), - [aux_sym_string_literal_token1] = ACTIONS(1095), - [sym_char_literal] = ACTIONS(1095), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1097), - [sym_metavariable] = ACTIONS(1095), - [sym_raw_string_literal] = ACTIONS(1095), - [sym_float_literal] = ACTIONS(1095), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { [sym_identifier] = ACTIONS(1834), [anon_sym_u8] = ACTIONS(1834), [anon_sym_i8] = ACTIONS(1834), @@ -57807,10 +53258,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1834), [anon_sym_LBRACK] = ACTIONS(1836), [anon_sym_RBRACK] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), [aux_sym__non_special_token_token1] = ACTIONS(1834), [anon_sym_SQUOTE] = ACTIONS(1834), [anon_sym_abi] = ACTIONS(1834), @@ -57837,6 +53284,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1834), [anon_sym_where] = ACTIONS(1834), [anon_sym_while] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), [sym_mutable_specifier] = ACTIONS(1834), [anon_sym_DOLLAR] = ACTIONS(1836), [sym_integer_literal] = ACTIONS(1836), @@ -57850,7 +53301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [480] = { + [479] = { [sym_identifier] = ACTIONS(1838), [anon_sym_u8] = ACTIONS(1838), [anon_sym_i8] = ACTIONS(1838), @@ -57874,10 +53325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1838), [anon_sym_LBRACK] = ACTIONS(1840), [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), [aux_sym__non_special_token_token1] = ACTIONS(1838), [anon_sym_SQUOTE] = ACTIONS(1838), [anon_sym_abi] = ACTIONS(1838), @@ -57904,6 +53351,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1838), [anon_sym_where] = ACTIONS(1838), [anon_sym_while] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), [sym_mutable_specifier] = ACTIONS(1838), [anon_sym_DOLLAR] = ACTIONS(1840), [sym_integer_literal] = ACTIONS(1840), @@ -57917,7 +53368,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, + [480] = { + [sym_identifier] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_u256] = ACTIONS(1503), + [anon_sym_i256] = ACTIONS(1503), + [anon_sym_b256] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_abi] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_storage] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_asm] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym__] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_ref] = ACTIONS(1503), + [sym_mutable_specifier] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_deref] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym_raw_string_literal] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + [sym_block_comment] = ACTIONS(3), + }, [481] = { + [sym_identifier] = ACTIONS(1585), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_u256] = ACTIONS(1585), + [anon_sym_i256] = ACTIONS(1585), + [anon_sym_b256] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_RBRACK] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_abi] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_storage] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_COLON_COLON] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym__] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_ref] = ACTIONS(1585), + [sym_mutable_specifier] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1585), + [anon_sym_deref] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1583), + [aux_sym_string_literal_token1] = ACTIONS(1583), + [sym_char_literal] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1585), + [sym_metavariable] = ACTIONS(1583), + [sym_raw_string_literal] = ACTIONS(1583), + [sym_float_literal] = ACTIONS(1583), + [sym_block_comment] = ACTIONS(3), + }, + [482] = { [sym_identifier] = ACTIONS(1842), [anon_sym_u8] = ACTIONS(1842), [anon_sym_i8] = ACTIONS(1842), @@ -57941,10 +53526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1842), [anon_sym_LBRACK] = ACTIONS(1844), [anon_sym_RBRACK] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), [aux_sym__non_special_token_token1] = ACTIONS(1842), [anon_sym_SQUOTE] = ACTIONS(1842), [anon_sym_abi] = ACTIONS(1842), @@ -57971,6 +53552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1842), [anon_sym_where] = ACTIONS(1842), [anon_sym_while] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), [sym_mutable_specifier] = ACTIONS(1842), [anon_sym_DOLLAR] = ACTIONS(1844), [sym_integer_literal] = ACTIONS(1844), @@ -57984,7 +53569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [482] = { + [483] = { [sym_identifier] = ACTIONS(1846), [anon_sym_u8] = ACTIONS(1846), [anon_sym_i8] = ACTIONS(1846), @@ -58008,10 +53593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1846), [anon_sym_LBRACK] = ACTIONS(1848), [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), [aux_sym__non_special_token_token1] = ACTIONS(1846), [anon_sym_SQUOTE] = ACTIONS(1846), [anon_sym_abi] = ACTIONS(1846), @@ -58038,6 +53619,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1846), [anon_sym_where] = ACTIONS(1846), [anon_sym_while] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), [sym_mutable_specifier] = ACTIONS(1846), [anon_sym_DOLLAR] = ACTIONS(1848), [sym_integer_literal] = ACTIONS(1848), @@ -58051,7 +53636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [483] = { + [484] = { [sym_identifier] = ACTIONS(1850), [anon_sym_u8] = ACTIONS(1850), [anon_sym_i8] = ACTIONS(1850), @@ -58075,10 +53660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1850), [anon_sym_LBRACK] = ACTIONS(1852), [anon_sym_RBRACK] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), [aux_sym__non_special_token_token1] = ACTIONS(1850), [anon_sym_SQUOTE] = ACTIONS(1850), [anon_sym_abi] = ACTIONS(1850), @@ -58105,6 +53686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1850), [anon_sym_where] = ACTIONS(1850), [anon_sym_while] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), [sym_mutable_specifier] = ACTIONS(1850), [anon_sym_DOLLAR] = ACTIONS(1852), [sym_integer_literal] = ACTIONS(1852), @@ -58118,339 +53703,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [sym_identifier] = ACTIONS(1319), - [anon_sym_u8] = ACTIONS(1319), - [anon_sym_i8] = ACTIONS(1319), - [anon_sym_u16] = ACTIONS(1319), - [anon_sym_i16] = ACTIONS(1319), - [anon_sym_u32] = ACTIONS(1319), - [anon_sym_i32] = ACTIONS(1319), - [anon_sym_u64] = ACTIONS(1319), - [anon_sym_i64] = ACTIONS(1319), - [anon_sym_u128] = ACTIONS(1319), - [anon_sym_i128] = ACTIONS(1319), - [anon_sym_u256] = ACTIONS(1319), - [anon_sym_i256] = ACTIONS(1319), - [anon_sym_b256] = ACTIONS(1319), - [anon_sym_isize] = ACTIONS(1319), - [anon_sym_usize] = ACTIONS(1319), - [anon_sym_f32] = ACTIONS(1319), - [anon_sym_f64] = ACTIONS(1319), - [anon_sym_bool] = ACTIONS(1319), - [anon_sym_char] = ACTIONS(1319), - [anon_sym_str] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_RBRACK] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_abi] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_match] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_storage] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1317), - [anon_sym_COMMA] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1317), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym__] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_ref] = ACTIONS(1319), - [sym_mutable_specifier] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1317), - [anon_sym_yield] = ACTIONS(1319), - [anon_sym_move] = ACTIONS(1319), - [anon_sym_deref] = ACTIONS(1319), - [sym_integer_literal] = ACTIONS(1317), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1319), - [sym_metavariable] = ACTIONS(1317), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_float_literal] = ACTIONS(1317), - [sym_block_comment] = ACTIONS(3), - }, [485] = { - [sym_identifier] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1838), - [anon_sym_i8] = ACTIONS(1838), - [anon_sym_u16] = ACTIONS(1838), - [anon_sym_i16] = ACTIONS(1838), - [anon_sym_u32] = ACTIONS(1838), - [anon_sym_i32] = ACTIONS(1838), - [anon_sym_u64] = ACTIONS(1838), - [anon_sym_i64] = ACTIONS(1838), - [anon_sym_u128] = ACTIONS(1838), - [anon_sym_i128] = ACTIONS(1838), - [anon_sym_u256] = ACTIONS(1838), - [anon_sym_i256] = ACTIONS(1838), - [anon_sym_b256] = ACTIONS(1838), - [anon_sym_isize] = ACTIONS(1838), - [anon_sym_usize] = ACTIONS(1838), - [anon_sym_f32] = ACTIONS(1838), - [anon_sym_f64] = ACTIONS(1838), - [anon_sym_bool] = ACTIONS(1838), - [anon_sym_char] = ACTIONS(1838), - [anon_sym_str] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [aux_sym__non_special_token_token1] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_abi] = ACTIONS(1838), - [anon_sym_as] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_configurable] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_mod] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_fn] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_impl] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_match] = ACTIONS(1838), - [anon_sym_pub] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_storage] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_trait] = ACTIONS(1838), - [anon_sym_type] = ACTIONS(1838), - [anon_sym_use] = ACTIONS(1838), - [anon_sym_where] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [sym_mutable_specifier] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1840), - [aux_sym_string_literal_token1] = ACTIONS(1840), - [sym_char_literal] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1840), - [sym_float_literal] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_u256] = ACTIONS(1381), + [anon_sym_i256] = ACTIONS(1381), + [anon_sym_b256] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_abi] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_storage] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym__] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_ref] = ACTIONS(1381), + [sym_mutable_specifier] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_move] = ACTIONS(1381), + [anon_sym_deref] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym_raw_string_literal] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym_identifier] = ACTIONS(1856), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_u256] = ACTIONS(1856), - [anon_sym_i256] = ACTIONS(1856), - [anon_sym_b256] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_RBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [aux_sym__non_special_token_token1] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_abi] = ACTIONS(1856), - [anon_sym_as] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_configurable] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_storage] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_where] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [sym_mutable_specifier] = ACTIONS(1856), - [anon_sym_DOLLAR] = ACTIONS(1858), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1854), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_u256] = ACTIONS(1854), + [anon_sym_i256] = ACTIONS(1854), + [anon_sym_b256] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_RBRACK] = ACTIONS(1856), + [aux_sym__non_special_token_token1] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_abi] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_configurable] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_storage] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_where] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [sym_mutable_specifier] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1856), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1856), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [sym_self] = ACTIONS(1854), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym_identifier] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(869), - [anon_sym_i8] = ACTIONS(869), - [anon_sym_u16] = ACTIONS(869), - [anon_sym_i16] = ACTIONS(869), - [anon_sym_u32] = ACTIONS(869), - [anon_sym_i32] = ACTIONS(869), - [anon_sym_u64] = ACTIONS(869), - [anon_sym_i64] = ACTIONS(869), - [anon_sym_u128] = ACTIONS(869), - [anon_sym_i128] = ACTIONS(869), - [anon_sym_u256] = ACTIONS(869), - [anon_sym_i256] = ACTIONS(869), - [anon_sym_b256] = ACTIONS(869), - [anon_sym_isize] = ACTIONS(869), - [anon_sym_usize] = ACTIONS(869), - [anon_sym_f32] = ACTIONS(869), - [anon_sym_f64] = ACTIONS(869), - [anon_sym_bool] = ACTIONS(869), - [anon_sym_char] = ACTIONS(869), - [anon_sym_str] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(867), - [anon_sym_RBRACK] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_SQUOTE] = ACTIONS(869), - [anon_sym_abi] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_const] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_default] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_match] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_storage] = ACTIONS(869), - [anon_sym_while] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_asm] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_COLON_COLON] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym__] = ACTIONS(869), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_ref] = ACTIONS(869), - [sym_mutable_specifier] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_yield] = ACTIONS(869), - [anon_sym_move] = ACTIONS(869), - [anon_sym_deref] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(867), - [aux_sym_string_literal_token1] = ACTIONS(867), - [sym_char_literal] = ACTIONS(867), - [anon_sym_true] = ACTIONS(869), - [anon_sym_false] = ACTIONS(869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(869), - [sym_metavariable] = ACTIONS(867), - [sym_raw_string_literal] = ACTIONS(867), - [sym_float_literal] = ACTIONS(867), + [sym_identifier] = ACTIONS(1858), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_u256] = ACTIONS(1858), + [anon_sym_i256] = ACTIONS(1858), + [anon_sym_b256] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1860), + [aux_sym__non_special_token_token1] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_abi] = ACTIONS(1858), + [anon_sym_as] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_configurable] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_storage] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_where] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [sym_mutable_specifier] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(1689), + [sym_self] = ACTIONS(1858), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [488] = { - [sym_identifier] = ACTIONS(1860), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_u256] = ACTIONS(1860), - [anon_sym_i256] = ACTIONS(1860), - [anon_sym_b256] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_u256] = ACTIONS(1850), + [anon_sym_i256] = ACTIONS(1850), + [anon_sym_b256] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_RBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [aux_sym__non_special_token_token1] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_abi] = ACTIONS(1860), - [anon_sym_as] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_configurable] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_storage] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_where] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [sym_mutable_specifier] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1852), + [aux_sym__non_special_token_token1] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_abi] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_configurable] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_storage] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_where] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [sym_mutable_specifier] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), [sym_line_comment] = ACTIONS(1689), - [sym_self] = ACTIONS(1860), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [sym_self] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [489] = { @@ -58477,10 +53995,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1864), [anon_sym_LBRACK] = ACTIONS(1866), [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), [aux_sym__non_special_token_token1] = ACTIONS(1864), [anon_sym_SQUOTE] = ACTIONS(1864), [anon_sym_abi] = ACTIONS(1864), @@ -58507,6 +54021,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1864), [anon_sym_where] = ACTIONS(1864), [anon_sym_while] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), [sym_mutable_specifier] = ACTIONS(1864), [anon_sym_DOLLAR] = ACTIONS(1866), [sym_integer_literal] = ACTIONS(1866), @@ -58528,22 +54046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -58553,42 +54071,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1868), 1, sym_identifier, ACTIONS(1870), 1, - anon_sym_RPAREN, - ACTIONS(1872), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_COMMA, + ACTIONS(1876), 1, + anon_sym_RPAREN, ACTIONS(1878), 1, anon_sym_AMP, - STATE(589), 1, + STATE(604), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1509), 1, + STATE(1554), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(500), 2, + STATE(497), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58623,22 +54141,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -58647,41 +54165,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1880), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58716,22 +54234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -58740,41 +54258,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1882), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58809,22 +54327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -58833,41 +54351,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1884), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58902,22 +54420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -58926,41 +54444,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1886), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -58995,22 +54513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -59019,41 +54537,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1888), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59088,22 +54606,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -59112,41 +54630,41 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1890), 1, anon_sym_RPAREN, - STATE(558), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59176,29 +54694,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [878] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1894), 17, - sym_raw_string_literal, - sym_float_literal, + [878] = 31, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, + anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, + ACTIONS(1793), 1, anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1892), 40, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1870), 1, + anon_sym_pub, + ACTIONS(1872), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(536), 1, + sym_visibility_modifier, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, + sym_primitive_type, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1492), 1, + sym__type, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(903), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1179), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59218,48 +54785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [944] = 31, + [1000] = 31, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -59268,39 +54814,39 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, - STATE(558), 1, + STATE(569), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1725), 1, + STATE(1780), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(499), 2, + STATE(903), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59330,78 +54876,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [1066] = 31, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, - anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, + [1122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1894), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LBRACK, - ACTIONS(1795), 1, + anon_sym_BANG, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + anon_sym_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(1817), 1, - sym_self, - ACTIONS(1819), 1, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1892), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_SQUOTE, + anon_sym_abi, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_match, + anon_sym_return, + anon_sym_storage, + anon_sym_while, + anon_sym_asm, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(1872), 1, - anon_sym_pub, - ACTIONS(1874), 1, - anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(534), 1, - sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, - sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1784), 1, - sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, + sym_self, + [1188] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(836), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(1898), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1896), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59421,27 +54981,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [1188] = 31, + anon_sym_str, + anon_sym_SQUOTE, + anon_sym_abi, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_match, + anon_sym_return, + anon_sym_storage, + anon_sym_while, + anon_sym_asm, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [1254] = 31, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -59450,39 +55031,39 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1868), 1, sym_identifier, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_pub, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_POUND, ACTIONS(1878), 1, anon_sym_AMP, - STATE(602), 1, + STATE(611), 1, sym_visibility_modifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1538), 1, + STATE(1604), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(836), 2, + STATE(498), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59512,81 +55093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [1310] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(829), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(827), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_SQUOTE, - anon_sym_abi, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_match, - anon_sym_return, - anon_sym_storage, - anon_sym_while, - anon_sym_asm, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, [1376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 18, + ACTIONS(608), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, @@ -59598,7 +55116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59642,13 +55160,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 17, + ACTIONS(829), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, @@ -59660,7 +55178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1898), 40, + ACTIONS(827), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59706,18 +55224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(687), 1, anon_sym_str, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, + ACTIONS(1799), 1, anon_sym_fn, - ACTIONS(1805), 1, + ACTIONS(1801), 1, anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1811), 1, @@ -59732,35 +55250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(1906), 1, sym_metavariable, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1520), 1, + STATE(1517), 1, sym_constrained_type_parameter, - STATE(1798), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(1740), 1, sym__type, - STATE(1987), 1, + STATE(1989), 1, + sym_function_modifiers, + STATE(1990), 1, sym_qualified_type, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2169), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1632), 2, + STATE(1716), 2, sym_const_parameter, sym_optional_type_parameter, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59791,65 +55309,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [1627] = 30, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1908), 1, anon_sym_for, - ACTIONS(1912), 1, + ACTIONS(1910), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1329), 1, + STATE(1336), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1332), 2, + STATE(1334), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59859,7 +55377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59880,65 +55398,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [1746] = 30, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, ACTIONS(1914), 1, anon_sym_for, ACTIONS(1916), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1331), 1, + STATE(1335), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1332), 2, + STATE(1334), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -59948,7 +55466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59973,22 +55491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -59999,35 +55517,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1914), 1, + ACTIONS(1908), 1, anon_sym_for, - ACTIONS(1916), 1, + ACTIONS(1910), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1392), 1, + STATE(1335), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1391), 2, + STATE(1334), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60058,65 +55576,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [1984] = 30, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, ACTIONS(1914), 1, anon_sym_for, ACTIONS(1916), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1329), 1, + STATE(1475), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1332), 2, + STATE(1473), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60126,7 +55644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60151,20 +55669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(687), 1, anon_sym_str, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, + ACTIONS(1799), 1, anon_sym_fn, - ACTIONS(1805), 1, + ACTIONS(1801), 1, anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1811), 1, @@ -60175,37 +55693,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1914), 1, anon_sym_for, - ACTIONS(1912), 1, + ACTIONS(1916), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1331), 1, + STATE(1336), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(1989), 1, + sym_function_modifiers, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2169), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1332), 2, + STATE(1334), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60236,65 +55754,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [2222] = 30, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1908), 1, anon_sym_for, - ACTIONS(1912), 1, + ACTIONS(1910), 1, anon_sym_QMARK, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1442), 1, + STATE(1363), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1434), 2, sym_higher_ranked_trait_bound, sym_removed_trait_bound, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60304,7 +55822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60329,24 +55847,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(265), 1, + ACTIONS(283), 1, anon_sym_LBRACE, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -60357,30 +55875,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(713), 1, + STATE(675), 1, sym_block, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1189), 1, + STATE(1188), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60411,60 +55929,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [2456] = 28, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, ACTIONS(1918), 1, - anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + sym_mutable_specifier, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1186), 1, + sym__type, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1587), 1, - sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60474,7 +55992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60497,58 +56015,58 @@ static const uint16_t ts_small_parse_table[] = { [2568] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_AMP, - ACTIONS(1940), 1, - sym_mutable_specifier, - ACTIONS(1942), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, - sym_generic_type, - STATE(658), 1, - sym_primitive_type, - STATE(663), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, + anon_sym_LT, + STATE(578), 1, + sym_type_parameters, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(725), 1, + STATE(1160), 1, + sym_primitive_type, + STATE(1289), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym__type, - STATE(1496), 1, + STATE(1430), 1, + sym_generic_type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60583,22 +56101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -60609,30 +56127,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1946), 1, + ACTIONS(1924), 1, anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1511), 1, + STATE(1585), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60663,60 +56181,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [2792] = 28, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - ACTIONS(1948), 1, - sym_mutable_specifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1188), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1740), 1, + sym__type, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(1990), 1, + sym_qualified_type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60726,7 +56244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60751,22 +56269,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -60777,30 +56295,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1950), 1, + ACTIONS(1926), 1, anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1495), 1, + STATE(1489), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60835,56 +56353,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, - sym_self, - ACTIONS(1819), 1, - sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, anon_sym_AMP, + ACTIONS(1948), 1, + sym_mutable_specifier, + ACTIONS(1950), 1, + sym_self, ACTIONS(1952), 1, - anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + sym_metavariable, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1587), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(732), 1, sym__type, - STATE(2000), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -60919,22 +56437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -60946,29 +56464,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1954), 1, - anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + sym_mutable_specifier, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1587), 1, + STATE(1984), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61003,22 +56521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -61031,28 +56549,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1956), 1, anon_sym_RPAREN, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1587), 1, + STATE(1509), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61085,58 +56603,58 @@ static const uint16_t ts_small_parse_table[] = { [3352] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(355), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, ACTIONS(1958), 1, - sym_identifier, - ACTIONS(1960), 1, - anon_sym_LT, - STATE(555), 1, - sym_type_parameters, - STATE(1105), 1, + sym_mutable_specifier, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1288), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1424), 1, + STATE(1186), 1, sym__type, - STATE(1433), 1, - sym_generic_type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61171,22 +56689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -61197,30 +56715,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1962), 1, - sym_mutable_specifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1904), 1, + STATE(1585), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61251,60 +56769,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [3576] = 28, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1962), 1, + anon_sym_RPAREN, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1798), 1, + STATE(1585), 1, sym__type, - STATE(1987), 1, - sym_qualified_type, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61314,7 +56832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61337,58 +56855,58 @@ static const uint16_t ts_small_parse_table[] = { [3688] = 28, ACTIONS(13), 1, anon_sym_str, - ACTIONS(355), 1, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1960), 1, - anon_sym_LT, ACTIONS(1964), 1, - sym_identifier, - STATE(554), 1, - sym_type_parameters, - STATE(1105), 1, + anon_sym_RPAREN, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1294), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1397), 1, - sym_generic_type, - STATE(1398), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1585), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61419,60 +56937,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [3800] = 28, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(687), 1, + ACTIONS(13), 1, anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, - sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1922), 1, + anon_sym_LT, ACTIONS(1966), 1, - sym_mutable_specifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + sym_identifier, + STATE(592), 1, + sym_type_parameters, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1160), 1, sym_primitive_type, - STATE(1188), 1, - sym__type, - STATE(1262), 1, + STATE(1298), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1381), 1, + sym__type, + STATE(1435), 1, + sym_generic_type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61482,7 +57000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61507,54 +57025,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1180), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(719), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61585,58 +57103,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [4021] = 27, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1960), 1, + STATE(1893), 1, sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61646,7 +57164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61671,22 +57189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -61697,28 +57215,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1423), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1673), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61749,58 +57267,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [4239] = 27, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1376), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1749), 1, + sym__type, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61810,7 +57328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61835,22 +57353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -61861,28 +57379,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1427), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1761), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61917,22 +57435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -61943,28 +57461,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1425), 1, + STATE(1376), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -61995,58 +57513,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [4566] = 27, - ACTIONS(13), 1, - anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1922), 1, + STATE(1570), 1, sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62056,7 +57574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62081,22 +57599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -62107,28 +57625,110 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(1105), 1, + STATE(1160), 1, + sym_primitive_type, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1192), 1, + sym__type, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1179), 9, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [4784] = 27, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, + anon_sym_BANG, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, + ACTIONS(1817), 1, + sym_self, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1912), 1, + sym_identifier, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1511), 1, + STATE(1632), 1, sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62138,7 +57738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62158,27 +57758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [4784] = 27, + [4893] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -62189,28 +57789,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1547), 1, + STATE(1191), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62240,27 +57840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [4893] = 27, + [5002] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -62271,28 +57871,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1782), 1, + STATE(1391), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62322,27 +57922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5002] = 27, + [5111] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -62353,28 +57953,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1399), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1542), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62404,25 +58004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5111] = 27, + [5220] = 27, ACTIONS(75), 1, anon_sym_LT, ACTIONS(687), 1, anon_sym_str, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, + ACTIONS(1799), 1, anon_sym_fn, - ACTIONS(1805), 1, + ACTIONS(1801), 1, anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1811), 1, @@ -62433,30 +58033,30 @@ static const uint16_t ts_small_parse_table[] = { sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1912), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1188), 1, + sym__type, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1663), 1, - sym__type, - STATE(2045), 1, + STATE(1989), 1, + sym_function_modifiers, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2169), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62486,59 +58086,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5220] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5329] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, - sym_scoped_type_identifier, - STATE(1330), 1, + STATE(1189), 1, sym__type, - STATE(1496), 1, + STATE(1278), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62548,7 +58148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62568,59 +58168,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5329] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5438] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, + anon_sym_BANG, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(1799), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(1801), 1, anon_sym_impl, - ACTIONS(1932), 1, - anon_sym_BANG, - ACTIONS(1934), 1, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(1811), 1, anon_sym_STAR, - ACTIONS(1938), 1, + ACTIONS(1813), 1, anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + ACTIONS(1912), 1, + sym_identifier, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(730), 1, + STATE(1192), 1, sym__type, - STATE(1496), 1, + STATE(1278), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2057), 1, - sym_scoped_identifier, - STATE(2140), 1, + STATE(2049), 1, sym_bracketed_type, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62630,7 +58230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62650,27 +58250,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5438] = 27, + [5547] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -62681,28 +58281,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1377), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1560), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62732,59 +58332,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5547] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5656] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1893), 1, + STATE(1360), 1, sym__type, - STATE(2000), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62794,7 +58394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62814,59 +58414,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5656] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5765] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1177), 1, + sym__type, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1662), 1, - sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62876,7 +58476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62896,59 +58496,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5765] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5874] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1182), 1, + sym__type, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1875), 1, - sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -62958,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62978,59 +58578,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5874] = 27, - ACTIONS(13), 1, - anon_sym_str, + [5983] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1194), 1, + sym__type, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1515), 1, - sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63040,7 +58640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63060,27 +58660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [5983] = 27, + [6092] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63091,28 +58691,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1387), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1720), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63142,59 +58742,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6092] = 27, - ACTIONS(13), 1, - anon_sym_str, + [6201] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1333), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63204,7 +58804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63224,27 +58824,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6201] = 27, + [6310] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63255,28 +58855,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1411), 1, + STATE(1512), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63306,59 +58906,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6310] = 27, - ACTIONS(13), 1, - anon_sym_str, + [6419] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1825), 1, + STATE(1625), 1, sym__type, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63368,7 +58968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63388,59 +58988,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6419] = 27, - ACTIONS(13), 1, - anon_sym_str, + [6528] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, - sym_scoped_type_identifier, - STATE(1480), 1, + STATE(1191), 1, sym__type, - STATE(1496), 1, + STATE(1278), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63450,7 +59050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63470,27 +59070,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6528] = 27, + [6637] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63501,28 +59101,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1371), 1, + STATE(1360), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63552,27 +59152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6637] = 27, + [6746] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63583,28 +59183,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1430), 1, + STATE(1188), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63634,27 +59234,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6746] = 27, + [6855] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63665,28 +59265,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1710), 1, + STATE(1515), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63716,27 +59316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6855] = 27, + [6964] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63747,28 +59347,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1780), 1, + STATE(1365), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63798,27 +59398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [6964] = 27, + [7073] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -63829,28 +59429,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1432), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1573), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63880,59 +59480,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7073] = 27, + [7182] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1968), 1, - sym_identifier, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1293), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1368), 1, - sym_generic_type, - STATE(1370), 1, + STATE(1489), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -63962,59 +59562,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7182] = 27, + [7291] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1878), 1, - anon_sym_AMP, - ACTIONS(1970), 1, - sym_identifier, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1292), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1383), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, sym_generic_type, - STATE(1388), 1, + STATE(671), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64044,59 +59644,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7291] = 27, + [7400] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1743), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(672), 1, sym__type, - STATE(2000), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64126,59 +59726,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7400] = 27, + [7509] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1381), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(708), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64208,59 +59808,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7509] = 27, + [7618] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1784), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(711), 1, sym__type, - STATE(2000), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64290,27 +59890,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7618] = 27, + [7727] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64321,28 +59921,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1666), 1, + STATE(1941), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64372,59 +59972,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7727] = 27, + [7836] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1819), 1, + sym_metavariable, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1968), 1, sym_self, - ACTIONS(1944), 1, - sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(705), 1, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1499), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64454,59 +60054,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7836] = 27, + [7945] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, + ACTIONS(1795), 1, anon_sym_const, - ACTIONS(1920), 1, + ACTIONS(1928), 1, sym_identifier, - ACTIONS(1922), 1, + ACTIONS(1930), 1, anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, + ACTIONS(1932), 1, anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(1934), 1, + ACTIONS(1940), 1, + anon_sym_LPAREN, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(1944), 1, anon_sym_STAR, - ACTIONS(1938), 1, + ACTIONS(1946), 1, anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1950), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1952), 1, sym_metavariable, - STATE(625), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(634), 1, - sym_generic_type, - STATE(658), 1, + STATE(647), 1, sym_primitive_type, - STATE(663), 1, + STATE(648), 1, sym_generic_type_with_turbofish, - STATE(745), 1, + STATE(669), 1, + sym_generic_type, + STATE(694), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, - sym_function_modifiers, STATE(2057), 1, + sym_function_modifiers, + STATE(2060), 1, sym_scoped_identifier, - STATE(2140), 1, + STATE(2143), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64536,27 +60136,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [7945] = 27, + [8054] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64567,28 +60167,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1610), 1, + STATE(1776), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64618,27 +60218,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8054] = 27, + [8163] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64649,28 +60249,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1587), 1, + STATE(1415), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64700,27 +60300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8163] = 27, + [8272] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64731,28 +60331,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1597), 1, + STATE(1784), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64782,59 +60382,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8272] = 27, + [8381] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1774), 1, + STATE(1438), 1, sym__type, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64844,7 +60444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64864,27 +60464,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8381] = 27, + [8490] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64895,28 +60495,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1974), 1, + STATE(1846), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -64946,27 +60546,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8490] = 27, + [8599] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -64977,28 +60577,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1975), 1, + STATE(1836), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65028,59 +60628,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8599] = 27, + [8708] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(695), 1, - sym__type, - STATE(1496), 1, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(1792), 1, + sym__type, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65110,27 +60710,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8708] = 27, + [8817] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65141,28 +60741,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1415), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1808), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65192,27 +60792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8817] = 27, + [8926] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65223,28 +60823,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1757), 1, + STATE(1853), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65274,27 +60874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [8926] = 27, + [9035] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65305,28 +60905,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1913), 1, + STATE(1854), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65356,59 +60956,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9035] = 27, + [9144] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1189), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1333), 1, + sym__type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65418,7 +61018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65438,59 +61038,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9144] = 27, + [9253] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1187), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1189), 1, + sym__type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65500,7 +61100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65520,27 +61120,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9253] = 27, + [9362] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65551,28 +61151,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1184), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1933), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65602,59 +61202,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9362] = 27, + [9471] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1182), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1382), 1, + sym__type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65664,7 +61264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65684,27 +61284,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9471] = 27, + [9580] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65715,28 +61315,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1848), 1, + STATE(1727), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65766,59 +61366,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9580] = 27, + [9689] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + ACTIONS(1970), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1288), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1602), 1, + STATE(1362), 1, sym__type, - STATE(2045), 1, + STATE(1364), 1, + sym_generic_type, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65828,7 +61428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65848,27 +61448,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9689] = 27, + [9798] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -65879,28 +61479,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1982), 1, + STATE(1177), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -65930,59 +61530,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9798] = 27, + [9907] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1928), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(1936), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(1938), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(1942), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(1944), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_AMP, + ACTIONS(1950), 1, sym_self, - ACTIONS(1819), 1, + ACTIONS(1952), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, + STATE(623), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1584), 1, + STATE(647), 1, + sym_primitive_type, + STATE(648), 1, + sym_generic_type_with_turbofish, + STATE(669), 1, + sym_generic_type, + STATE(730), 1, sym__type, - STATE(2000), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2057), 1, sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, + STATE(2060), 1, sym_scoped_identifier, + STATE(2143), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(684), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66012,59 +61612,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [9907] = 27, - ACTIONS(13), 1, - anon_sym_str, + [10016] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1326), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1606), 1, + sym__type, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66074,7 +61674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66094,59 +61694,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10016] = 27, - ACTIONS(13), 1, - anon_sym_str, + [10125] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1189), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1745), 1, + sym__type, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66156,7 +61756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66176,59 +61776,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10125] = 27, - ACTIONS(13), 1, - anon_sym_str, + [10234] = 27, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(357), 1, - anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(707), 1, - anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1799), 1, + anon_sym_fn, + ACTIONS(1801), 1, + anon_sym_impl, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1811), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1278), 1, sym_scoped_type_identifier, - STATE(1187), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, + STATE(1737), 1, + sym__type, + STATE(1989), 1, sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66238,7 +61838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(11), 19, + ACTIONS(685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66258,27 +61858,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10234] = 27, + [10343] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66289,28 +61889,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1358), 1, + STATE(1182), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66340,59 +61940,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10343] = 27, + [10452] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1604), 1, + STATE(1374), 1, sym__type, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66402,7 +62002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66422,27 +62022,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10452] = 27, + [10561] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66453,28 +62053,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1405), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1585), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66504,141 +62104,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [10561] = 27, + [10670] = 27, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, ACTIONS(1819), 1, sym_metavariable, ACTIONS(1868), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - ACTIONS(1972), 1, - sym_self, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, - sym_primitive_type, - STATE(1112), 1, - sym_scoped_type_identifier, - STATE(1491), 1, - sym__type, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, - sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1176), 9, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [10670] = 27, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, - anon_sym_BANG, - ACTIONS(1793), 1, - anon_sym_LBRACK, - ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, - anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, - ACTIONS(1805), 1, - anon_sym_impl, - ACTIONS(1809), 1, - anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, - ACTIONS(1817), 1, - sym_self, - ACTIONS(1819), 1, - sym_metavariable, - ACTIONS(1908), 1, - sym_identifier, - STATE(1077), 1, + STATE(1088), 1, sym_generic_type, - STATE(1105), 1, - sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1160), 1, sym_primitive_type, - STATE(1172), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(1765), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66648,7 +62166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66673,22 +62191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66699,28 +62217,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1177), 1, + STATE(1484), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66755,22 +62273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66781,28 +62299,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1538), 1, + STATE(1377), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66837,22 +62355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66863,28 +62381,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1390), 1, + STATE(1194), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -66919,22 +62437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -66945,28 +62463,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1524), 1, + STATE(1668), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67001,54 +62519,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1868), 1, - sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1972), 1, + sym_identifier, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1286), 1, sym_scoped_type_identifier, - STATE(1182), 1, + STATE(1385), 1, sym__type, - STATE(1496), 1, + STATE(1436), 1, + sym_generic_type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67079,58 +62597,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [11324] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1330), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(1752), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67140,7 +62658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67165,22 +62683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67191,28 +62709,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1389), 1, + STATE(1514), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67247,22 +62765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67273,28 +62791,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1374), 1, + STATE(1394), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67329,22 +62847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67355,28 +62873,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1521), 1, + STATE(1395), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67411,22 +62929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67437,28 +62955,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1676), 1, + STATE(1495), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67493,22 +63011,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67519,28 +63037,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1382), 1, - sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1818), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67575,54 +63093,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(752), 1, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1398), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67657,22 +63175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67683,28 +63201,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1957), 1, + STATE(1400), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67739,22 +63257,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67765,28 +63283,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1546), 1, + STATE(1439), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67821,22 +63339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -67847,28 +63365,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1502), 1, + STATE(1522), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67899,58 +63417,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [12414] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1184), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(1851), 1, + sym__type, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -67960,7 +63478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67981,58 +63499,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [12523] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1177), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1492), 1, + sym__type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68042,7 +63560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68067,54 +63585,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(722), 1, - sym__type, - STATE(1496), 1, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(1609), 1, + sym__type, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68145,58 +63663,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [12741] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1963), 1, + STATE(1863), 1, sym__type, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68206,7 +63724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68227,58 +63745,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [12850] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1180), 1, - sym__type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1406), 1, + sym__type, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68288,7 +63806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68313,22 +63831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -68339,28 +63857,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1172), 1, + STATE(1404), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68391,58 +63909,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [13068] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1712), 1, + STATE(1408), 1, sym__type, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68452,7 +63970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68473,58 +63991,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [13177] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(1684), 1, + STATE(1875), 1, sym__type, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68534,7 +64052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68559,54 +64077,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1920), 1, - sym_identifier, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1924), 1, - anon_sym_LPAREN, - ACTIONS(1926), 1, - anon_sym_default, - ACTIONS(1928), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(1930), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(1932), 1, + ACTIONS(699), 1, anon_sym_BANG, - ACTIONS(1934), 1, - anon_sym_COLON_COLON, - ACTIONS(1936), 1, + ACTIONS(707), 1, anon_sym_STAR, - ACTIONS(1938), 1, - anon_sym_AMP, - ACTIONS(1942), 1, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, sym_self, - ACTIONS(1944), 1, + ACTIONS(1819), 1, sym_metavariable, - STATE(625), 1, - sym_scoped_type_identifier, - STATE(634), 1, + ACTIONS(1868), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, + sym_generic_type_with_turbofish, + STATE(1088), 1, sym_generic_type, - STATE(658), 1, + STATE(1160), 1, sym_primitive_type, - STATE(663), 1, - sym_generic_type_with_turbofish, - STATE(742), 1, - sym__type, - STATE(1496), 1, + STATE(1170), 1, + sym_scoped_type_identifier, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2054), 1, + STATE(1780), 1, + sym__type, + STATE(2049), 1, + sym_bracketed_type, + STATE(2059), 1, sym_function_modifiers, - STATE(2057), 1, + STATE(2162), 1, sym_scoped_identifier, - STATE(2140), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(716), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68641,22 +64159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -68667,28 +64185,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1733), 1, + STATE(1411), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68723,22 +64241,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_fn, - ACTIONS(357), 1, + ACTIONS(355), 1, anon_sym_impl, - ACTIONS(703), 1, + ACTIONS(699), 1, anon_sym_BANG, ACTIONS(707), 1, anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, + ACTIONS(1805), 1, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, @@ -68749,28 +64267,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1878), 1, anon_sym_AMP, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1112), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1711), 1, + STATE(1412), 1, sym__type, - STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, + STATE(2059), 1, + sym_function_modifiers, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68801,58 +64319,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [13613] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(1705), 1, + STATE(1413), 1, sym__type, - STATE(2045), 1, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68862,7 +64380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68883,58 +64401,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_char, [13722] = 27, + ACTIONS(13), 1, + anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(703), 1, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(355), 1, + anon_sym_impl, + ACTIONS(699), 1, anon_sym_BANG, + ACTIONS(707), 1, + anon_sym_STAR, ACTIONS(1793), 1, anon_sym_LBRACK, ACTIONS(1795), 1, - anon_sym_LPAREN, - ACTIONS(1799), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, - anon_sym_fn, ACTIONS(1805), 1, - anon_sym_impl, + anon_sym_LPAREN, ACTIONS(1809), 1, anon_sym_COLON_COLON, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_AMP, ACTIONS(1817), 1, sym_self, ACTIONS(1819), 1, sym_metavariable, - ACTIONS(1908), 1, + ACTIONS(1868), 1, sym_identifier, - STATE(1077), 1, - sym_generic_type, - STATE(1105), 1, + ACTIONS(1878), 1, + anon_sym_AMP, + STATE(1034), 1, sym_generic_type_with_turbofish, - STATE(1109), 1, + STATE(1088), 1, + sym_generic_type, + STATE(1160), 1, sym_primitive_type, - STATE(1262), 1, + STATE(1170), 1, sym_scoped_type_identifier, - STATE(1326), 1, + STATE(1424), 1, sym__type, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2169), 1, + STATE(2059), 1, sym_function_modifiers, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1176), 9, + STATE(1179), 9, sym_array_type, sym_function_type, sym_tuple_type, @@ -68944,7 +64462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type, sym_empty_type, sym_abstract_type, - ACTIONS(685), 19, + ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68964,49 +64482,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [13831] = 3, + [13831] = 8, + ACTIONS(1978), 1, + anon_sym_LPAREN, + ACTIONS(1980), 1, + anon_sym_COLON_COLON, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(655), 1, + sym_type_arguments, + STATE(661), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 20, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, + ACTIONS(1976), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_else, anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(1866), 29, + ACTIONS(1974), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, - anon_sym_COLON_COLON, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69016,58 +64540,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [13889] = 8, - ACTIONS(1976), 1, - anon_sym_LPAREN, - ACTIONS(1980), 1, - anon_sym_COLON_COLON, - ACTIONS(1982), 1, - anon_sym_LT2, - STATE(641), 1, - sym_parameters, - STATE(652), 1, - sym_type_arguments, + [13899] = 4, + ACTIONS(1984), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 17, + ACTIONS(1850), 20, + anon_sym_as, + anon_sym_where, anon_sym_EQ, + anon_sym_COLON, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_else, anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(1974), 27, + sym_identifier, + ACTIONS(1852), 28, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, - anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69077,23 +64595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [13957] = 8, - ACTIONS(1976), 1, + [13959] = 8, + ACTIONS(1978), 1, anon_sym_LPAREN, ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(1988), 1, + ACTIONS(1990), 1, anon_sym_COLON_COLON, - STATE(641), 1, - sym_parameters, - STATE(652), 1, + STATE(655), 1, sym_type_arguments, + STATE(661), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 17, + ACTIONS(1988), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69111,15 +64630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(1984), 27, + ACTIONS(1986), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69139,17 +64658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14025] = 4, - ACTIONS(1990), 1, - anon_sym_LBRACK, + [14027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 20, - anon_sym_COLON, + ACTIONS(1864), 20, anon_sym_as, anon_sym_where, anon_sym_EQ, + anon_sym_COLON, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69166,14 +64683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_DOT, sym_identifier, - ACTIONS(1840), 28, + ACTIONS(1866), 29, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -69199,11 +64717,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 20, - anon_sym_COLON, + ACTIONS(1850), 20, anon_sym_as, anon_sym_where, anon_sym_EQ, + anon_sym_COLON, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, @@ -69220,15 +64738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_DOT, sym_identifier, - ACTIONS(1840), 29, + ACTIONS(1852), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -69254,12 +64772,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(867), 15, + ACTIONS(1501), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, @@ -69270,7 +64788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(869), 33, + ACTIONS(1503), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69308,12 +64826,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1095), 15, + ACTIONS(1583), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, @@ -69324,7 +64842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1097), 33, + ACTIONS(1585), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69358,16 +64876,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, sym_self, - [14257] = 3, + [14257] = 7, + ACTIONS(1978), 1, + anon_sym_LPAREN, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(656), 1, + sym_type_arguments, + STATE(663), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1994), 17, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(1992), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [14322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1317), 15, + ACTIONS(1379), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, @@ -69378,7 +64954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1319), 33, + ACTIONS(1381), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69412,19 +64988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, sym_self, - [14314] = 7, - ACTIONS(1976), 1, + [14379] = 7, + ACTIONS(1978), 1, anon_sym_LPAREN, ACTIONS(1982), 1, anon_sym_LT2, - STATE(640), 1, - sym_parameters, - STATE(651), 1, + STATE(656), 1, sym_type_arguments, + STATE(663), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 17, + ACTIONS(1998), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69442,15 +65018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(1992), 27, + ACTIONS(1996), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69470,19 +65046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14379] = 7, - ACTIONS(1976), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, - anon_sym_LT2, - STATE(640), 1, - sym_parameters, - STATE(651), 1, - sym_type_arguments, + [14444] = 5, + ACTIONS(2002), 1, + anon_sym_SQUOTE, + STATE(695), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 17, + ACTIONS(2004), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69493,22 +65065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(1996), 27, + ACTIONS(2000), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69517,6 +65088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69526,15 +65098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14444] = 4, - ACTIONS(2004), 1, + [14504] = 6, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(2008), 1, anon_sym_COLON_COLON, + STATE(717), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 17, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69545,32 +65122,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2000), 29, + ACTIONS(515), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69580,15 +65154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14502] = 4, - ACTIONS(2010), 1, + [14566] = 4, + ACTIONS(2014), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2008), 17, + ACTIONS(2012), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69606,16 +65181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2006), 29, + ACTIONS(2010), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69636,13 +65211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14560] = 4, + [14624] = 6, + ACTIONS(2006), 1, + anon_sym_LBRACE, ACTIONS(2016), 1, anon_sym_COLON_COLON, + STATE(1852), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 17, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69653,32 +65232,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2012), 29, + ACTIONS(515), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69688,9 +65264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14618] = 4, + [14686] = 4, ACTIONS(2022), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, @@ -69718,12 +65295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69744,17 +65321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14676] = 6, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(2026), 1, + [14744] = 4, + ACTIONS(2028), 1, anon_sym_COLON_COLON, - STATE(1895), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(2026), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69765,29 +65338,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(495), 29, + ACTIONS(2024), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69797,20 +65373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14738] = 6, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(2028), 1, + [14802] = 4, + ACTIONS(2034), 1, anon_sym_COLON_COLON, - STATE(712), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(2032), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69821,29 +65392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(495), 29, + ACTIONS(2030), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -69853,18 +65427,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14800] = 5, - ACTIONS(2032), 1, - anon_sym_SQUOTE, - STATE(680), 1, - sym_loop_label, + [14860] = 7, + ACTIONS(2042), 1, + anon_sym_COLON_COLON, + ACTIONS(2044), 1, + anon_sym_LT2, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2034), 15, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2040), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69875,21 +65454,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2030), 30, + ACTIONS(2036), 23, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2048), 15, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2046), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -69911,11 +65537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14860] = 3, + [14978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2038), 15, + ACTIONS(2052), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69931,16 +65557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2036), 31, + ACTIONS(2050), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -69963,13 +65589,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14915] = 4, - ACTIONS(2040), 1, + [15033] = 12, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_PLUS, + ACTIONS(2062), 1, anon_sym_COLON_COLON, + STATE(717), 1, + sym_field_initializer_list, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 15, + ACTIONS(2054), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(513), 16, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(515), 20, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2066), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -69985,16 +65670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1996), 30, + ACTIONS(2064), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -70016,11 +65702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [14972] = 3, + [15161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2020), 17, + ACTIONS(2070), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70031,32 +65717,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2018), 29, + ACTIONS(2068), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70066,13 +65751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15027] = 3, + [15216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2044), 15, + ACTIONS(2074), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70088,16 +65774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2042), 31, + ACTIONS(2072), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, @@ -70120,13 +65806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15082] = 4, - ACTIONS(2050), 1, - anon_sym_DASH_GT, + [15271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2048), 15, + ACTIONS(2078), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70142,18 +65826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2046), 30, + ACTIONS(2076), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70173,11 +65858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15139] = 3, + [15326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2054), 15, + ACTIONS(2082), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70193,19 +65878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2052), 31, + ACTIONS(2080), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70225,13 +65910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15194] = 4, - ACTIONS(2056), 1, + [15381] = 4, + ACTIONS(2086), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2058), 15, + ACTIONS(2084), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70247,15 +65932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2022), 30, + ACTIONS(2034), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -70278,13 +65963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15251] = 4, - ACTIONS(2064), 1, - anon_sym_DASH_GT, + [15438] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2062), 15, + ACTIONS(2092), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70300,16 +65986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2060), 30, + ACTIONS(2088), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -70331,13 +66016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15308] = 4, - ACTIONS(2070), 1, - anon_sym_DASH_GT, + [15495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2068), 15, + ACTIONS(2084), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70353,18 +66036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2066), 30, + ACTIONS(2034), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70384,14 +66068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15365] = 4, + [15550] = 4, + ACTIONS(2096), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2036), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2074), 15, + ACTIONS(2094), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70407,17 +66090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 29, + ACTIONS(2028), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70437,8 +66121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15422] = 4, - ACTIONS(2040), 1, + [15607] = 4, + ACTIONS(2098), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -70463,65 +66147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [15479] = 4, - ACTIONS(2080), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2078), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2076), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -70543,11 +66174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15536] = 3, + [15664] = 4, + ACTIONS(2100), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2084), 15, + ACTIONS(1994), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70563,17 +66196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2082), 31, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -70595,11 +66227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15591] = 3, + [15721] = 4, + ACTIONS(2102), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2088), 15, + ACTIONS(1994), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70615,19 +66249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2086), 31, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70647,15 +66280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15646] = 5, - ACTIONS(2090), 1, - anon_sym_else, - STATE(682), 1, - sym_else_clause, + [15778] = 4, + ACTIONS(2108), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 15, + ACTIONS(2106), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70671,69 +66302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(419), 29, + ACTIONS(2104), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [15705] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2058), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2022), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70753,15 +66333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15760] = 5, - ACTIONS(2094), 1, - anon_sym_LPAREN, - STATE(728), 1, - sym_arguments, + [15835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2096), 15, + ACTIONS(2112), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70777,67 +66353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2092), 29, + ACTIONS(2110), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [15819] = 4, - ACTIONS(2098), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2100), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2016), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -70860,11 +66385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15876] = 3, + [15890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2104), 15, + ACTIONS(2116), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70880,16 +66405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2102), 31, + ACTIONS(2114), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -70912,11 +66437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15931] = 3, + [15945] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2108), 15, + ACTIONS(2118), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70932,19 +66460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2106), 31, + ACTIONS(2088), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -70964,11 +66490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [15986] = 3, + [16002] = 5, + ACTIONS(2124), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2112), 15, + ACTIONS(2122), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -70984,17 +66514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2110), 31, + ACTIONS(2120), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -71016,11 +66544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16041] = 3, + [16061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2116), 15, + ACTIONS(2128), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71036,16 +66564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2114), 31, + ACTIONS(2126), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -71068,13 +66596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16096] = 4, - ACTIONS(2118), 1, - anon_sym_LBRACE, + [16116] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2120), 15, + ACTIONS(2132), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71090,15 +66616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2010), 30, + ACTIONS(2130), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -71121,13 +66648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16153] = 4, - ACTIONS(2122), 1, - anon_sym_COLON_COLON, + [16171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 15, + ACTIONS(2136), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71143,18 +66668,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1996), 30, + ACTIONS(2134), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71174,11 +66700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16210] = 3, + [16226] = 5, + ACTIONS(2138), 1, + anon_sym_else, + STATE(734), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2126), 15, + ACTIONS(421), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71194,19 +66724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2124), 31, + ACTIONS(419), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71226,13 +66754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16265] = 4, - ACTIONS(2128), 1, - anon_sym_COLON_COLON, + [16285] = 4, + ACTIONS(2144), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 15, + ACTIONS(2142), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71248,16 +66776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1996), 30, + ACTIONS(2140), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -71279,11 +66807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16322] = 3, + [16342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2132), 15, + ACTIONS(679), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71299,132 +66827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2130), 31, + ACTIONS(681), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [16377] = 12, - ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_PLUS, - ACTIONS(2142), 1, - anon_sym_COLON_COLON, - ACTIONS(2144), 1, - anon_sym_LT2, - STATE(712), 1, - sym_field_initializer_list, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2134), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(493), 16, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(495), 20, - anon_sym_LBRACK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [16450] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2148), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2146), 31, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71444,11 +66859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16505] = 3, + [16397] = 4, + ACTIONS(2146), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2152), 15, + ACTIONS(1998), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71464,19 +66881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2150), 31, + ACTIONS(1996), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71496,13 +66912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16560] = 4, - ACTIONS(2154), 1, - anon_sym_COLON_COLON, + [16454] = 4, + ACTIONS(2152), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 15, + ACTIONS(2150), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71518,16 +66934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1996), 30, + ACTIONS(2148), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -71549,11 +66965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16617] = 3, + [16511] = 4, + ACTIONS(2156), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2158), 15, + ACTIONS(2154), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71569,16 +66987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2156), 31, + ACTIONS(2022), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_COLON_COLON, @@ -71601,14 +67018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16672] = 4, + [16568] = 4, + ACTIONS(2162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2052), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2074), 15, + ACTIONS(2160), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71624,15 +67040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 29, + ACTIONS(2158), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -71654,11 +67071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16729] = 3, + [16625] = 4, + ACTIONS(2166), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(679), 15, + ACTIONS(2164), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71674,19 +67093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(681), 31, + ACTIONS(2014), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71706,13 +67124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16784] = 4, - ACTIONS(2160), 1, - anon_sym_LBRACE, + [16682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2162), 15, + ACTIONS(2170), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71728,18 +67144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2004), 30, + ACTIONS(2168), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_QMARK, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71759,11 +67176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16841] = 3, + [16737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(499), 15, + ACTIONS(2172), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71779,18 +67196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(497), 30, + ACTIONS(2092), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71810,11 +67228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16895] = 3, + [16792] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(513), 15, + ACTIONS(2032), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71825,30 +67243,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(511), 30, + ACTIONS(2030), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -71858,14 +67278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [16949] = 3, + [16847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 15, + ACTIONS(2174), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71881,18 +67300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1852), 30, + ACTIONS(2118), 31, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71912,13 +67332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17003] = 4, - ACTIONS(2168), 1, + [16902] = 4, + ACTIONS(2146), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2166), 15, + ACTIONS(1994), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -71934,15 +67354,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 29, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -71964,31 +67385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17059] = 12, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_PLUS, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2170), 1, - anon_sym_COLON_COLON, - STATE(712), 1, - sym_field_initializer_list, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + [16959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2134), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(493), 16, + ACTIONS(2178), 15, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -71997,23 +67400,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(495), 19, + ACTIONS(2176), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -72023,12 +67433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17131] = 3, + anon_sym_EQ_GT, + [17013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(531), 15, + ACTIONS(2182), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72044,16 +67456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(529), 30, + ACTIONS(2180), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72075,11 +67487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17185] = 3, + [17067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(449), 15, + ACTIONS(2186), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72095,16 +67507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(447), 30, + ACTIONS(2184), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72126,11 +67538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17239] = 3, + [17121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(1834), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72146,16 +67558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 30, + ACTIONS(1836), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72177,13 +67589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17293] = 4, - ACTIONS(2172), 1, - anon_sym_COLON_COLON, + [17175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(2190), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72199,15 +67609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 29, + ACTIONS(2188), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72229,11 +67640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17349] = 3, + [17229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2176), 15, + ACTIONS(449), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72249,16 +67660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2174), 30, + ACTIONS(447), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72280,11 +67691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17403] = 3, + [17283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2180), 15, + ACTIONS(2192), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72300,16 +67711,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2178), 30, + ACTIONS(425), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [17337] = 12, + ACTIONS(2006), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_PLUS, + ACTIONS(2194), 1, + anon_sym_COLON_COLON, + STATE(717), 1, + sym_field_initializer_list, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2054), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(513), 16, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(515), 19, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [17409] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2198), 15, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2196), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72331,11 +67853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17457] = 3, + [17463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2184), 15, + ACTIONS(2202), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72351,16 +67873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2182), 30, + ACTIONS(2200), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72382,11 +67904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17511] = 3, + [17517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2188), 15, + ACTIONS(2206), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72402,16 +67924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2186), 30, + ACTIONS(2204), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72433,11 +67955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17565] = 3, + [17571] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2192), 15, + ACTIONS(2210), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72453,16 +67975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2190), 30, + ACTIONS(2208), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72484,11 +68006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17619] = 3, + [17625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(487), 15, + ACTIONS(459), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72504,16 +68026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(485), 30, + ACTIONS(457), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72535,11 +68057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17673] = 3, + [17679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2196), 15, + ACTIONS(463), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72555,16 +68077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2194), 30, + ACTIONS(461), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72586,11 +68108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17727] = 3, + [17733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2200), 15, + ACTIONS(1994), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72606,16 +68128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2198), 30, + ACTIONS(1992), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72637,11 +68159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17781] = 3, + [17787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 15, + ACTIONS(507), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72657,16 +68179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1844), 30, + ACTIONS(505), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72688,11 +68210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17835] = 3, + [17841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2204), 15, + ACTIONS(2214), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72708,16 +68230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2202), 30, + ACTIONS(2212), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72739,11 +68261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [17889] = 3, + [17895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + ACTIONS(429), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72759,127 +68281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(439), 30, + ACTIONS(427), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [17943] = 12, - ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_PLUS, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2206), 1, - anon_sym_COLON_COLON, - STATE(712), 1, - sym_field_initializer_list, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1984), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(493), 16, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(495), 19, - anon_sym_LBRACK, - anon_sym_as, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [18015] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(505), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(503), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -72901,11 +68312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18069] = 3, + [17949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(1846), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -72921,67 +68332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(519), 30, + ACTIONS(1848), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [18123] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2210), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2208), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73003,11 +68363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18177] = 3, + [18003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 15, + ACTIONS(2218), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73023,16 +68383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1848), 30, + ACTIONS(2216), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73054,11 +68414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18231] = 3, + [18057] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2214), 15, + ACTIONS(519), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73074,16 +68434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2212), 30, + ACTIONS(517), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73105,11 +68465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18285] = 3, + [18111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2218), 15, + ACTIONS(2222), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73125,16 +68485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2216), 30, + ACTIONS(2220), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73156,11 +68516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18339] = 3, + [18165] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2222), 15, + ACTIONS(2226), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73176,16 +68536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2220), 30, + ACTIONS(2224), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73207,11 +68567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18393] = 3, + [18219] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(539), 15, + ACTIONS(2230), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73227,16 +68587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(537), 30, + ACTIONS(2228), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73258,11 +68618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18447] = 3, + [18273] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2226), 15, + ACTIONS(2234), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73278,16 +68638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2224), 30, + ACTIONS(2232), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73309,11 +68669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18501] = 3, + [18327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2230), 15, + ACTIONS(2238), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73329,16 +68689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2228), 30, + ACTIONS(2236), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73360,11 +68720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18555] = 3, + [18381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2234), 15, + ACTIONS(2242), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73380,16 +68740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2232), 30, + ACTIONS(2240), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73411,11 +68771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18609] = 3, + [18435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(477), 15, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73431,16 +68791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(475), 30, + ACTIONS(2088), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73462,11 +68822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18663] = 3, + [18489] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2238), 15, + ACTIONS(2246), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73482,16 +68842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2236), 30, + ACTIONS(2244), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73513,11 +68873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18717] = 3, + [18543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2242), 15, + ACTIONS(2250), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73533,16 +68893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2240), 30, + ACTIONS(2248), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73564,11 +68924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18771] = 3, + [18597] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2246), 15, + ACTIONS(2254), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73584,16 +68944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2244), 30, + ACTIONS(2252), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73615,11 +68975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18825] = 3, + [18651] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2250), 15, + ACTIONS(2258), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73635,16 +68995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2248), 30, + ACTIONS(2256), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73666,11 +69026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18879] = 3, + [18705] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2254), 15, + ACTIONS(2262), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73686,16 +69046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2252), 30, + ACTIONS(2260), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73717,11 +69077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18933] = 3, + [18759] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2258), 15, + ACTIONS(2266), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73737,16 +69097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2256), 30, + ACTIONS(2264), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73768,11 +69128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [18987] = 3, + [18813] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2262), 15, + ACTIONS(2270), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73788,16 +69148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2260), 30, + ACTIONS(2268), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73819,11 +69179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19041] = 3, + [18867] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2266), 15, + ACTIONS(469), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73839,16 +69199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2264), 30, + ACTIONS(467), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73870,11 +69230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19095] = 3, + [18921] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2270), 15, + ACTIONS(291), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73890,16 +69250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2268), 30, + ACTIONS(289), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73921,11 +69281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19149] = 3, + [18975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(2274), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73941,16 +69301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(435), 30, + ACTIONS(2272), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -73972,11 +69332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19203] = 3, + [19029] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 15, + ACTIONS(2278), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -73992,16 +69352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1836), 30, + ACTIONS(2276), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74023,11 +69383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19257] = 3, + [19083] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2274), 15, + ACTIONS(2282), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74043,16 +69403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2272), 30, + ACTIONS(2280), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74074,11 +69434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19311] = 3, + [19137] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(517), 15, + ACTIONS(477), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74094,16 +69454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(515), 30, + ACTIONS(475), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74125,11 +69485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19365] = 3, + [19191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2276), 15, + ACTIONS(2286), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74145,16 +69505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(429), 30, + ACTIONS(2284), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74176,11 +69536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19419] = 3, + [19245] = 4, + ACTIONS(2288), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(483), 15, + ACTIONS(2040), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74196,16 +69558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(481), 30, + ACTIONS(2036), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74227,7 +69588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19473] = 3, + [19301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -74251,12 +69612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74278,11 +69639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19527] = 3, + [19355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2280), 15, + ACTIONS(2292), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74298,16 +69659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2278), 30, + ACTIONS(2290), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74329,11 +69690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19581] = 3, + [19409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2284), 15, + ACTIONS(1858), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74349,16 +69710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2282), 30, + ACTIONS(1860), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74380,11 +69741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19635] = 3, + [19463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2288), 15, + ACTIONS(2296), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74400,16 +69761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2286), 30, + ACTIONS(2294), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74431,11 +69792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19689] = 3, + [19517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2292), 15, + ACTIONS(2300), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74451,16 +69812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2290), 30, + ACTIONS(2298), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74482,11 +69843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19743] = 3, + [19571] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2296), 15, + ACTIONS(2304), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74502,16 +69863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2294), 30, + ACTIONS(2302), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74533,11 +69894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19797] = 3, + [19625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 15, + ACTIONS(2308), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74553,16 +69914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2298), 30, + ACTIONS(2306), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74584,11 +69945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19851] = 3, + [19679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2074), 15, + ACTIONS(2312), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74604,16 +69965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 30, + ACTIONS(2310), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74635,11 +69996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19905] = 3, + [19733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2304), 15, + ACTIONS(2316), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74655,16 +70016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2302), 30, + ACTIONS(2314), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74686,11 +70047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [19959] = 3, + [19787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2308), 15, + ACTIONS(523), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74706,16 +70067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2306), 30, + ACTIONS(521), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74737,11 +70098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20013] = 3, + [19841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2312), 15, + ACTIONS(527), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74757,16 +70118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2310), 30, + ACTIONS(525), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74788,11 +70149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20067] = 3, + [19895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2316), 15, + ACTIONS(531), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74808,16 +70169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2314), 30, + ACTIONS(529), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74839,11 +70200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20121] = 3, + [19949] = 4, + ACTIONS(2318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74859,16 +70222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2318), 30, + ACTIONS(515), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74890,13 +70252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20175] = 4, - ACTIONS(2168), 1, - anon_sym_COLON_COLON, + [20005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2166), 15, + ACTIONS(445), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74912,15 +70272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 29, + ACTIONS(443), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74942,11 +70303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20231] = 3, + [20059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 15, + ACTIONS(537), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -74962,16 +70323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2322), 30, + ACTIONS(535), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -74993,11 +70354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20285] = 3, + [20113] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 15, + ACTIONS(2122), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75013,16 +70374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2326), 30, + ACTIONS(2120), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75044,11 +70405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20339] = 3, + [20167] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2332), 15, + ACTIONS(2322), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75064,16 +70425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2330), 30, + ACTIONS(2320), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75095,11 +70456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20393] = 3, + [20221] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 15, + ACTIONS(2326), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75115,16 +70476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2334), 30, + ACTIONS(2324), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75146,11 +70507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20447] = 3, + [20275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 15, + ACTIONS(2330), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75166,16 +70527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1992), 30, + ACTIONS(2328), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75197,11 +70558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20501] = 3, + [20329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 15, + ACTIONS(2334), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75217,16 +70578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2338), 30, + ACTIONS(2332), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75248,11 +70609,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20555] = 3, + [20383] = 12, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_PLUS, + ACTIONS(2336), 1, + anon_sym_COLON_COLON, + STATE(717), 1, + sym_field_initializer_list, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 15, + ACTIONS(1986), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(513), 16, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(515), 19, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [20455] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(541), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75268,16 +70689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2342), 30, + ACTIONS(539), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75299,63 +70720,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20609] = 4, - ACTIONS(2350), 1, - anon_sym_RBRACE, + [20509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, + ACTIONS(2340), 15, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_STAR, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2346), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [20665] = 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2338), 30, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [20563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2354), 15, + ACTIONS(2344), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75371,16 +70791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2352), 30, + ACTIONS(2342), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75402,11 +70822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20719] = 3, + [20617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 15, + ACTIONS(2348), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75422,68 +70842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2356), 30, + ACTIONS(2346), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [20773] = 4, - ACTIONS(2360), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(493), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(495), 29, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75505,11 +70873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20829] = 3, + [20671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2096), 15, + ACTIONS(2352), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75525,67 +70893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2092), 30, + ACTIONS(2350), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [20883] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 15, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2362), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75607,18 +70924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [20937] = 4, - ACTIONS(2370), 1, + [20725] = 4, + ACTIONS(2358), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2368), 14, + ACTIONS(2356), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, @@ -75628,7 +70945,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2366), 30, + ACTIONS(2354), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75659,11 +70976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, sym_self, - [20993] = 3, + [20781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(297), 15, + ACTIONS(2362), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75679,16 +70996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(295), 30, + ACTIONS(2360), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75710,11 +71027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21047] = 3, + [20835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2374), 15, + ACTIONS(2366), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75730,16 +71047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2372), 30, + ACTIONS(2364), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75761,62 +71078,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21101] = 3, + [20889] = 4, + ACTIONS(2372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(509), 15, - anon_sym_EQ, - anon_sym_PLUS, + ACTIONS(2370), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(507), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [21155] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2368), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [20945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 15, + ACTIONS(455), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75832,16 +71150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2376), 30, + ACTIONS(453), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75863,11 +71181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21209] = 3, + [20999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 15, + ACTIONS(2376), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75883,16 +71201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(425), 30, + ACTIONS(2374), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75914,11 +71232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21263] = 3, + [21053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(535), 15, + ACTIONS(437), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75934,16 +71252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(533), 30, + ACTIONS(435), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -75965,11 +71283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21317] = 3, + [21107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 15, + ACTIONS(473), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -75985,16 +71303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2380), 30, + ACTIONS(471), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -76016,11 +71334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21371] = 3, + [21161] = 4, + ACTIONS(2378), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(527), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -76036,16 +71356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(525), 30, + ACTIONS(515), 29, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -76067,11 +71386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21425] = 3, + [21217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2382), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -76087,16 +71406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 30, + ACTIONS(2380), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_as, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -76118,114 +71437,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21479] = 18, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2394), 1, - anon_sym_EQ, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, + [21271] = 4, + ACTIONS(2288), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2040), 15, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2388), 19, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [21562] = 13, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2406), 1, anon_sym_DOT_DOT, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2424), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2422), 25, + anon_sym_DOT, + ACTIONS(2036), 29, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76243,28 +71489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21635] = 8, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2420), 1, - anon_sym_DOT, + [21327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2424), 13, + ACTIONS(2386), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -76272,15 +71508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2422), 25, + anon_sym_DOT, + ACTIONS(2384), 30, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76298,47 +71540,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21698] = 11, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2420), 1, - anon_sym_DOT, + [21381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 6, + ACTIONS(498), 15, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_STAR, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2422), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(500), 30, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76356,123 +71591,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21767] = 16, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2424), 1, - anon_sym_EQ, + [21435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(1854), 15, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2422), 21, + anon_sym_DOT, + ACTIONS(1856), 30, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [21846] = 18, - ACTIONS(269), 1, - anon_sym_EQ, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2404), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(261), 19, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76484,17 +71642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [21929] = 5, - ACTIONS(2428), 1, + [21489] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2388), 1, anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, + ACTIONS(2038), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - ACTIONS(2166), 15, + ACTIONS(2040), 17, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -76505,18 +71667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2164), 25, - anon_sym_SEMI, + ACTIONS(2036), 22, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -76524,7 +71687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -76534,47 +71696,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21986] = 9, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2420), 1, - anon_sym_DOT, + [21551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 10, + ACTIONS(2392), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_STAR, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2422), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2390), 30, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76592,60 +71748,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22051] = 18, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_EQ, + [21605] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2396), 15, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2430), 19, + anon_sym_DOT, + ACTIONS(2394), 30, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76657,63 +71799,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22134] = 20, - ACTIONS(2390), 1, + [21659] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2434), 8, + ACTIONS(2398), 19, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_QMARK, anon_sym_else, - anon_sym_EQ_GT, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76724,44 +71863,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22221] = 10, - ACTIONS(2390), 1, + anon_sym_EQ_GT, + [21742] = 7, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 8, + ACTIONS(2434), 13, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_STAR, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2422), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2432), 26, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -76781,58 +71918,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22288] = 18, - ACTIONS(2390), 1, + [21803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2356), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2354), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym__, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_deref, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + [21856] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2444), 1, + ACTIONS(2438), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2442), 19, + ACTIONS(2436), 19, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_PLUS_EQ, @@ -76846,48 +72033,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22371] = 14, - ACTIONS(2390), 1, + [21939] = 9, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, + anon_sym_as, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2424), 3, + ACTIONS(2442), 10, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(2422), 25, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2440), 25, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -76907,60 +72089,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22446] = 18, - ACTIONS(2390), 1, + [22004] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2448), 1, + ACTIONS(2446), 1, anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2446), 19, + ACTIONS(2444), 8, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, anon_sym_else, + anon_sym_EQ_GT, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76971,17 +72156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_GT, - [22529] = 3, + [22091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2368), 14, + ACTIONS(2370), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, @@ -76991,7 +72175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2366), 30, + ACTIONS(2368), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77022,59 +72206,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_identifier, sym_self, - [22582] = 17, - ACTIONS(2390), 1, + [22144] = 14, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2424), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2422), 20, + ACTIONS(2442), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2440), 25, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77086,60 +72267,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22663] = 18, - ACTIONS(2390), 1, + [22219] = 8, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, + anon_sym_as, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2452), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2442), 13, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2450), 19, + ACTIONS(2440), 25, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77151,41 +72322,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22746] = 7, - ACTIONS(2390), 1, + [22282] = 11, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2406), 1, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2456), 13, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2442), 6, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2454), 26, + ACTIONS(2440), 25, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -77205,41 +72380,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22807] = 7, - ACTIONS(2390), 1, + [22351] = 16, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2406), 1, - anon_sym_DOT_DOT, - ACTIONS(2420), 1, - anon_sym_DOT, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2442), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2460), 13, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2440), 21, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22430] = 17, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2442), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2440), 20, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22511] = 13, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2442), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2440), 25, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22584] = 18, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, anon_sym_PIPE, + ACTIONS(2424), 1, anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2454), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2458), 26, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2452), 19, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22667] = 12, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2442), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2440), 25, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -77259,20 +72691,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22868] = 7, - ACTIONS(2390), 1, + [22738] = 18, + ACTIONS(265), 1, + anon_sym_EQ, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2406), 1, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, anon_sym_DOT_DOT, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2464), 13, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(261), 19, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22821] = 7, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2458), 13, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -77286,14 +72783,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2462), 26, + ACTIONS(2456), 26, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [22882] = 7, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2462), 13, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2460), 26, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -77313,46 +72864,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [22929] = 12, - ACTIONS(2390), 1, + [22943] = 10, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2406), 1, + anon_sym_as, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2424), 5, + ACTIONS(2442), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2422), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2440), 25, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_else, anon_sym_AMP_AMP, @@ -77372,113 +72921,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_GT, - [23000] = 3, + [23010] = 18, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2416), 1, + anon_sym_DOT_DOT, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2466), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_POUND, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2464), 19, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [23093] = 18, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, + ACTIONS(2416), 1, anon_sym_DOT_DOT, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2470), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2346), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym__, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_deref, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - [23053] = 20, - ACTIONS(2390), 1, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2468), 19, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_GT, + [23176] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2406), 1, + ACTIONS(2416), 1, anon_sym_DOT_DOT, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2404), 2, + ACTIONS(2414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2466), 8, + ACTIONS(2472), 8, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_else, anon_sym_EQ_GT, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77489,21 +73118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23140] = 7, - ACTIONS(2012), 1, + [23263] = 7, + ACTIONS(2030), 1, anon_sym_LT2, - ACTIONS(2098), 1, + ACTIONS(2086), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2468), 3, + ACTIONS(2474), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2100), 16, + ACTIONS(2084), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77520,7 +73149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2016), 21, + ACTIONS(2034), 21, anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, @@ -77542,21 +73171,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23200] = 7, - ACTIONS(2018), 1, + [23323] = 7, + ACTIONS(2024), 1, anon_sym_LT2, - ACTIONS(2056), 1, + ACTIONS(2096), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 3, + ACTIONS(2480), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2058), 16, + ACTIONS(2094), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77573,7 +73202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2022), 21, + ACTIONS(2028), 21, anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, @@ -77595,22 +73224,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23260] = 7, - ACTIONS(2006), 1, + [23383] = 7, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2118), 1, - anon_sym_LBRACE, - ACTIONS(2483), 1, - anon_sym_PLUS, + ACTIONS(2486), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2120), 16, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2040), 17, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -77626,12 +73256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2010), 21, + ACTIONS(2036), 20, anon_sym_LBRACK, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -77648,7 +73277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23320] = 22, + [23443] = 22, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, @@ -77657,41 +73286,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, - ACTIONS(2486), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2490), 1, - anon_sym_LPAREN, ACTIONS(2492), 1, anon_sym_default, ACTIONS(2494), 1, anon_sym_for, ACTIONS(2496), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(2498), 1, - anon_sym_AMP, + anon_sym_STAR, ACTIONS(2500), 1, + anon_sym_AMP, + ACTIONS(2502), 1, sym_metavariable, - STATE(1553), 1, + STATE(1488), 1, sym_scoped_type_identifier, - STATE(1588), 1, - sym_generic_type, STATE(1590), 1, sym_primitive_type, - STATE(1682), 1, + STATE(1612), 1, + sym_generic_type, + STATE(1638), 1, sym_where_predicate, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2046), 1, + STATE(2050), 1, sym_generic_type_with_turbofish, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2488), 2, + ACTIONS(2490), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(1853), 4, + STATE(1979), 4, sym_higher_ranked_trait_bound, sym_tuple_type, sym_reference_type, @@ -77716,7 +73345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [23410] = 22, + [23533] = 22, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, @@ -77725,41 +73354,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, - ACTIONS(2486), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2490), 1, - anon_sym_LPAREN, ACTIONS(2492), 1, anon_sym_default, ACTIONS(2494), 1, anon_sym_for, ACTIONS(2496), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(2498), 1, - anon_sym_AMP, + anon_sym_STAR, ACTIONS(2500), 1, + anon_sym_AMP, + ACTIONS(2502), 1, sym_metavariable, - STATE(1553), 1, + STATE(1488), 1, sym_scoped_type_identifier, - STATE(1588), 1, - sym_generic_type, STATE(1590), 1, sym_primitive_type, - STATE(1682), 1, + STATE(1612), 1, + sym_generic_type, + STATE(1638), 1, sym_where_predicate, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2046), 1, + STATE(2050), 1, sym_generic_type_with_turbofish, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(1853), 4, + STATE(1979), 4, sym_higher_ranked_trait_bound, sym_tuple_type, sym_reference_type, @@ -77784,21 +73413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [23500] = 7, - ACTIONS(2000), 1, + [23623] = 7, + ACTIONS(2010), 1, anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(2166), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(2509), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 3, + ACTIONS(2506), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2162), 16, + ACTIONS(2164), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77815,7 +73444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2004), 21, + ACTIONS(2014), 21, anon_sym_LBRACK, anon_sym_as, anon_sym_COMMA, @@ -77837,19 +73466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23560] = 5, - ACTIONS(2510), 1, - anon_sym_COLON_COLON, + [23683] = 7, + ACTIONS(2018), 1, + anon_sym_LT2, + ACTIONS(2156), 1, + anon_sym_LBRACE, + ACTIONS(2515), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2166), 15, + ACTIONS(2512), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2154), 16, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -77858,25 +73490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2164), 24, + ACTIONS(2022), 21, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_as, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77886,19 +73518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23616] = 5, - ACTIONS(2168), 1, + [23743] = 5, + ACTIONS(2288), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, + ACTIONS(2038), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - ACTIONS(2166), 15, + ACTIONS(2040), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -77914,12 +73545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 24, + ACTIONS(2036), 24, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -77939,21 +73570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23672] = 7, - ACTIONS(2000), 1, + [23799] = 7, + ACTIONS(2018), 1, anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(2515), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 3, + ACTIONS(2512), 3, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2162), 16, + ACTIONS(2154), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -77970,7 +73601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2004), 20, + ACTIONS(2022), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -77991,21 +73622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23731] = 7, - ACTIONS(2098), 1, + [23858] = 7, + ACTIONS(2030), 1, + anon_sym_LT2, + ACTIONS(2086), 1, anon_sym_LBRACE, - ACTIONS(2468), 1, - anon_sym_LPAREN, - ACTIONS(2471), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2012), 3, - anon_sym_RPAREN, + ACTIONS(2474), 3, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2100), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2084), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78022,7 +73653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2016), 20, + ACTIONS(2034), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78043,21 +73674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23790] = 7, - ACTIONS(2056), 1, + [23917] = 7, + ACTIONS(2024), 1, + anon_sym_LT2, + ACTIONS(2096), 1, anon_sym_LBRACE, - ACTIONS(2474), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 3, - anon_sym_RPAREN, + ACTIONS(2480), 3, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2058), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2094), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78074,7 +73705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2022), 20, + ACTIONS(2028), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78095,21 +73726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23849] = 7, - ACTIONS(2018), 1, + [23976] = 7, + ACTIONS(2010), 1, anon_sym_LT2, - ACTIONS(2056), 1, + ACTIONS(2166), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2509), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 3, + ACTIONS(2506), 3, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2058), 16, + ACTIONS(2164), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78126,7 +73757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2022), 20, + ACTIONS(2014), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78147,21 +73778,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23908] = 7, - ACTIONS(2006), 1, + [24035] = 6, + ACTIONS(2030), 1, anon_sym_LT2, - ACTIONS(2118), 1, - anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 3, + ACTIONS(2474), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_LPAREN, + ACTIONS(2084), 16, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2034), 21, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [24092] = 7, + ACTIONS(2086), 1, + anon_sym_LBRACE, + ACTIONS(2474), 1, + anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2030), 3, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LT2, + ACTIONS(2084), 16, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2034), 20, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [24151] = 7, + ACTIONS(2166), 1, + anon_sym_LBRACE, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2509), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2010), 3, anon_sym_COMMA, - ACTIONS(2120), 16, + anon_sym_RPAREN, + anon_sym_LT2, + ACTIONS(2164), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78178,7 +73912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2010), 20, + ACTIONS(2014), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78199,7 +73933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [23967] = 19, + [24210] = 19, ACTIONS(75), 1, anon_sym_LT, ACTIONS(687), 1, @@ -78208,33 +73942,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(727), 1, aux_sym_string_literal_token1, - ACTIONS(2512), 1, + ACTIONS(2518), 1, sym_identifier, - ACTIONS(2514), 1, + ACTIONS(2520), 1, anon_sym_default, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2518), 1, + ACTIONS(2524), 1, sym_self, - ACTIONS(2520), 1, + ACTIONS(2526), 1, sym_metavariable, - STATE(1211), 1, - sym_primitive_type, - STATE(1212), 1, + STATE(1210), 1, sym_scoped_identifier, - STATE(1232), 1, + STATE(1213), 1, + sym_primitive_type, + STATE(1238), 1, sym__literal_pattern, - STATE(2003), 1, + STATE(2041), 1, + sym_bracketed_type, + STATE(2179), 1, sym_generic_type_with_turbofish, - STATE(2037), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(729), 2, + anon_sym_true, + anon_sym_false, + STATE(1197), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(725), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(685), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [24293] = 19, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(687), 1, + anon_sym_str, + ACTIONS(721), 1, + anon_sym_DASH, + ACTIONS(727), 1, + aux_sym_string_literal_token1, + ACTIONS(2522), 1, + anon_sym_COLON_COLON, + ACTIONS(2528), 1, + sym_identifier, + ACTIONS(2530), 1, + anon_sym_default, + ACTIONS(2532), 1, + sym_self, + ACTIONS(2534), 1, + sym_metavariable, + STATE(1203), 1, + sym_primitive_type, + STATE(1204), 1, + sym_scoped_identifier, + STATE(1230), 1, + sym__literal_pattern, + STATE(2041), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(729), 2, anon_sym_true, anon_sym_false, - STATE(1198), 3, + STATE(1197), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -78263,21 +74061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [24050] = 7, - ACTIONS(2160), 1, + [24376] = 7, + ACTIONS(2096), 1, anon_sym_LBRACE, - ACTIONS(2504), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2483), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 3, - anon_sym_RPAREN, + ACTIONS(2024), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT2, - ACTIONS(2162), 16, + ACTIONS(2094), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78294,7 +74092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2004), 20, + ACTIONS(2028), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78315,21 +74113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [24109] = 7, - ACTIONS(2012), 1, - anon_sym_LT2, - ACTIONS(2098), 1, + [24435] = 7, + ACTIONS(2156), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2512), 1, + anon_sym_LPAREN, + ACTIONS(2515), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2468), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2018), 3, anon_sym_COMMA, - ACTIONS(2100), 16, + anon_sym_RPAREN, + anon_sym_LT2, + ACTIONS(2154), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78346,7 +74144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2016), 20, + ACTIONS(2022), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78367,21 +74165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [24168] = 7, - ACTIONS(2118), 1, - anon_sym_LBRACE, - ACTIONS(2480), 1, + [24494] = 6, + ACTIONS(2474), 1, anon_sym_LPAREN, - ACTIONS(2483), 1, + ACTIONS(2477), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 3, - anon_sym_RPAREN, + ACTIONS(2030), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT2, - ACTIONS(2120), 16, + ACTIONS(2084), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78398,7 +74194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2010), 20, + ACTIONS(2034), 20, anon_sym_LBRACK, anon_sym_as, anon_sym_QMARK, @@ -78419,8 +74215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [24227] = 6, - ACTIONS(2018), 1, + [24550] = 6, + ACTIONS(2030), 1, anon_sym_LT2, ACTIONS(2477), 1, anon_sym_PLUS, @@ -78428,10 +74224,10 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, ACTIONS(2474), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2058), 16, + anon_sym_RPAREN, + ACTIONS(2084), 16, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78448,10 +74244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2022), 21, + ACTIONS(2034), 20, anon_sym_LBRACK, anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -78470,81 +74265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [24284] = 19, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(687), 1, - anon_sym_str, - ACTIONS(721), 1, - anon_sym_DASH, - ACTIONS(727), 1, - aux_sym_string_literal_token1, - ACTIONS(2516), 1, - anon_sym_COLON_COLON, - ACTIONS(2522), 1, - sym_identifier, - ACTIONS(2524), 1, - anon_sym_default, - ACTIONS(2526), 1, - sym_self, - ACTIONS(2528), 1, - sym_metavariable, - STATE(1209), 1, - sym_primitive_type, - STATE(1210), 1, - sym_scoped_identifier, - STATE(1222), 1, - sym__literal_pattern, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2037), 1, - sym_bracketed_type, + [24606] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(729), 2, - anon_sym_true, - anon_sym_false, - STATE(1198), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(725), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(685), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [24367] = 5, - ACTIONS(2530), 1, + ACTIONS(2092), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2166), 15, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -78560,10 +74290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 22, + ACTIONS(2088), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78583,61 +74313,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24421] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2036), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(2074), 15, - anon_sym_EQ, - anon_sym_PLUS, + [24658] = 21, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2492), 1, + anon_sym_default, + ACTIONS(2494), 1, + anon_sym_for, + ACTIONS(2496), 1, + anon_sym_LPAREN, + ACTIONS(2498), 1, anon_sym_STAR, + ACTIONS(2500), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2072), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24473] = 4, - ACTIONS(2532), 1, - anon_sym_COLON_COLON, + ACTIONS(2502), 1, + sym_metavariable, + STATE(1488), 1, + sym_scoped_type_identifier, + STATE(1534), 1, + sym_where_predicate, + STATE(1590), 1, + sym_primitive_type, + STATE(1612), 1, + sym_generic_type, + STATE(2049), 1, + sym_bracketed_type, + STATE(2050), 1, + sym_generic_type_with_turbofish, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + STATE(1979), 4, + sym_higher_ranked_trait_bound, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [24744] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2118), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -78653,13 +74403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 25, - anon_sym_SEMI, + ACTIONS(2088), 22, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78679,18 +74426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24525] = 6, - ACTIONS(2537), 1, - anon_sym_PLUS, - ACTIONS(2540), 1, + [24796] = 6, + ACTIONS(2042), 1, anon_sym_COLON_COLON, + ACTIONS(2539), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 2, + ACTIONS(2536), 2, anon_sym_SEMI, anon_sym_RBRACK, - ACTIONS(493), 14, + ACTIONS(2040), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78705,11 +74452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 23, + ACTIONS(2036), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78729,13 +74476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24581] = 4, - ACTIONS(2540), 1, + [24852] = 4, + ACTIONS(2542), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -78751,13 +74498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 25, + ACTIONS(515), 25, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78777,19 +74524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24633] = 6, - ACTIONS(2018), 1, - anon_sym_LT2, - ACTIONS(2477), 1, + [24904] = 6, + ACTIONS(2547), 1, anon_sym_PLUS, + ACTIONS(2550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2058), 16, + ACTIONS(2544), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(513), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -78799,24 +74545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2022), 20, + ACTIONS(515), 23, anon_sym_LBRACK, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -78826,8 +74572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24689] = 21, + [24960] = 21, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, @@ -78836,38 +74583,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, - ACTIONS(2486), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2490), 1, - anon_sym_LPAREN, ACTIONS(2492), 1, anon_sym_default, ACTIONS(2494), 1, anon_sym_for, ACTIONS(2496), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(2498), 1, - anon_sym_AMP, + anon_sym_STAR, ACTIONS(2500), 1, + anon_sym_AMP, + ACTIONS(2502), 1, sym_metavariable, - STATE(1553), 1, + STATE(1488), 1, sym_scoped_type_identifier, - STATE(1588), 1, - sym_generic_type, STATE(1590), 1, sym_primitive_type, - STATE(1682), 1, + STATE(1612), 1, + sym_generic_type, + STATE(1638), 1, sym_where_predicate, - STATE(2045), 1, + STATE(2049), 1, sym_bracketed_type, - STATE(2046), 1, + STATE(2050), 1, sym_generic_type_with_turbofish, - STATE(2052), 1, + STATE(2162), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1853), 4, + STATE(1979), 4, sym_higher_ranked_trait_bound, sym_tuple_type, sym_reference_type, @@ -78892,19 +74639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [24775] = 6, - ACTIONS(2428), 1, + [25046] = 4, + ACTIONS(2550), 1, anon_sym_COLON_COLON, - ACTIONS(2545), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2166), 14, + ACTIONS(513), 15, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -78918,11 +74661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 23, + ACTIONS(515), 25, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78942,18 +74687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24831] = 4, + [25098] = 5, + ACTIONS(2555), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2052), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - ACTIONS(2074), 15, + ACTIONS(2552), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(2386), 14, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -78967,10 +74711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 22, + ACTIONS(2384), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -78990,134 +74735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24883] = 21, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(1809), 1, + [25151] = 5, + ACTIONS(2016), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, - sym_self, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_default, - ACTIONS(2494), 1, - anon_sym_for, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, - sym_metavariable, - STATE(1549), 1, - sym_where_predicate, - STATE(1553), 1, - sym_scoped_type_identifier, - STATE(1588), 1, - sym_generic_type, - STATE(1590), 1, - sym_primitive_type, - STATE(2045), 1, - sym_bracketed_type, - STATE(2046), 1, - sym_generic_type_with_turbofish, - STATE(2052), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1853), 4, - sym_higher_ranked_trait_bound, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [24969] = 6, - ACTIONS(2474), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_PLUS, + STATE(1852), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2058), 16, + ACTIONS(513), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2022), 20, - anon_sym_LBRACK, - anon_sym_as, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [25025] = 6, - ACTIONS(2510), 1, - anon_sym_COLON_COLON, - ACTIONS(2545), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2542), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2166), 14, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -79131,10 +74759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 22, + ACTIONS(515), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79154,18 +74783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25080] = 6, - ACTIONS(2537), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, + [25204] = 6, + ACTIONS(2388), 1, anon_sym_COLON_COLON, + ACTIONS(2539), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 2, - anon_sym_RPAREN, + ACTIONS(2536), 2, anon_sym_COMMA, - ACTIONS(493), 14, + anon_sym_RPAREN, + ACTIONS(2040), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79180,10 +74809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 22, + ACTIONS(2036), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79203,18 +74832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25135] = 5, - ACTIONS(2548), 1, + [25259] = 6, + ACTIONS(2547), 1, + anon_sym_PLUS, + ACTIONS(2558), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_RPAREN, + ACTIONS(1992), 2, anon_sym_COMMA, - ACTIONS(493), 15, + anon_sym_RPAREN, + ACTIONS(513), 14, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -79228,10 +74858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 22, + ACTIONS(515), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79251,13 +74881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25188] = 4, - ACTIONS(2552), 1, + [25314] = 5, + ACTIONS(2560), 1, anon_sym_COLON_COLON, + STATE(717), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79273,12 +74905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 24, + ACTIONS(515), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79298,62 +74929,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25239] = 23, - ACTIONS(657), 1, + [25367] = 23, + ACTIONS(439), 1, anon_sym_RBRACK, - ACTIONS(2390), 1, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2554), 1, + ACTIONS(2562), 1, anon_sym_SEMI, - ACTIONS(2556), 1, + ACTIONS(2564), 1, anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - STATE(1608), 1, + STATE(1698), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79364,18 +74995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25328] = 6, - ACTIONS(2530), 1, - anon_sym_COLON_COLON, - ACTIONS(2545), 1, + [25456] = 6, + ACTIONS(2547), 1, anon_sym_PLUS, + ACTIONS(2570), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 2, - anon_sym_RPAREN, + ACTIONS(2544), 2, anon_sym_COMMA, - ACTIONS(2166), 14, + anon_sym_RPAREN, + ACTIONS(513), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79390,10 +75021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 22, + ACTIONS(515), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79413,15 +75044,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25383] = 4, - ACTIONS(2562), 1, + [25511] = 6, + ACTIONS(2486), 1, anon_sym_COLON_COLON, + ACTIONS(2539), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(1992), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2040), 14, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -79435,12 +75070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 24, + ACTIONS(2036), 22, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79460,17 +75093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25434] = 5, - ACTIONS(2567), 1, - anon_sym_PLUS, + [25566] = 4, + ACTIONS(2572), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2176), 14, + ACTIONS(513), 15, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -79484,11 +75115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2174), 23, + ACTIONS(515), 24, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79508,62 +75140,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25487] = 23, - ACTIONS(443), 1, + [25617] = 23, + ACTIONS(651), 1, anon_sym_RBRACK, - ACTIONS(2390), 1, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_SEMI, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_COMMA, - STATE(1672), 1, + STATE(1748), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79574,64 +75206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25576] = 6, - ACTIONS(2537), 1, - anon_sym_PLUS, - ACTIONS(2562), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2534), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(493), 14, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(495), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25631] = 5, - ACTIONS(2026), 1, + [25706] = 4, + ACTIONS(2570), 1, anon_sym_COLON_COLON, - STATE(1895), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79647,11 +75228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 23, + ACTIONS(515), 24, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79671,15 +75253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25684] = 5, - ACTIONS(2574), 1, + [25757] = 5, + ACTIONS(2558), 1, anon_sym_COLON_COLON, - STATE(712), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79695,11 +75278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 23, + ACTIONS(515), 22, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79719,13 +75301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25737] = 4, - ACTIONS(2052), 1, - anon_sym_COLON_COLON, + [25810] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2074), 15, + ACTIONS(2578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79741,11 +75324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 23, + ACTIONS(515), 22, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79765,16 +75347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25787] = 5, - ACTIONS(2567), 1, + [25860] = 5, + ACTIONS(2555), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 2, - anon_sym_RPAREN, + ACTIONS(2294), 2, anon_sym_COMMA, - ACTIONS(2176), 14, + anon_sym_RPAREN, + ACTIONS(2386), 14, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -79789,10 +75371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2174), 22, + ACTIONS(2384), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -79812,73 +75394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25839] = 18, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2580), 1, - anon_sym_RBRACE, - ACTIONS(2582), 1, - anon_sym_default, - ACTIONS(2584), 1, - anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - sym_self, - ACTIONS(2592), 1, - sym_metavariable, - STATE(1453), 1, - sym_primitive_type, - STATE(1457), 1, - sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, + [25912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1655), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [25917] = 4, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2166), 15, + ACTIONS(2084), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79894,12 +75414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 23, + ACTIONS(2034), 24, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -79918,11 +75439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25967] = 3, + [25960] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2162), 15, + ACTIONS(2164), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -79938,11 +75459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2004), 24, + ACTIONS(2014), 24, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -79963,15 +75484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26015] = 4, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, + [26008] = 5, + ACTIONS(2555), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2166), 15, + ACTIONS(2552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2386), 14, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_STAR, @@ -79985,11 +75508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2164), 23, + ACTIONS(2384), 22, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -80009,13 +75531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26065] = 4, - ACTIONS(2596), 1, + [26060] = 4, + ACTIONS(2580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80031,11 +75553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 23, + ACTIONS(515), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -80055,11 +75577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26115] = 3, + [26110] = 4, + ACTIONS(2092), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2058), 15, + ACTIONS(2090), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80075,13 +75599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2022), 24, + ACTIONS(2088), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80100,13 +75623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26163] = 4, - ACTIONS(2598), 1, - anon_sym_COLON_COLON, + [26160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(2094), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80122,12 +75643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 23, + ACTIONS(2028), 24, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80146,11 +75668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26213] = 3, + [26208] = 4, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2100), 15, + ACTIONS(2040), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80166,13 +75690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2016), 24, + ACTIONS(2036), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80191,13 +75714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26261] = 4, - ACTIONS(2036), 1, + [26258] = 4, + ACTIONS(2584), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2074), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80213,11 +75736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2072), 23, + ACTIONS(515), 23, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -80237,107 +75760,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26311] = 22, - ACTIONS(2390), 1, + [26308] = 22, + ACTIONS(451), 1, + anon_sym_RPAREN, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2600), 1, - anon_sym_RPAREN, - ACTIONS(2602), 1, + ACTIONS(2586), 1, anon_sym_COMMA, - STATE(1607), 1, + STATE(1598), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26397] = 5, - ACTIONS(2567), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2176), 14, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2410), 3, anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2174), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80348,60 +75824,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26449] = 22, - ACTIONS(541), 1, - anon_sym_RPAREN, - ACTIONS(2390), 1, + [26394] = 22, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2604), 1, + ACTIONS(2588), 1, anon_sym_COMMA, - STATE(1619), 1, + ACTIONS(2590), 1, + anon_sym_RPAREN, + STATE(1696), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80412,14 +75888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26535] = 4, + [26480] = 4, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(493), 15, + ACTIONS(2040), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80435,10 +75910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 22, + ACTIONS(2036), 23, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -80458,11 +75934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26585] = 3, + [26530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2120), 15, + ACTIONS(2154), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -80478,11 +75954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2010), 24, + ACTIONS(2022), 24, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -80503,116 +75979,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26633] = 20, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, + [26578] = 18, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, + anon_sym_default, + ACTIONS(2596), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_RBRACE, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(2604), 1, + anon_sym_STAR, + ACTIONS(2606), 1, + sym_self, + ACTIONS(2608), 1, + sym_metavariable, + STATE(1451), 1, + sym_primitive_type, + STATE(1458), 1, + sym_scoped_identifier, + STATE(2000), 1, + sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1572), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [26656] = 4, + ACTIONS(2118), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2090), 15, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2400), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26714] = 18, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2452), 1, - anon_sym_EQ, - ACTIONS(2614), 1, anon_sym_AMP, - ACTIONS(2618), 1, anon_sym_DOT_DOT, - ACTIONS(2620), 1, - anon_sym_AMP_AMP, - ACTIONS(2622), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2626), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2610), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + anon_sym_DOT, + ACTIONS(2088), 23, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2450), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80623,25 +76085,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26791] = 5, - ACTIONS(2632), 1, - anon_sym_POUND, + [26706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(836), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(1829), 8, + ACTIONS(2612), 11, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1827), 27, + ACTIONS(2610), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80666,44 +76126,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_fn, anon_sym_impl, - anon_sym_pub, + anon_sym_where, sym_identifier, sym_self, - [26842] = 4, - ACTIONS(2548), 1, - anon_sym_COLON_COLON, + [26753] = 21, + ACTIONS(549), 1, + anon_sym_RPAREN, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2614), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, - anon_sym_EQ, + ACTIONS(2406), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(495), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_QMARK, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80714,58 +76191,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26891] = 21, - ACTIONS(2390), 1, + [26836] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, + ACTIONS(2616), 1, anon_sym_SEMI, - ACTIONS(2637), 1, - anon_sym_RBRACE, + ACTIONS(2618), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80776,55 +76253,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26974] = 18, - ACTIONS(2390), 1, + [26919] = 21, + ACTIONS(283), 1, + anon_sym_LBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, anon_sym_EQ, - ACTIONS(2614), 1, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2632), 1, anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, + STATE(710), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2446), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80835,194 +76315,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27051] = 17, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - anon_sym_default, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - sym_self, - ACTIONS(2592), 1, - sym_metavariable, - ACTIONS(2639), 1, - anon_sym_RBRACE, - STATE(1453), 1, - sym_primitive_type, - STATE(1457), 1, - sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1983), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [27126] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2643), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2641), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [27173] = 7, - ACTIONS(2390), 1, + [27002] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2456), 13, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, + ACTIONS(2628), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, + anon_sym_AMP_AMP, + ACTIONS(2636), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2638), 1, anon_sym_PIPE, + ACTIONS(2640), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2454), 20, - anon_sym_LPAREN, + ACTIONS(2648), 1, anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27228] = 7, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, + STATE(723), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2464), 13, - anon_sym_EQ, + ACTIONS(2622), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2630), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2626), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2462), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81033,57 +76377,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27283] = 20, - ACTIONS(2390), 1, + [27085] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2650), 1, + anon_sym_SEMI, + ACTIONS(2652), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2645), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81094,58 +76439,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27364] = 21, - ACTIONS(2390), 1, + [27168] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2647), 1, - anon_sym_RBRACE, - ACTIONS(2649), 1, - anon_sym_COMMA, + ACTIONS(2654), 1, + anon_sym_SEMI, + ACTIONS(2656), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81156,103 +76501,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27447] = 18, - ACTIONS(2390), 1, + [27251] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2444), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, anon_sym_EQ, - ACTIONS(2614), 1, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2632), 1, anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(222), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2612), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2628), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2442), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27524] = 7, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2460), 13, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2626), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2458), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_as, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81263,58 +76563,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27579] = 21, - ACTIONS(2390), 1, + [27334] = 21, + ACTIONS(99), 1, + anon_sym_RBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2651), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - ACTIONS(2653), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81325,58 +76625,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27662] = 21, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2655), 1, - anon_sym_RPAREN, - ACTIONS(2657), 1, - anon_sym_COMMA, + [27417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2664), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2662), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [27464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2668), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2666), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [27511] = 21, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2660), 1, + anon_sym_SEMI, + ACTIONS(2670), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81387,58 +76775,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27745] = 21, - ACTIONS(257), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, + [27594] = 21, + ACTIONS(677), 1, + anon_sym_LBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81449,54 +76837,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27828] = 18, - ACTIONS(2390), 1, + [27677] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2394), 1, - anon_sym_EQ, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2614), 1, + ACTIONS(2466), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, + ACTIONS(2674), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2672), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2388), 13, - anon_sym_LPAREN, + ACTIONS(2464), 13, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -81508,45 +76896,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27905] = 8, - ACTIONS(2390), 1, + [27754] = 17, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, + anon_sym_default, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(2604), 1, + anon_sym_STAR, + ACTIONS(2606), 1, + sym_self, + ACTIONS(2608), 1, + sym_metavariable, + ACTIONS(2676), 1, + anon_sym_RBRACE, + STATE(1451), 1, + sym_primitive_type, + STATE(1458), 1, + sym_scoped_identifier, + STATE(2000), 1, + sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1944), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [27829] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2618), 1, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2678), 1, + anon_sym_COMMA, + ACTIONS(2680), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2424), 13, - anon_sym_EQ, + ACTIONS(2406), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2422), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81557,57 +77016,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27962] = 20, - ACTIONS(2390), 1, + [27912] = 21, + ACTIONS(677), 1, + anon_sym_LBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2632), 1, anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2659), 1, - anon_sym_EQ, + STATE(218), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81618,57 +77078,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28043] = 20, - ACTIONS(2390), 1, + [27995] = 21, + ACTIONS(255), 1, + anon_sym_RBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2663), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81679,58 +77140,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28124] = 21, - ACTIONS(2390), 1, + [28078] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2682), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [28125] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2665), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - ACTIONS(2667), 1, - anon_sym_else, + ACTIONS(2686), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81741,58 +77246,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28207] = 21, - ACTIONS(2390), 1, + [28208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2690), 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2688), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_where, + sym_identifier, + sym_self, + [28255] = 21, + ACTIONS(259), 1, + anon_sym_RBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2669), 1, - anon_sym_RPAREN, - ACTIONS(2671), 1, - anon_sym_COMMA, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81803,58 +77352,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28290] = 21, - ACTIONS(265), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [28338] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2614), 1, - anon_sym_AMP, ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, + anon_sym_AMP, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2659), 1, - anon_sym_EQ, - ACTIONS(2675), 1, - anon_sym_DOT_DOT, - STATE(746), 1, - sym_block, + ACTIONS(2692), 1, + anon_sym_LBRACE, + STATE(68), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2673), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81865,58 +77414,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28373] = 21, - ACTIONS(2390), 1, + [28421] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2677), 1, - anon_sym_LBRACE, - STATE(668), 1, - sym_match_block, + ACTIONS(2660), 1, + anon_sym_SEMI, + ACTIONS(2694), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81927,58 +77476,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28456] = 21, - ACTIONS(2390), 1, + [28504] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2679), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - ACTIONS(2681), 1, - anon_sym_else, + ACTIONS(2696), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28587] = 7, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2462), 13, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2460), 20, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81989,23 +77586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28539] = 3, + [28642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2685), 11, + ACTIONS(2700), 11, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2683), 27, + ACTIONS(2698), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82033,58 +77630,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, sym_identifier, sym_self, - [28586] = 21, - ACTIONS(2390), 1, + [28689] = 8, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, + anon_sym_as, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2687), 1, - anon_sym_SEMI, - ACTIONS(2689), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2672), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2442), 13, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2440), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82095,58 +77679,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28669] = 21, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [28746] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - STATE(78), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2702), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82157,57 +77740,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28752] = 20, - ACTIONS(2390), 1, + [28827] = 21, + ACTIONS(283), 1, + anon_sym_LBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, + STATE(685), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2691), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82218,102 +77802,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28833] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2695), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2693), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [28880] = 21, - ACTIONS(2390), 1, + [28910] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2697), 1, - anon_sym_SEMI, - ACTIONS(2699), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2704), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82324,101 +77863,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28963] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2703), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2701), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [29010] = 20, - ACTIONS(2390), 1, + [28991] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2706), 1, + anon_sym_SEMI, + ACTIONS(2708), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82429,58 +77925,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29091] = 21, - ACTIONS(2390), 1, + [29074] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2705), 1, - anon_sym_LBRACE, - STATE(62), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2710), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82491,58 +77986,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29174] = 21, - ACTIONS(2390), 1, + [29155] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, - ACTIONS(2707), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2712), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82553,57 +78047,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29257] = 20, - ACTIONS(2390), 1, + [29236] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2709), 2, - anon_sym_RBRACE, + ACTIONS(2714), 2, anon_sym_COMMA, - ACTIONS(2400), 3, + anon_sym_RPAREN, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82614,55 +78108,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29338] = 18, - ACTIONS(269), 1, - anon_sym_EQ, - ACTIONS(2390), 1, + [29317] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_SEMI, + ACTIONS(2718), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(261), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82673,58 +78170,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29415] = 21, - ACTIONS(259), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, + [29400] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2438), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2436), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82735,58 +78229,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29498] = 21, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [29477] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - STATE(67), 1, - sym_block, + ACTIONS(2720), 1, + anon_sym_SEMI, + ACTIONS(2722), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82797,101 +78291,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29581] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2713), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + [29560] = 21, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2711), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [29628] = 20, - ACTIONS(2390), 1, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, + STATE(58), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2715), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82902,57 +78353,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29709] = 20, - ACTIONS(2390), 1, + [29643] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2717), 2, - anon_sym_RPAREN, + ACTIONS(2724), 2, anon_sym_COMMA, - ACTIONS(2400), 3, + anon_sym_RBRACE, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82963,58 +78414,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29790] = 21, - ACTIONS(2390), 1, + [29724] = 18, + ACTIONS(265), 1, + anon_sym_EQ, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2719), 1, - anon_sym_SEMI, - ACTIONS(2721), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(261), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83025,116 +78473,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29873] = 17, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - anon_sym_default, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - sym_self, - ACTIONS(2592), 1, - sym_metavariable, - ACTIONS(2723), 1, - anon_sym_RBRACE, - STATE(1453), 1, - sym_primitive_type, - STATE(1457), 1, - sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1983), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [29948] = 21, - ACTIONS(2390), 1, + [29801] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, + ACTIONS(2726), 1, anon_sym_SEMI, - ACTIONS(2725), 1, - anon_sym_RBRACE, + ACTIONS(2728), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83145,55 +78535,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30031] = 18, - ACTIONS(2390), 1, + [29884] = 9, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_EQ, - ACTIONS(2614), 1, - anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2620), 1, - anon_sym_AMP_AMP, - ACTIONS(2622), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, - anon_sym_PIPE, - ACTIONS(2626), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2610), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2616), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2442), 10, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2440), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2430), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83204,58 +78585,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30108] = 21, - ACTIONS(2390), 1, + [29943] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2727), 1, - anon_sym_SEMI, - ACTIONS(2729), 1, - anon_sym_else, + ACTIONS(2730), 1, + anon_sym_COMMA, + ACTIONS(2732), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83266,57 +78647,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30191] = 20, - ACTIONS(2390), 1, + [30026] = 14, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2731), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2442), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2440), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83327,57 +78702,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30272] = 20, - ACTIONS(2390), 1, + [30095] = 21, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, + STATE(64), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2733), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83388,58 +78764,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30353] = 21, - ACTIONS(549), 1, - anon_sym_RPAREN, - ACTIONS(2390), 1, + [30178] = 11, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, + anon_sym_as, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2671), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2442), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2440), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83450,58 +78816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30436] = 21, - ACTIONS(101), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, + [30241] = 16, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2442), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2440), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83512,46 +78873,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30519] = 9, - ACTIONS(2390), 1, + [30314] = 17, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2618), 1, + ACTIONS(2442), 1, + anon_sym_EQ, + ACTIONS(2628), 1, + anon_sym_AMP, + ACTIONS(2634), 1, + anon_sym_AMP_AMP, + ACTIONS(2638), 1, + anon_sym_PIPE, + ACTIONS(2640), 1, + anon_sym_CARET, + ACTIONS(2674), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 10, - anon_sym_EQ, + ACTIONS(2622), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2422), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2672), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2440), 14, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83562,51 +78931,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30578] = 14, - ACTIONS(2390), 1, + [30389] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2624), 1, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2424), 3, - anon_sym_EQ, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2612), 3, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2734), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2422), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83617,58 +78992,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30647] = 21, - ACTIONS(2390), 1, + [30470] = 13, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, - ACTIONS(2735), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2442), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2440), 19, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83679,58 +79046,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30730] = 21, - ACTIONS(545), 1, - anon_sym_RPAREN, - ACTIONS(2390), 1, + [30537] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2671), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2736), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83741,41 +79107,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30813] = 11, - ACTIONS(2390), 1, + [30618] = 12, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2618), 1, + ACTIONS(2628), 1, + anon_sym_AMP, + ACTIONS(2674), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2672), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2424), 6, + ACTIONS(2442), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2422), 19, - anon_sym_LPAREN, + ACTIONS(2440), 19, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83793,58 +79160,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30876] = 21, - ACTIONS(105), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, + [30683] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, + ACTIONS(2660), 1, anon_sym_SEMI, + ACTIONS(2738), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83855,53 +79222,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30959] = 16, - ACTIONS(2390), 1, + [30766] = 10, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2424), 1, - anon_sym_EQ, - ACTIONS(2614), 1, - anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2624), 1, - anon_sym_PIPE, - ACTIONS(2626), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2616), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2422), 15, - anon_sym_LPAREN, + ACTIONS(2442), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2440), 19, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83912,58 +79273,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31032] = 21, - ACTIONS(667), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [30827] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2614), 1, - anon_sym_AMP, ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, + anon_sym_AMP, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2659), 1, - anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - STATE(218), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2444), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83974,101 +79334,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31115] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2739), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2737), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_impl, - anon_sym_where, - sym_identifier, - sym_self, - [31162] = 20, - ACTIONS(2390), 1, + [30908] = 21, + ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2741), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84079,58 +79396,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31243] = 21, - ACTIONS(667), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [30991] = 21, + ACTIONS(101), 1, + anon_sym_RBRACE, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - STATE(219), 1, - sym_block, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84141,58 +79458,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31326] = 21, - ACTIONS(2390), 1, + [31074] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2454), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2743), 1, - anon_sym_RBRACE, - ACTIONS(2745), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2452), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84203,58 +79517,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31409] = 21, - ACTIONS(265), 1, - anon_sym_LBRACE, - ACTIONS(2390), 1, + [31151] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - STATE(696), 1, - sym_block, + ACTIONS(2740), 1, + anon_sym_SEMI, + ACTIONS(2742), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84265,58 +79579,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31492] = 21, - ACTIONS(2390), 1, + [31234] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, - ACTIONS(2747), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2744), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84327,54 +79640,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31575] = 17, - ACTIONS(2390), 1, + [31315] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2424), 1, - anon_sym_EQ, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2620), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2624), 1, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_COMMA, + ACTIONS(2748), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2422), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84385,58 +79702,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31650] = 21, - ACTIONS(2390), 1, + [31398] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2470), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2620), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2622), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2659), 1, - anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2749), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2468), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84447,44 +79761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31733] = 13, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_AMP, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, - ACTIONS(2626), 1, - anon_sym_CARET, + [31475] = 4, + ACTIONS(2750), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(513), 15, + anon_sym_EQ, anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2424), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2422), 19, + anon_sym_DOT, + ACTIONS(515), 22, + anon_sym_LBRACK, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -84501,58 +79806,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31800] = 21, - ACTIONS(99), 1, - anon_sym_RBRACE, - ACTIONS(2390), 1, + [31524] = 21, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, + ACTIONS(2614), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84563,42 +79868,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31883] = 12, - ACTIONS(2390), 1, + [31607] = 7, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_AMP, - ACTIONS(2618), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2612), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 5, + ACTIONS(2458), 13, anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2422), 19, - anon_sym_LPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2456), 20, + anon_sym_as, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84616,58 +79916,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31948] = 21, - ACTIONS(2390), 1, + [31662] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2751), 1, - anon_sym_SEMI, - ACTIONS(2753), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2472), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84678,13 +79977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32031] = 4, - ACTIONS(2755), 1, + [31743] = 4, + ACTIONS(2558), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(493), 15, + ACTIONS(513), 15, anon_sym_EQ, anon_sym_PLUS, anon_sym_LT, @@ -84700,10 +79999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(495), 22, + ACTIONS(515), 22, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -84723,106 +80022,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32080] = 10, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2618), 1, - anon_sym_DOT_DOT, + [31792] = 5, + ACTIONS(2752), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 8, - anon_sym_EQ, + STATE(903), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(1829), 8, + anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2422), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32141] = 19, - ACTIONS(2390), 1, + sym_metavariable, + ACTIONS(1827), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_impl, + anon_sym_pub, + sym_identifier, + sym_self, + [31843] = 21, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2622), 1, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2614), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84833,93 +80130,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32219] = 16, + [31926] = 17, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - anon_sym_default, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - sym_self, ACTIONS(2592), 1, - sym_metavariable, - STATE(1453), 1, - sym_primitive_type, - STATE(1457), 1, - sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2088), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [32291] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(2576), 1, sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2594), 1, anon_sym_default, - ACTIONS(2586), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, sym_self, - ACTIONS(2592), 1, + ACTIONS(2608), 1, sym_metavariable, - STATE(1453), 1, + ACTIONS(2757), 1, + anon_sym_RBRACE, + STATE(1451), 1, sym_primitive_type, - STATE(1457), 1, + STATE(1458), 1, sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2004), 5, + STATE(1944), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -84945,56 +80188,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [32363] = 20, - ACTIONS(2390), 1, + [32001] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2759), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2759), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85005,56 +80249,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32443] = 20, - ACTIONS(2390), 1, + [32082] = 18, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2634), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2761), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2672), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2398), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85065,116 +80308,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32523] = 20, - ACTIONS(2390), 1, + [32159] = 7, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2674), 1, anon_sym_DOT_DOT, - ACTIONS(2635), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2672), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2434), 13, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32603] = 20, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2414), 1, anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2671), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2432), 20, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85185,56 +80356,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32683] = 20, - ACTIONS(2390), 1, + [32214] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2763), 1, + ACTIONS(2761), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85245,56 +80416,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32763] = 20, - ACTIONS(2390), 1, + [32294] = 19, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2765), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2763), 2, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85305,37 +80475,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32843] = 16, + [32372] = 16, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2576), 1, + ACTIONS(2592), 1, sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2594), 1, anon_sym_default, - ACTIONS(2586), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, sym_self, - ACTIONS(2592), 1, + ACTIONS(2608), 1, sym_metavariable, - STATE(1453), 1, + STATE(1451), 1, sym_primitive_type, - STATE(1457), 1, + STATE(1458), 1, sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1983), 5, + STATE(2063), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -85361,116 +80531,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [32915] = 20, - ACTIONS(2390), 1, + [32444] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2767), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32995] = 20, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2402), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2769), 1, + ACTIONS(2765), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85481,116 +80591,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33075] = 20, - ACTIONS(2390), 1, + [32524] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2771), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33155] = 20, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, anon_sym_as, - ACTIONS(2402), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2773), 1, + ACTIONS(2767), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85601,43 +80651,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33235] = 20, + [32604] = 20, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, + ACTIONS(1795), 1, anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_default, - ACTIONS(1803), 1, + ACTIONS(1799), 1, anon_sym_fn, ACTIONS(1809), 1, anon_sym_COLON_COLON, ACTIONS(1817), 1, sym_self, - ACTIONS(2500), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2775), 1, + ACTIONS(2769), 1, sym_identifier, - STATE(1033), 1, + STATE(1000), 1, sym_generic_type, - STATE(1192), 1, + STATE(1180), 1, sym_function_type, - STATE(1263), 1, + STATE(1275), 1, sym_scoped_type_identifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2045), 1, + STATE(1989), 1, + sym_function_modifiers, + STATE(2049), 1, sym_bracketed_type, - STATE(2046), 1, + STATE(2050), 1, sym_generic_type_with_turbofish, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2142), 1, + STATE(2084), 1, sym_primitive_type, - STATE(2169), 1, + STATE(2162), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [32684] = 20, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(353), 1, + anon_sym_fn, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1797), 1, + anon_sym_default, + ACTIONS(1809), 1, + anon_sym_COLON_COLON, + ACTIONS(1817), 1, + sym_self, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2771), 1, + sym_identifier, + STATE(1000), 1, + sym_generic_type, + STATE(1001), 1, + sym_scoped_type_identifier, + STATE(1180), 1, + sym_function_type, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2049), 1, + sym_bracketed_type, + STATE(2050), 1, + sym_generic_type_with_turbofish, + STATE(2059), 1, sym_function_modifiers, + STATE(2084), 1, + sym_primitive_type, + STATE(2162), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -85661,56 +80771,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [33315] = 20, - ACTIONS(2390), 1, + [32764] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2777), 1, - anon_sym_SEMI, + ACTIONS(2773), 1, + anon_sym_AMP_AMP, + ACTIONS(2775), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85721,46 +80831,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33395] = 20, + [32844] = 16, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1926), 1, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, anon_sym_default, - ACTIONS(1928), 1, - anon_sym_fn, - ACTIONS(1934), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(1942), 1, + ACTIONS(2604), 1, + anon_sym_STAR, + ACTIONS(2606), 1, sym_self, - ACTIONS(2779), 1, - sym_identifier, - ACTIONS(2781), 1, + ACTIONS(2608), 1, sym_metavariable, - STATE(624), 1, - sym_scoped_type_identifier, - STATE(643), 1, - sym_generic_type, - STATE(734), 1, - sym_function_type, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(2054), 1, - sym_function_modifiers, - STATE(2075), 1, + STATE(1451), 1, sym_primitive_type, - STATE(2140), 1, + STATE(1458), 1, + sym_scoped_identifier, + STATE(2000), 1, sym_bracketed_type, - STATE(2141), 1, + STATE(2179), 1, sym_generic_type_with_turbofish, - STATE(2144), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + STATE(2149), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, ACTIONS(11), 19, anon_sym_u8, anon_sym_i8, @@ -85781,56 +80887,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [33475] = 20, - ACTIONS(2390), 1, + [32916] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2783), 1, - anon_sym_SEMI, + ACTIONS(2777), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85841,56 +80947,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33555] = 20, - ACTIONS(2390), 1, + [32996] = 19, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2779), 2, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33074] = 16, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, + anon_sym_default, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(2604), 1, + anon_sym_STAR, + ACTIONS(2606), 1, + sym_self, + ACTIONS(2608), 1, + sym_metavariable, + STATE(1451), 1, + sym_primitive_type, + STATE(1458), 1, + sym_scoped_identifier, + STATE(2000), 1, + sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2071), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [33146] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2785), 1, - anon_sym_COMMA, + ACTIONS(2781), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85901,56 +81122,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33635] = 20, - ACTIONS(2390), 1, + [33226] = 20, + ACTIONS(13), 1, + anon_sym_str, + ACTIONS(75), 1, + anon_sym_LT, + ACTIONS(1795), 1, + anon_sym_const, + ACTIONS(1932), 1, + anon_sym_default, + ACTIONS(1934), 1, + anon_sym_fn, + ACTIONS(1942), 1, + anon_sym_COLON_COLON, + ACTIONS(1950), 1, + sym_self, + ACTIONS(2783), 1, + sym_identifier, + ACTIONS(2785), 1, + sym_metavariable, + STATE(625), 1, + sym_scoped_type_identifier, + STATE(660), 1, + sym_generic_type, + STATE(713), 1, + sym_function_type, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2057), 1, + sym_function_modifiers, + STATE(2078), 1, + sym_primitive_type, + STATE(2143), 1, + sym_bracketed_type, + STATE(2144), 1, + sym_generic_type_with_turbofish, + STATE(2147), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11), 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_u256, + anon_sym_i256, + anon_sym_b256, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + [33306] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, ACTIONS(2787), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85961,55 +81242,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33715] = 19, - ACTIONS(2390), 1, + [33386] = 19, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2640), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2624), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2630), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(2626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2642), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2646), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33464] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2789), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2757), 2, - anon_sym_AMP_AMP, - anon_sym_EQ_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86020,55 +81361,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33793] = 19, - ACTIONS(2390), 1, + [33544] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2438), 1, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2791), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33624] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, anon_sym_AMP, - ACTIONS(2622), 1, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2636), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2640), 1, anon_sym_CARET, - ACTIONS(2659), 1, - anon_sym_EQ, - ACTIONS(2675), 1, - anon_sym_DOT_DOT, + ACTIONS(2775), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2622), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_LT, anon_sym_GT, ACTIONS(2630), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2626), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2642), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2646), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33704] = 19, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2620), 1, + anon_sym_EQ, + ACTIONS(2628), 1, + anon_sym_AMP, + ACTIONS(2632), 1, + anon_sym_DOT_DOT, + ACTIONS(2636), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2638), 1, + anon_sym_PIPE, + ACTIONS(2640), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2624), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2630), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2789), 2, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2779), 2, anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(2612), 3, + ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2642), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2646), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86079,56 +81540,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33871] = 20, - ACTIONS(2390), 1, + [33782] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2791), 1, - anon_sym_SEMI, + ACTIONS(2795), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86139,37 +81600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33951] = 16, + [33862] = 16, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2576), 1, + ACTIONS(2592), 1, sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2594), 1, anon_sym_default, - ACTIONS(2586), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, sym_self, - ACTIONS(2592), 1, + ACTIONS(2608), 1, sym_metavariable, - STATE(1453), 1, + STATE(1451), 1, sym_primitive_type, - STATE(1457), 1, + STATE(1458), 1, sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2181), 5, + STATE(2175), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -86195,56 +81656,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [34023] = 20, - ACTIONS(2390), 1, + [33934] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2793), 1, + ACTIONS(2797), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86255,56 +81716,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34103] = 20, - ACTIONS(2390), 1, + [34014] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2614), 1, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2622), 1, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2626), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2659), 1, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2675), 1, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2795), 1, - anon_sym_LBRACE, - ACTIONS(2797), 1, - anon_sym_AMP_AMP, + ACTIONS(2799), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2610), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2630), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2673), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2612), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2628), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2661), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86315,56 +81776,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34183] = 20, - ACTIONS(2390), 1, + [34094] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2799), 1, + ACTIONS(2801), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86375,56 +81836,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34263] = 20, - ACTIONS(2390), 1, + [34174] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2408), 1, + ACTIONS(2418), 1, anon_sym_AMP_AMP, - ACTIONS(2410), 1, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2801), 1, - anon_sym_COMMA, + ACTIONS(2803), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86435,55 +81896,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34343] = 19, - ACTIONS(2390), 1, + [34254] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2420), 1, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, + ACTIONS(2660), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2789), 2, - anon_sym_AMP_AMP, - anon_sym_EQ_GT, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86494,97 +81956,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34421] = 20, + [34334] = 16, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(355), 1, - anon_sym_fn, - ACTIONS(1799), 1, - anon_sym_const, - ACTIONS(1801), 1, + ACTIONS(2592), 1, + sym_identifier, + ACTIONS(2594), 1, anon_sym_default, - ACTIONS(1809), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(1817), 1, + ACTIONS(2604), 1, + anon_sym_STAR, + ACTIONS(2606), 1, sym_self, - ACTIONS(2500), 1, + ACTIONS(2608), 1, sym_metavariable, - ACTIONS(2803), 1, - sym_identifier, - STATE(1033), 1, - sym_generic_type, - STATE(1035), 1, - sym_scoped_type_identifier, - STATE(1192), 1, - sym_function_type, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, + STATE(1451), 1, + sym_primitive_type, + STATE(1458), 1, + sym_scoped_identifier, STATE(2000), 1, - sym_function_modifiers, - STATE(2045), 1, sym_bracketed_type, - STATE(2046), 1, + STATE(2179), 1, sym_generic_type_with_turbofish, - STATE(2052), 1, - sym_scoped_identifier, - STATE(2142), 1, - sym_primitive_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(11), 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_u256, - anon_sym_i256, - anon_sym_b256, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - [34501] = 16, - ACTIONS(13), 1, - anon_sym_str, - ACTIONS(75), 1, - anon_sym_LT, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - anon_sym_default, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - sym_self, - ACTIONS(2592), 1, - sym_metavariable, - STATE(1453), 1, - sym_primitive_type, - STATE(1457), 1, - sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2068), 5, + STATE(1944), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -86610,56 +82012,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [34573] = 20, - ACTIONS(2390), 1, + [34406] = 20, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2402), 1, anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2805), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34486] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2807), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34566] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2424), 1, anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, + ACTIONS(2614), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34646] = 20, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_AMP_AMP, ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2436), 1, + ACTIONS(2446), 1, anon_sym_EQ, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(2568), 1, anon_sym_DOT_DOT, - ACTIONS(2795), 1, - anon_sym_EQ_GT, - ACTIONS(2805), 1, + ACTIONS(2809), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2406), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2566), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2410), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2426), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2450), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34726] = 19, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_as, + ACTIONS(2412), 1, + anon_sym_AMP, + ACTIONS(2418), 1, anon_sym_AMP_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_PIPE, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2430), 1, + anon_sym_DOT, + ACTIONS(2446), 1, + anon_sym_EQ, + ACTIONS(2448), 1, + anon_sym_QMARK, + ACTIONS(2568), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 2, + ACTIONS(2406), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2398), 2, + ACTIONS(2408), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2558), 2, + ACTIONS(2566), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, + ACTIONS(2410), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2416), 4, + ACTIONS(2426), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2440), 10, + ACTIONS(2450), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86670,21 +82310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34653] = 3, + [34803] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(867), 9, + ACTIONS(1501), 9, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_POUND, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(869), 27, + ACTIONS(1503), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86712,21 +82352,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_self, - [34698] = 3, + [34848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1317), 9, + ACTIONS(1379), 9, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_POUND, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1319), 27, + ACTIONS(1381), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86754,79 +82394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_self, - [34743] = 19, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_as, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2408), 1, - anon_sym_AMP_AMP, - ACTIONS(2410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_CARET, - ACTIONS(2420), 1, - anon_sym_DOT, - ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2438), 1, - anon_sym_QMARK, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2396), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2398), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2400), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2440), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34820] = 3, + [34893] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1095), 9, + ACTIONS(1583), 9, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_POUND, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(1097), 27, + ACTIONS(1585), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86854,49 +82436,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_self, - [34865] = 21, - ACTIONS(2807), 1, - anon_sym_SEMI, - ACTIONS(2809), 1, - anon_sym_RBRACE, + [34938] = 21, ACTIONS(2811), 1, - anon_sym_const, + anon_sym_SEMI, ACTIONS(2813), 1, - anon_sym_default, + anon_sym_const, ACTIONS(2815), 1, - anon_sym_mod, + anon_sym_default, ACTIONS(2817), 1, - anon_sym_enum, + anon_sym_mod, ACTIONS(2819), 1, - anon_sym_fn, + anon_sym_enum, ACTIONS(2821), 1, - anon_sym_impl, + anon_sym_fn, ACTIONS(2823), 1, - anon_sym_let, + anon_sym_impl, ACTIONS(2825), 1, - anon_sym_pub, + anon_sym_let, ACTIONS(2827), 1, - anon_sym_struct, + anon_sym_pub, ACTIONS(2829), 1, - anon_sym_trait, + anon_sym_struct, ACTIONS(2831), 1, - anon_sym_type, + anon_sym_trait, ACTIONS(2833), 1, - anon_sym_use, + anon_sym_type, ACTIONS(2835), 1, - anon_sym_POUND, + anon_sym_use, ACTIONS(2837), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + anon_sym_RBRACE, + ACTIONS(2841), 1, anon_sym_asm, - STATE(1249), 1, + STATE(1257), 1, sym_visibility_modifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2190), 1, + STATE(2193), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(946), 16, + STATE(947), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -86913,49 +82495,49 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [34945] = 21, - ACTIONS(2839), 1, + [35018] = 21, + ACTIONS(2843), 1, anon_sym_SEMI, - ACTIONS(2842), 1, - anon_sym_RBRACE, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_const, - ACTIONS(2847), 1, + ACTIONS(2849), 1, anon_sym_default, - ACTIONS(2850), 1, + ACTIONS(2852), 1, anon_sym_mod, - ACTIONS(2853), 1, + ACTIONS(2855), 1, anon_sym_enum, - ACTIONS(2856), 1, + ACTIONS(2858), 1, anon_sym_fn, - ACTIONS(2859), 1, + ACTIONS(2861), 1, anon_sym_impl, - ACTIONS(2862), 1, + ACTIONS(2864), 1, anon_sym_let, - ACTIONS(2865), 1, + ACTIONS(2867), 1, anon_sym_pub, - ACTIONS(2868), 1, + ACTIONS(2870), 1, anon_sym_struct, - ACTIONS(2871), 1, + ACTIONS(2873), 1, anon_sym_trait, - ACTIONS(2874), 1, + ACTIONS(2876), 1, anon_sym_type, - ACTIONS(2877), 1, + ACTIONS(2879), 1, anon_sym_use, - ACTIONS(2880), 1, + ACTIONS(2882), 1, anon_sym_POUND, - ACTIONS(2883), 1, + ACTIONS(2885), 1, + anon_sym_RBRACE, + ACTIONS(2887), 1, anon_sym_asm, - STATE(1249), 1, + STATE(1257), 1, sym_visibility_modifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2190), 1, + STATE(2193), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(945), 16, + STATE(946), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -86972,49 +82554,49 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [35025] = 21, - ACTIONS(2807), 1, - anon_sym_SEMI, + [35098] = 21, ACTIONS(2811), 1, - anon_sym_const, + anon_sym_SEMI, ACTIONS(2813), 1, - anon_sym_default, + anon_sym_const, ACTIONS(2815), 1, - anon_sym_mod, + anon_sym_default, ACTIONS(2817), 1, - anon_sym_enum, + anon_sym_mod, ACTIONS(2819), 1, - anon_sym_fn, + anon_sym_enum, ACTIONS(2821), 1, - anon_sym_impl, + anon_sym_fn, ACTIONS(2823), 1, - anon_sym_let, + anon_sym_impl, ACTIONS(2825), 1, - anon_sym_pub, + anon_sym_let, ACTIONS(2827), 1, - anon_sym_struct, + anon_sym_pub, ACTIONS(2829), 1, - anon_sym_trait, + anon_sym_struct, ACTIONS(2831), 1, - anon_sym_type, + anon_sym_trait, ACTIONS(2833), 1, - anon_sym_use, + anon_sym_type, ACTIONS(2835), 1, - anon_sym_POUND, + anon_sym_use, ACTIONS(2837), 1, + anon_sym_POUND, + ACTIONS(2841), 1, anon_sym_asm, - ACTIONS(2886), 1, + ACTIONS(2890), 1, anon_sym_RBRACE, - STATE(1249), 1, + STATE(1257), 1, sym_visibility_modifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2190), 1, + STATE(2193), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(945), 16, + STATE(946), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -87031,49 +82613,49 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [35105] = 21, - ACTIONS(2807), 1, - anon_sym_SEMI, + [35178] = 21, ACTIONS(2811), 1, - anon_sym_const, + anon_sym_SEMI, ACTIONS(2813), 1, - anon_sym_default, + anon_sym_const, ACTIONS(2815), 1, - anon_sym_mod, + anon_sym_default, ACTIONS(2817), 1, - anon_sym_enum, + anon_sym_mod, ACTIONS(2819), 1, - anon_sym_fn, + anon_sym_enum, ACTIONS(2821), 1, - anon_sym_impl, + anon_sym_fn, ACTIONS(2823), 1, - anon_sym_let, + anon_sym_impl, ACTIONS(2825), 1, - anon_sym_pub, + anon_sym_let, ACTIONS(2827), 1, - anon_sym_struct, + anon_sym_pub, ACTIONS(2829), 1, - anon_sym_trait, + anon_sym_struct, ACTIONS(2831), 1, - anon_sym_type, + anon_sym_trait, ACTIONS(2833), 1, - anon_sym_use, + anon_sym_type, ACTIONS(2835), 1, - anon_sym_POUND, + anon_sym_use, ACTIONS(2837), 1, + anon_sym_POUND, + ACTIONS(2841), 1, anon_sym_asm, - ACTIONS(2888), 1, + ACTIONS(2892), 1, anon_sym_RBRACE, - STATE(1249), 1, + STATE(1257), 1, sym_visibility_modifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2190), 1, + STATE(2193), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(945), 16, + STATE(946), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -87090,49 +82672,49 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [35185] = 21, - ACTIONS(2807), 1, - anon_sym_SEMI, + [35258] = 21, ACTIONS(2811), 1, - anon_sym_const, + anon_sym_SEMI, ACTIONS(2813), 1, - anon_sym_default, + anon_sym_const, ACTIONS(2815), 1, - anon_sym_mod, + anon_sym_default, ACTIONS(2817), 1, - anon_sym_enum, + anon_sym_mod, ACTIONS(2819), 1, - anon_sym_fn, + anon_sym_enum, ACTIONS(2821), 1, - anon_sym_impl, + anon_sym_fn, ACTIONS(2823), 1, - anon_sym_let, + anon_sym_impl, ACTIONS(2825), 1, - anon_sym_pub, + anon_sym_let, ACTIONS(2827), 1, - anon_sym_struct, + anon_sym_pub, ACTIONS(2829), 1, - anon_sym_trait, + anon_sym_struct, ACTIONS(2831), 1, - anon_sym_type, + anon_sym_trait, ACTIONS(2833), 1, - anon_sym_use, + anon_sym_type, ACTIONS(2835), 1, - anon_sym_POUND, + anon_sym_use, ACTIONS(2837), 1, + anon_sym_POUND, + ACTIONS(2841), 1, anon_sym_asm, - ACTIONS(2890), 1, + ACTIONS(2894), 1, anon_sym_RBRACE, - STATE(1249), 1, + STATE(1257), 1, sym_visibility_modifier, - STATE(1496), 1, + STATE(1521), 1, aux_sym_function_modifiers_repeat1, - STATE(2190), 1, + STATE(2193), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(947), 16, + STATE(948), 16, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -87149,20 +82731,20 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [35265] = 3, + [35338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 8, + ACTIONS(2898), 8, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2892), 26, + ACTIONS(2896), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87189,20 +82771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, sym_identifier, sym_self, - [35308] = 3, + [35381] = 4, + ACTIONS(2904), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2898), 8, + ACTIONS(2902), 7, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2896), 26, + ACTIONS(2900), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87229,20 +82812,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, sym_identifier, sym_self, - [35351] = 3, + [35426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2902), 8, + ACTIONS(2908), 8, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2900), 26, + ACTIONS(2906), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87269,21 +82852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, sym_identifier, sym_self, - [35394] = 4, - ACTIONS(2908), 1, - anon_sym_LPAREN, + [35469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 7, + ACTIONS(2912), 8, anon_sym_LBRACK, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_STAR, anon_sym_AMP, sym_metavariable, - ACTIONS(2904), 26, + ACTIONS(2910), 26, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87310,33 +82892,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, sym_identifier, sym_self, - [35439] = 15, + [35512] = 15, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, + ACTIONS(2914), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2916), 1, anon_sym_RBRACK, - ACTIONS(2914), 1, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1699), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1659), 1, sym_attribute, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87360,33 +82942,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35504] = 15, + [35577] = 15, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_RBRACK, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1795), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1654), 1, sym_attribute, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87410,33 +82992,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35569] = 15, + [35642] = 15, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, - sym_metavariable, ACTIONS(2922), 1, + sym_metavariable, + ACTIONS(2926), 1, anon_sym_RBRACK, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1765), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1722), 1, sym_attribute, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87460,33 +83042,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35634] = 15, + [35707] = 15, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, - ACTIONS(2924), 1, + ACTIONS(2928), 1, anon_sym_RBRACK, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1650), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1679), 1, sym_attribute, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87510,33 +83092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35699] = 15, + [35772] = 15, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, - ACTIONS(2926), 1, + ACTIONS(2930), 1, anon_sym_RBRACK, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1640), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1688), 1, sym_attribute, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87560,31 +83142,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35764] = 14, + [35837] = 14, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1988), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(2000), 1, + sym_bracketed_type, + STATE(2062), 1, sym_attribute, - STATE(2003), 1, + STATE(2179), 1, sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87608,31 +83190,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35826] = 14, + [35899] = 14, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, - STATE(2175), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(1955), 1, sym_attribute, + STATE(2000), 1, + sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87656,31 +83238,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35888] = 14, + [35961] = 14, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2910), 1, - sym_identifier, ACTIONS(2914), 1, + sym_identifier, + ACTIONS(2918), 1, anon_sym_default, - ACTIONS(2916), 1, + ACTIONS(2920), 1, sym_self, - ACTIONS(2918), 1, + ACTIONS(2922), 1, sym_metavariable, STATE(1316), 1, - sym_scoped_identifier, - STATE(1320), 1, sym_primitive_type, - STATE(1802), 1, + STATE(1320), 1, + sym_scoped_identifier, + STATE(2000), 1, + sym_bracketed_type, + STATE(2054), 1, sym_attribute, - STATE(2003), 1, + STATE(2179), 1, sym_generic_type_with_turbofish, - STATE(2123), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87704,29 +83286,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [35950] = 13, + [36023] = 13, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2928), 1, + ACTIONS(2932), 1, sym_identifier, - ACTIONS(2930), 1, + ACTIONS(2934), 1, anon_sym_default, - ACTIONS(2932), 1, + ACTIONS(2936), 1, sym_self, - ACTIONS(2934), 1, + ACTIONS(2938), 1, sym_metavariable, - STATE(1948), 1, + STATE(1813), 1, sym_primitive_type, - STATE(1951), 1, + STATE(1820), 1, sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87750,29 +83332,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [36009] = 13, + [36082] = 13, ACTIONS(13), 1, anon_sym_str, ACTIONS(75), 1, anon_sym_LT, - ACTIONS(2516), 1, + ACTIONS(2522), 1, anon_sym_COLON_COLON, - ACTIONS(2936), 1, + ACTIONS(2940), 1, sym_identifier, - ACTIONS(2938), 1, + ACTIONS(2942), 1, anon_sym_default, - ACTIONS(2940), 1, + ACTIONS(2944), 1, sym_self, - ACTIONS(2942), 1, + ACTIONS(2946), 1, sym_metavariable, - STATE(1813), 1, + STATE(1809), 1, sym_primitive_type, - STATE(1816), 1, + STATE(1812), 1, sym_scoped_identifier, - STATE(2003), 1, - sym_generic_type_with_turbofish, - STATE(2123), 1, + STATE(2000), 1, sym_bracketed_type, + STATE(2179), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -87796,18 +83378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_char, - [36068] = 3, - ACTIONS(437), 1, + [36141] = 3, + ACTIONS(445), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(435), 26, + ACTIONS(443), 26, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -87823,24 +83402,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_POUND, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_asm, anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36104] = 3, - ACTIONS(441), 1, + [36177] = 3, + ACTIONS(429), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(439), 26, + ACTIONS(427), 26, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -87856,24 +83435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_POUND, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_asm, anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36140] = 3, - ACTIONS(427), 1, + [36213] = 3, + ACTIONS(437), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 26, + ACTIONS(435), 26, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -87889,217 +83468,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_POUND, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_asm, anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36176] = 10, - ACTIONS(2144), 1, + [36249] = 10, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2948), 1, - anon_sym_LPAREN, - ACTIONS(2950), 1, - anon_sym_LBRACE, ACTIONS(2952), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(2954), 1, + anon_sym_LPAREN, ACTIONS(2956), 1, + anon_sym_COLON_COLON, + ACTIONS(2960), 1, anon_sym_AT, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 2, - anon_sym_COLON, + ACTIONS(2950), 2, anon_sym_EQ, - ACTIONS(2954), 2, + anon_sym_COLON, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2944), 10, + ACTIONS(2948), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36219] = 4, - ACTIONS(2016), 1, + [36292] = 4, + ACTIONS(2034), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 6, - anon_sym_COLON, + ACTIONS(2032), 6, anon_sym_as, anon_sym_for, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, - ACTIONS(2012), 12, + ACTIONS(2030), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [36249] = 4, - ACTIONS(2958), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1838), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1840), 16, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_LT2, anon_sym_PIPE, - anon_sym_EQ_GT, - [36279] = 4, - ACTIONS(2010), 1, + [36322] = 4, + ACTIONS(2028), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2008), 6, - anon_sym_COLON, + ACTIONS(2026), 6, anon_sym_as, anon_sym_for, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, - ACTIONS(2006), 12, + ACTIONS(2024), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [36309] = 4, + [36352] = 4, ACTIONS(2022), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2020), 6, - anon_sym_COLON, anon_sym_as, anon_sym_for, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, ACTIONS(2018), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [36339] = 4, - ACTIONS(2004), 1, - anon_sym_COLON_COLON, + [36382] = 4, + ACTIONS(2962), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 6, + ACTIONS(1850), 2, + anon_sym_EQ, anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2000), 12, + ACTIONS(1852), 16, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, - anon_sym_LT2, + anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [36369] = 3, + anon_sym_EQ_GT, + [36412] = 4, + ACTIONS(2014), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2020), 5, + ACTIONS(2012), 6, anon_sym_as, anon_sym_for, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, - ACTIONS(2018), 13, + ACTIONS(2010), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [36396] = 4, + [36442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2058), 2, - anon_sym_COLON, + ACTIONS(1864), 2, anon_sym_EQ, - ACTIONS(2022), 14, + anon_sym_COLON, + ACTIONS(1866), 16, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -88107,24 +83664,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36425] = 4, + [36469] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2012), 2, + ACTIONS(2018), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2100), 2, - anon_sym_COLON, + ACTIONS(2154), 2, anon_sym_EQ, - ACTIONS(2016), 14, + anon_sym_COLON, + ACTIONS(2022), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -88132,21 +83689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36454] = 3, + [36498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 2, - anon_sym_COLON, + ACTIONS(1850), 2, anon_sym_EQ, - ACTIONS(1840), 16, + anon_sym_COLON, + ACTIONS(1852), 16, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_else, @@ -88156,24 +83713,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36481] = 4, + [36525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2032), 5, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2030), 13, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [36552] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 2, + ACTIONS(2010), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2162), 2, - anon_sym_COLON, + ACTIONS(2164), 2, anon_sym_EQ, - ACTIONS(2004), 14, + anon_sym_COLON, + ACTIONS(2014), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -88181,23 +83762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36510] = 3, + [36581] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 2, - anon_sym_COLON, + ACTIONS(2030), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2084), 2, anon_sym_EQ, - ACTIONS(1866), 16, + anon_sym_COLON, + ACTIONS(2034), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -88205,24 +83787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36537] = 4, + [36610] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 2, + ACTIONS(2024), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2120), 2, - anon_sym_COLON, + ACTIONS(2094), 2, anon_sym_EQ, - ACTIONS(2010), 14, + anon_sym_COLON, + ACTIONS(2028), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_else, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -88230,84 +83812,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [36566] = 3, + [36639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2116), 6, - anon_sym_COLON, + ACTIONS(2132), 6, anon_sym_as, anon_sym_for, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, - ACTIONS(2114), 11, + ACTIONS(2130), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2078), 6, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(2076), 11, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [36592] = 3, + [36691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2120), 2, + ACTIONS(2128), 6, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2010), 15, + anon_sym_else, + sym_identifier, + ACTIONS(2126), 11, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36717] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2136), 6, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_for, + anon_sym_where, + anon_sym_COLON, anon_sym_else, + sym_identifier, + ACTIONS(2134), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - anon_sym_EQ_GT, - [36618] = 3, + [36743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2100), 2, + ACTIONS(2052), 6, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2016), 15, + anon_sym_else, + sym_identifier, + ACTIONS(2050), 11, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36769] = 8, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1976), 4, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(1974), 8, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS, + [36805] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2968), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2966), 10, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36644] = 3, + [36839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1095), 3, + ACTIONS(1501), 3, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(1097), 14, + anon_sym_RBRACE, + ACTIONS(1503), 14, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88322,38 +84005,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_asm, sym_identifier, - [36670] = 3, + [36865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2152), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2150), 11, + ACTIONS(1379), 3, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_POUND, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36696] = 3, + ACTIONS(1381), 14, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_asm, + sym_identifier, + [36891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1317), 3, + ACTIONS(1583), 3, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(1319), 14, + anon_sym_RBRACE, + ACTIONS(1585), 14, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88368,184 +84051,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_asm, sym_identifier, - [36722] = 3, + [36917] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2162), 2, + ACTIONS(2070), 6, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2004), 15, + anon_sym_else, + sym_identifier, + ACTIONS(2068), 11, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [36943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2164), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2014), 15, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_else, anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [36748] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2960), 1, - anon_sym_COLON_COLON, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + [36969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 4, + ACTIONS(2154), 2, + anon_sym_EQ, anon_sym_COLON, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1984), 8, + ACTIONS(2022), 15, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [36784] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2108), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2106), 11, - anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_else, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [36810] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(867), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - ACTIONS(869), 14, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - anon_sym_asm, - sym_identifier, - [36836] = 3, + anon_sym_EQ_GT, + [36995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2104), 6, + ACTIONS(2094), 2, + anon_sym_EQ, anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2102), 11, + ACTIONS(2028), 15, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_else, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [36862] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + anon_sym_EQ_GT, + [37021] = 8, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, anon_sym_COLON_COLON, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1212), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 4, - anon_sym_COLON, + ACTIONS(1988), 4, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, - ACTIONS(1974), 8, + ACTIONS(1986), 8, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_PLUS, - [36898] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2088), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2086), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [36924] = 2, + [37057] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1367), 16, + ACTIONS(1039), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88559,14 +84190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [36947] = 2, + [37080] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1575), 16, + ACTIONS(1459), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88580,14 +84211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [36970] = 2, + [37103] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1387), 16, + ACTIONS(1471), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88601,14 +84232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [36993] = 2, + [37126] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1451), 16, + ACTIONS(1475), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88622,14 +84253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37016] = 2, + [37149] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1567), 16, + ACTIONS(1479), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88643,56 +84274,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37039] = 2, + [37172] = 4, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1571), 16, + ACTIONS(1998), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37062] = 2, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [37199] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(983), 1, + sym_type_arguments, + STATE(1208), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1059), 16, + ACTIONS(1998), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(1996), 9, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37085] = 2, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PLUS, + [37232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1051), 16, + ACTIONS(915), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88706,14 +84344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37108] = 2, + [37255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1035), 16, + ACTIONS(939), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88727,14 +84365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37131] = 2, + [37278] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1055), 16, + ACTIONS(943), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88748,14 +84386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37154] = 2, + [37301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1435), 16, + ACTIONS(947), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88769,14 +84407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37177] = 2, + [37324] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1515), 16, + ACTIONS(1115), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88790,14 +84428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37200] = 2, + [37347] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1329), 16, + ACTIONS(1119), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88811,35 +84449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37223] = 2, + [37370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1019), 16, + ACTIONS(2170), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2168), 12, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [37246] = 2, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [37395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1333), 16, + ACTIONS(1327), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88853,36 +84492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [37269] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2112), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2110), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37294] = 2, + anon_sym_asm, + [37418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1011), 16, + ACTIONS(1331), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88896,14 +84513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37317] = 2, + [37441] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1579), 16, + ACTIONS(1335), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88917,14 +84534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37340] = 2, + [37464] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1379), 16, + ACTIONS(1339), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88938,14 +84555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37363] = 2, + [37487] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1015), 16, + ACTIONS(1343), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88959,14 +84576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37386] = 2, + [37510] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1023), 16, + ACTIONS(1347), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -88980,14 +84597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37409] = 2, + [37533] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1325), 16, + ACTIONS(1351), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89001,14 +84618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37432] = 2, + [37556] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1321), 16, + ACTIONS(1355), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89022,14 +84639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37455] = 2, + [37579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1391), 16, + ACTIONS(1359), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89043,14 +84660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37478] = 2, + [37602] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1527), 16, + ACTIONS(1363), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89064,14 +84681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37501] = 2, + [37625] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1063), 16, + ACTIONS(1367), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89085,14 +84702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37524] = 2, + [37648] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(915), 16, + ACTIONS(1371), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89106,14 +84723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37547] = 2, + [37671] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1447), 16, + ACTIONS(1375), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89127,14 +84744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37570] = 2, + [37694] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1301), 16, + ACTIONS(1383), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89148,14 +84765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37593] = 2, + [37717] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1297), 16, + ACTIONS(1391), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89169,14 +84786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37616] = 2, + [37740] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 16, + ACTIONS(1395), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89190,14 +84807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37639] = 2, + [37763] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1047), 16, + ACTIONS(1399), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89211,14 +84828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37662] = 2, + [37786] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1277), 16, + ACTIONS(1403), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89232,14 +84849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37685] = 2, + [37809] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1523), 16, + ACTIONS(1407), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89253,36 +84870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [37708] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2084), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2082), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [37733] = 2, + anon_sym_asm, + [37832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1201), 16, + ACTIONS(1411), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89296,14 +84891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37756] = 2, + [37855] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1555), 16, + ACTIONS(1443), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89317,14 +84912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37779] = 2, + [37878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(959), 16, + ACTIONS(1451), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89338,14 +84933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37802] = 2, + [37901] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1289), 16, + ACTIONS(1455), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89359,14 +84954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37825] = 2, + [37924] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 16, + ACTIONS(1463), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89380,14 +84975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37848] = 2, + [37947] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1519), 16, + ACTIONS(1467), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89401,37 +84996,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37871] = 4, - ACTIONS(2962), 1, + [37970] = 4, + ACTIONS(2976), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(1994), 5, - anon_sym_COLON, anon_sym_as, anon_sym_where, + anon_sym_COLON, anon_sym_else, sym_identifier, ACTIONS(1992), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [37898] = 2, + [37997] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1511), 16, + ACTIONS(1485), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89445,40 +85040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [37921] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - STATE(989), 1, - sym_type_arguments, - STATE(1203), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1994), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1992), 9, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [37954] = 2, + anon_sym_asm, + [38020] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1007), 16, + ACTIONS(1489), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89492,14 +85061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [37977] = 2, + [38043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1281), 16, + ACTIONS(1493), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89513,14 +85082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38000] = 2, + [38066] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1499), 16, + ACTIONS(1497), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89534,14 +85103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38023] = 2, + [38089] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 16, + ACTIONS(1505), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89555,36 +85124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [38046] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2044), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2042), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38071] = 2, + anon_sym_asm, + [38112] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1027), 16, + ACTIONS(1511), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89598,14 +85145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38094] = 2, + [38135] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1491), 16, + ACTIONS(1515), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89619,14 +85166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38117] = 2, + [38158] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1193), 16, + ACTIONS(1519), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89640,14 +85187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38140] = 2, + [38181] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1273), 16, + ACTIONS(1523), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89661,14 +85208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38163] = 2, + [38204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1181), 16, + ACTIONS(1527), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89682,14 +85229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38186] = 2, + [38227] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1043), 16, + ACTIONS(1531), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89703,14 +85250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38209] = 2, + [38250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1091), 16, + ACTIONS(1535), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89724,14 +85271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38232] = 2, + [38273] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1133), 16, + ACTIONS(1543), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89745,14 +85292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38255] = 2, + [38296] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1487), 16, + ACTIONS(1551), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89766,14 +85313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38278] = 2, + [38319] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(947), 16, + ACTIONS(1555), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89787,14 +85334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38301] = 2, + [38342] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1221), 16, + ACTIONS(1559), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89808,14 +85355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38324] = 2, + [38365] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1459), 16, + ACTIONS(1563), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89829,14 +85376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38347] = 2, + [38388] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1583), 16, + ACTIONS(1567), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89850,14 +85397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38370] = 2, + [38411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1479), 16, + ACTIONS(1571), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89871,14 +85418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38393] = 2, + [38434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1177), 16, + ACTIONS(1575), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89892,14 +85439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38416] = 2, + [38457] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1475), 16, + ACTIONS(1579), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89913,14 +85460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38439] = 2, + [38480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(919), 16, + ACTIONS(867), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89934,14 +85481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38462] = 2, + [38503] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1495), 16, + ACTIONS(875), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89955,14 +85502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38485] = 2, + [38526] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(927), 16, + ACTIONS(879), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89976,14 +85523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38508] = 2, + [38549] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1587), 16, + ACTIONS(883), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -89997,14 +85544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38531] = 2, + [38572] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(971), 16, + ACTIONS(887), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90018,14 +85565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38554] = 2, + [38595] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1075), 16, + ACTIONS(891), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90039,14 +85586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38577] = 2, + [38618] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1563), 16, + ACTIONS(895), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90060,14 +85607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38600] = 2, + [38641] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1071), 16, + ACTIONS(899), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90081,14 +85628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38623] = 2, + [38664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1423), 16, + ACTIONS(903), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90102,14 +85649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38646] = 2, + [38687] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1173), 16, + ACTIONS(907), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90123,14 +85670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38669] = 2, + [38710] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 16, + ACTIONS(1587), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90144,14 +85691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38692] = 2, + [38733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1403), 16, + ACTIONS(911), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90165,14 +85712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38715] = 2, + [38756] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1395), 16, + ACTIONS(935), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90186,14 +85733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38738] = 2, + [38779] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(511), 16, + ACTIONS(951), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90207,14 +85754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38761] = 2, + [38802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(979), 16, + ACTIONS(955), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90228,14 +85775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38784] = 2, + [38825] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1351), 16, + ACTIONS(959), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90249,14 +85796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38807] = 2, + [38848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1383), 16, + ACTIONS(963), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90270,14 +85817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38830] = 2, + [38871] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1149), 16, + ACTIONS(967), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90291,14 +85838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38853] = 2, + [38894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(903), 16, + ACTIONS(971), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90312,14 +85859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38876] = 2, + [38917] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1363), 16, + ACTIONS(975), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90333,37 +85880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [38899] = 4, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1996), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [38926] = 2, + anon_sym_asm, + [38940] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(975), 16, + ACTIONS(979), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90377,14 +85901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38949] = 2, + [38963] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1551), 16, + ACTIONS(983), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90398,14 +85922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38972] = 2, + [38986] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1269), 16, + ACTIONS(987), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90419,14 +85943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [38995] = 2, + [39009] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(871), 16, + ACTIONS(991), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90440,36 +85964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [39018] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2054), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2052), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [39043] = 2, + anon_sym_asm, + [39032] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(939), 16, + ACTIONS(995), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90483,14 +85985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39066] = 2, + [39055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1161), 16, + ACTIONS(999), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90504,14 +86006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39089] = 2, + [39078] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1153), 16, + ACTIONS(1003), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90525,14 +86027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39112] = 2, + [39101] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1145), 16, + ACTIONS(1011), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90546,14 +86048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39135] = 2, + [39124] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1087), 16, + ACTIONS(1023), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90567,14 +86069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39158] = 2, + [39147] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(967), 16, + ACTIONS(1027), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90588,14 +86090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39181] = 2, + [39170] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1039), 16, + ACTIONS(1031), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90609,14 +86111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39204] = 2, + [39193] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1031), 16, + ACTIONS(1035), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90630,35 +86132,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39227] = 2, + [39216] = 4, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1355), 16, + ACTIONS(1994), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(1992), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - anon_sym_POUND, - anon_sym_asm, - [39250] = 2, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39243] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1345), 16, + ACTIONS(1043), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90672,14 +86176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39273] = 2, + [39266] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(911), 16, + ACTIONS(1047), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90693,14 +86197,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39296] = 2, + [39289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(899), 16, + ACTIONS(2082), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2080), 12, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [39314] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1055), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90714,14 +86240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39319] = 2, + [39337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1559), 16, + ACTIONS(1059), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90735,14 +86261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39342] = 2, + [39360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(907), 16, + ACTIONS(1067), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90756,14 +86282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39365] = 2, + [39383] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1309), 16, + ACTIONS(1071), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90777,14 +86303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39388] = 2, + [39406] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(895), 16, + ACTIONS(1075), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90798,14 +86324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39411] = 2, + [39429] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1141), 16, + ACTIONS(1079), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90819,14 +86345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39434] = 2, + [39452] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1359), 16, + ACTIONS(1083), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90840,14 +86366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39457] = 2, + [39475] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1431), 16, + ACTIONS(1087), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90861,14 +86387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39480] = 2, + [39498] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1427), 16, + ACTIONS(863), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90882,14 +86408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39503] = 2, + [39521] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(935), 16, + ACTIONS(1095), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90903,14 +86429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39526] = 2, + [39544] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1313), 16, + ACTIONS(1099), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90924,37 +86450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [39549] = 4, - ACTIONS(2964), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1996), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39576] = 2, + anon_sym_asm, + [39567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1443), 16, + ACTIONS(1103), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90968,14 +86471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39599] = 2, + [39590] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1067), 16, + ACTIONS(1107), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -90989,14 +86492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39622] = 2, + [39613] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1503), 16, + ACTIONS(1111), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91010,60 +86513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [39645] = 4, - ACTIONS(2966), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1996), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39672] = 4, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1996), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39699] = 2, + anon_sym_asm, + [39636] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1483), 16, + ACTIONS(1123), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91077,40 +86534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [39722] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - STATE(989), 1, - sym_type_arguments, - STATE(1203), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(1996), 9, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [39755] = 2, + anon_sym_asm, + [39659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 16, + ACTIONS(1127), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91124,14 +86555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39778] = 2, + [39682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1265), 16, + ACTIONS(1131), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91145,14 +86576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39801] = 2, + [39705] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(991), 16, + ACTIONS(1135), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91166,14 +86597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39824] = 2, + [39728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1507), 16, + ACTIONS(1139), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91187,36 +86618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [39847] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2126), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2124), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [39872] = 2, + anon_sym_asm, + [39751] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1261), 16, + ACTIONS(1143), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91230,14 +86639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39895] = 2, + [39774] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1137), 16, + ACTIONS(1147), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91251,14 +86660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39918] = 2, + [39797] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1253), 16, + ACTIONS(1151), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91272,14 +86681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39941] = 2, + [39820] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1245), 16, + ACTIONS(1155), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91293,14 +86702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39964] = 2, + [39843] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1547), 16, + ACTIONS(1159), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91314,14 +86723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [39987] = 2, + [39866] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1129), 16, + ACTIONS(1163), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91335,14 +86744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40010] = 2, + [39889] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1535), 16, + ACTIONS(1167), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91356,14 +86765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40033] = 2, + [39912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1531), 16, + ACTIONS(1171), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91377,39 +86786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [40056] = 6, - ACTIONS(2948), 1, - anon_sym_LPAREN, - ACTIONS(2970), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2946), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2944), 10, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [40087] = 2, + anon_sym_asm, + [39935] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1241), 16, + ACTIONS(1175), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91423,14 +86807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40110] = 2, + [39958] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1455), 16, + ACTIONS(1179), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91444,14 +86828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40133] = 2, + [39981] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(503), 16, + ACTIONS(1183), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91465,14 +86849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40156] = 2, + [40004] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(931), 16, + ACTIONS(1187), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91486,36 +86870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [40179] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2132), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2130), 12, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [40204] = 2, + anon_sym_asm, + [40027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1305), 16, + ACTIONS(1191), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91529,14 +86891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40227] = 2, + [40050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1371), 16, + ACTIONS(1195), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91550,14 +86912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40250] = 2, + [40073] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(951), 16, + ACTIONS(1199), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91571,36 +86933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, - anon_sym_asm, - [40273] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2038), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2036), 11, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [40298] = 2, + anon_sym_asm, + [40096] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1003), 16, + ACTIONS(1203), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91614,14 +86954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40321] = 2, + [40119] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1341), 16, + ACTIONS(1207), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91635,14 +86975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40344] = 2, + [40142] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1337), 16, + ACTIONS(1211), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91656,14 +86996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40367] = 2, + [40165] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(943), 16, + ACTIONS(1219), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91677,14 +87017,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40390] = 2, + [40188] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1237), 16, + ACTIONS(2172), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(2092), 11, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [40213] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1223), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91698,14 +87060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40413] = 2, + [40236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(955), 16, + ACTIONS(1227), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91719,14 +87081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40436] = 2, + [40259] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1213), 16, + ACTIONS(1231), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91740,14 +87102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40459] = 2, + [40282] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1471), 16, + ACTIONS(1235), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91761,14 +87123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40482] = 2, + [40305] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1233), 16, + ACTIONS(1239), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91782,14 +87144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40505] = 2, + [40328] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1121), 16, + ACTIONS(1247), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91803,14 +87165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40528] = 2, + [40351] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(963), 16, + ACTIONS(1251), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91824,14 +87186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40551] = 2, + [40374] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1229), 16, + ACTIONS(1255), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91845,14 +87207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40574] = 2, + [40397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1225), 16, + ACTIONS(1259), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91866,14 +87228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40597] = 2, + [40420] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1217), 16, + ACTIONS(1263), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91887,14 +87249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40620] = 2, + [40443] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1249), 16, + ACTIONS(1267), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91908,14 +87270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40643] = 2, + [40466] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1079), 16, + ACTIONS(1271), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91929,14 +87291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40666] = 2, + [40489] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1165), 16, + ACTIONS(1275), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91950,14 +87312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40689] = 2, + [40512] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1185), 16, + ACTIONS(1279), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91971,14 +87333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40712] = 2, + [40535] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(863), 16, + ACTIONS(1283), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -91992,14 +87354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40735] = 2, + [40558] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1285), 16, + ACTIONS(1287), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92013,14 +87375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40758] = 2, + [40581] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1467), 16, + ACTIONS(1291), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92034,14 +87396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40781] = 2, + [40604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1205), 16, + ACTIONS(1295), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92055,14 +87417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40804] = 2, + [40627] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1209), 16, + ACTIONS(1299), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92076,14 +87438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40827] = 2, + [40650] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1293), 16, + ACTIONS(1303), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92097,14 +87459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40850] = 2, + [40673] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1375), 16, + ACTIONS(1307), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92118,14 +87480,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40873] = 2, + [40696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1197), 16, + ACTIONS(1311), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92139,14 +87501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40896] = 2, + [40719] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1463), 16, + ACTIONS(1315), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92160,14 +87522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40919] = 2, + [40742] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1125), 16, + ACTIONS(1319), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92181,14 +87543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40942] = 2, + [40765] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1189), 16, + ACTIONS(1323), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92202,18 +87564,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40965] = 2, + [40788] = 4, + ACTIONS(2978), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(983), 16, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, + ACTIONS(1994), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(1992), 10, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [40815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2174), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(2118), 11, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [40840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2048), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2046), 12, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [40865] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(535), 16, + anon_sym_SEMI, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, anon_sym_fn, anon_sym_impl, anon_sym_let, @@ -92223,14 +87652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [40988] = 2, + [40888] = 4, + ACTIONS(2980), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1117), 16, + ACTIONS(1994), 5, + anon_sym_as, + anon_sym_where, + anon_sym_COLON, + anon_sym_else, + sym_identifier, + ACTIONS(1992), 10, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [40915] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(471), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92244,14 +87696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41011] = 2, + [40938] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 16, + ACTIONS(1019), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92265,14 +87717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41034] = 2, + [40961] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1113), 16, + ACTIONS(457), 16, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92286,14 +87738,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41057] = 2, + [40984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1105), 16, + ACTIONS(2066), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2064), 12, anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41009] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1215), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92307,14 +87781,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41080] = 2, + [41032] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(999), 16, + ACTIONS(1243), 16, anon_sym_SEMI, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, anon_sym_RBRACE, + anon_sym_asm, + [41055] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92328,14 +87823,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41103] = 2, + [41078] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(519), 16, + ACTIONS(1387), 16, anon_sym_SEMI, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, anon_sym_RBRACE, + anon_sym_asm, + [41101] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1415), 16, + anon_sym_SEMI, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -92349,254 +87865,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, anon_sym_POUND, + anon_sym_RBRACE, anon_sym_asm, - [41126] = 3, + [41124] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(983), 1, + sym_type_arguments, + STATE(1208), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 4, - anon_sym_as, + ACTIONS(1994), 3, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2298), 11, + ACTIONS(1992), 9, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [41150] = 3, - ACTIONS(1846), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1848), 14, - anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - anon_sym_EQ_GT, - [41174] = 5, - ACTIONS(2976), 1, + anon_sym_PLUS, + [41157] = 6, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(2982), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 2, - anon_sym_COLON, + ACTIONS(2950), 2, anon_sym_EQ, - ACTIONS(2978), 2, + anon_sym_COLON, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2972), 10, + ACTIONS(2948), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41202] = 3, + [41188] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2204), 4, + ACTIONS(2074), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2202), 11, + ACTIONS(2072), 12, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41226] = 3, + [41213] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 4, + ACTIONS(1419), 16, + anon_sym_SEMI, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_RBRACE, + anon_sym_asm, + [41236] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1051), 16, + anon_sym_SEMI, + anon_sym_const, + anon_sym_default, + anon_sym_mod, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + anon_sym_POUND, + anon_sym_RBRACE, + anon_sym_asm, + [41259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2230), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(1996), 11, + ACTIONS(2228), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41250] = 3, + [41283] = 5, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2968), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2966), 10, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 4, + ACTIONS(2278), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2362), 11, + ACTIONS(2276), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41274] = 3, + [41335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 4, + ACTIONS(2192), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2342), 11, + ACTIONS(425), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41298] = 3, + [41359] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 4, + ACTIONS(1994), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2338), 11, + ACTIONS(1992), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41322] = 3, + [41383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 4, + ACTIONS(1998), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2322), 11, + ACTIONS(1996), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41346] = 3, + [41407] = 3, + ACTIONS(1834), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2270), 4, - anon_sym_as, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2268), 11, + ACTIONS(1836), 14, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [41370] = 3, + anon_sym_EQ_GT, + [41431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2192), 4, + ACTIONS(2286), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2190), 11, + ACTIONS(2284), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41394] = 3, - ACTIONS(1850), 1, + [41455] = 3, + ACTIONS(1858), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 14, + ACTIONS(1860), 14, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -92604,651 +88173,696 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41418] = 3, + [41479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 4, + ACTIONS(2340), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2384), 11, + ACTIONS(2338), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41442] = 3, + [41503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2276), 4, + ACTIONS(2348), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(429), 11, + ACTIONS(2346), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41466] = 3, + [41527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 4, + ACTIONS(2334), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2380), 11, + ACTIONS(2332), 11, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [41551] = 3, + ACTIONS(1854), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1856), 14, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2182), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2180), 11, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41490] = 3, + [41599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2222), 4, + ACTIONS(2186), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2220), 11, + ACTIONS(2184), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41514] = 3, + [41623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2308), 4, + ACTIONS(2226), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2306), 11, + ACTIONS(2224), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41538] = 3, + [41647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2254), 4, + ACTIONS(2234), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2252), 11, + ACTIONS(2232), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41562] = 3, - ACTIONS(1834), 1, - anon_sym_EQ, + [41671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 14, + ACTIONS(2362), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2360), 11, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, + anon_sym_PLUS, anon_sym_GT, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - anon_sym_EQ_GT, - [41586] = 3, + [41695] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2332), 4, + ACTIONS(2296), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(2330), 11, + ACTIONS(2294), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41610] = 3, + [41719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 4, + ACTIONS(2308), 4, anon_sym_as, anon_sym_where, anon_sym_else, sym_identifier, - ACTIONS(1992), 11, + ACTIONS(2306), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [41634] = 4, - ACTIONS(2946), 1, - anon_sym_EQ, + [41743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2944), 11, + ACTIONS(2282), 4, + anon_sym_as, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2280), 11, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_PLUS, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_GT, - [41659] = 12, - ACTIONS(2144), 1, + [41767] = 13, + ACTIONS(1986), 1, + anon_sym_PLUS, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2944), 1, + ACTIONS(2948), 1, anon_sym_PIPE, - ACTIONS(2946), 1, - anon_sym_COLON, ACTIONS(2950), 1, + anon_sym_COLON, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(2956), 1, + ACTIONS(2960), 1, anon_sym_AT, - ACTIONS(2980), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2989), 1, anon_sym_COLON_COLON, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1212), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1984), 3, - anon_sym_RPAREN, + ACTIONS(2984), 2, anon_sym_COMMA, - anon_sym_PLUS, - [41700] = 12, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2950), 1, - anon_sym_LBRACE, - ACTIONS(2956), 1, - anon_sym_AT, - ACTIONS(2984), 1, - anon_sym_RBRACK, - ACTIONS(2987), 1, - anon_sym_LPAREN, - ACTIONS(2989), 1, - anon_sym_COLON_COLON, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + anon_sym_RPAREN, + [41810] = 3, + ACTIONS(2993), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 2, + ACTIONS(2991), 13, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(2944), 2, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2954), 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_in, anon_sym_DOT_DOT_EQ, - [41741] = 13, - ACTIONS(1984), 1, - anon_sym_PLUS, - ACTIONS(2144), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [41833] = 12, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2944), 1, + ACTIONS(2948), 1, anon_sym_PIPE, - ACTIONS(2946), 1, - anon_sym_COLON, ACTIONS(2950), 1, + anon_sym_COLON, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(2956), 1, + ACTIONS(2960), 1, anon_sym_AT, - ACTIONS(2991), 1, + ACTIONS(2995), 1, anon_sym_LPAREN, - ACTIONS(2993), 1, + ACTIONS(2997), 1, anon_sym_COLON_COLON, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1212), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 2, - anon_sym_RPAREN, + ACTIONS(1986), 3, anon_sym_COMMA, - [41784] = 3, - ACTIONS(2997), 1, + anon_sym_RPAREN, + anon_sym_PLUS, + [41874] = 3, + ACTIONS(3001), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 13, + ACTIONS(2999), 13, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41807] = 3, - ACTIONS(3001), 1, + [41897] = 4, + ACTIONS(2950), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 13, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2948), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, anon_sym_EQ_GT, - [41830] = 4, - ACTIONS(3007), 1, + [41922] = 12, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2960), 1, + anon_sym_AT, + ACTIONS(2984), 1, + anon_sym_RBRACK, + ACTIONS(3003), 1, + anon_sym_LPAREN, + ACTIONS(3005), 1, anon_sym_COLON_COLON, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3003), 10, + ACTIONS(1986), 2, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, + anon_sym_PLUS, + ACTIONS(2948), 2, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, anon_sym_PIPE, - anon_sym_EQ_GT, - [41854] = 4, - ACTIONS(3007), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [41963] = 4, + ACTIONS(3011), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_COLON, + ACTIONS(3009), 2, anon_sym_EQ, - ACTIONS(3009), 10, + anon_sym_COLON, + ACTIONS(3007), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41878] = 4, - ACTIONS(3013), 1, - anon_sym_DASH_GT, + [41987] = 4, + ACTIONS(3017), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2048), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2046), 9, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3015), 2, anon_sym_EQ, - anon_sym_PLUS, - [41902] = 4, - ACTIONS(3015), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2078), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2076), 9, - anon_sym_SEMI, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [41926] = 4, - ACTIONS(3017), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2062), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2060), 9, + ACTIONS(3013), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_if, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - [41950] = 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [42011] = 4, ACTIONS(3019), 1, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2068), 3, - anon_sym_where, - anon_sym_else, - sym_identifier, - ACTIONS(2066), 9, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3009), 2, anon_sym_EQ, - anon_sym_PLUS, - [41974] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2058), 2, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2022), 11, + ACTIONS(3007), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [41996] = 13, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2960), 1, - anon_sym_COLON_COLON, + [42035] = 4, ACTIONS(3021), 1, - anon_sym_COLON, - ACTIONS(3023), 1, - anon_sym_COMMA, - ACTIONS(3025), 1, - anon_sym_EQ, - ACTIONS(3027), 1, - anon_sym_GT, - STATE(987), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, - STATE(1654), 1, - sym_trait_bounds, - STATE(1658), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1984), 2, - anon_sym_as, - anon_sym_PLUS, - [42038] = 4, - ACTIONS(3029), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 2, - anon_sym_COLON, + ACTIONS(3009), 2, anon_sym_EQ, - ACTIONS(3003), 10, + anon_sym_COLON, + ACTIONS(3007), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42062] = 4, - ACTIONS(3029), 1, + [42059] = 4, + ACTIONS(3011), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_COLON, + ACTIONS(3025), 2, anon_sym_EQ, - ACTIONS(3009), 10, + anon_sym_COLON, + ACTIONS(3023), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42086] = 4, - ACTIONS(3035), 1, + [42083] = 4, + ACTIONS(3021), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 2, - anon_sym_COLON, + ACTIONS(3025), 2, anon_sym_EQ, - ACTIONS(3031), 10, + anon_sym_COLON, + ACTIONS(3023), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42110] = 4, - ACTIONS(3037), 1, - anon_sym_COLON_COLON, + [42107] = 4, + ACTIONS(3027), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3003), 10, + ACTIONS(2160), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2158), 9, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_if, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PLUS, + [42131] = 4, + ACTIONS(3029), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2142), 3, + anon_sym_where, anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_EQ_GT, - [42134] = 4, - ACTIONS(3035), 1, + sym_identifier, + ACTIONS(2140), 9, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PLUS, + [42155] = 4, + ACTIONS(3019), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 2, - anon_sym_COLON, + ACTIONS(3025), 2, anon_sym_EQ, - ACTIONS(3039), 10, + anon_sym_COLON, + ACTIONS(3023), 10, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42158] = 4, - ACTIONS(3037), 1, - anon_sym_COLON_COLON, + [42179] = 4, + ACTIONS(3031), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3009), 10, + ACTIONS(2106), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2104), 9, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_PLUS, + [42203] = 4, + ACTIONS(3033), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2150), 3, + anon_sym_where, + anon_sym_else, + sym_identifier, + ACTIONS(2148), 9, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PLUS, + [42227] = 4, + ACTIONS(3017), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3037), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3035), 10, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42182] = 3, - ACTIONS(3045), 1, - anon_sym_EQ, + [42251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 11, + ACTIONS(2084), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2034), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42203] = 3, + [42273] = 13, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, + ACTIONS(3039), 1, + anon_sym_COMMA, + ACTIONS(3041), 1, + anon_sym_EQ, + ACTIONS(3043), 1, + anon_sym_COLON, + ACTIONS(3045), 1, + anon_sym_GT, + STATE(980), 1, + sym_type_arguments, + STATE(1342), 1, + sym_parameters, + STATE(1790), 1, + sym_trait_bounds, + STATE(1796), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1986), 2, + anon_sym_as, + anon_sym_PLUS, + [42315] = 3, ACTIONS(3049), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93257,16 +88871,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3047), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42224] = 3, + [42336] = 3, ACTIONS(3053), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93275,16 +88889,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42245] = 3, + [42357] = 3, ACTIONS(3057), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93293,16 +88907,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3055), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42266] = 3, + [42378] = 3, ACTIONS(3061), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93311,16 +88925,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3059), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42287] = 3, + [42399] = 3, ACTIONS(3065), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93329,16 +88943,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3063), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42308] = 3, + [42420] = 3, ACTIONS(3069), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93347,16 +88961,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3067), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42329] = 3, + [42441] = 3, ACTIONS(3073), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93365,16 +88979,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42350] = 3, + [42462] = 3, ACTIONS(3077), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93383,70 +88997,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42371] = 3, - ACTIONS(3005), 1, + [42483] = 3, + ACTIONS(3081), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3003), 11, + ACTIONS(3079), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42392] = 3, - ACTIONS(3081), 1, + [42504] = 3, + ACTIONS(3085), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3079), 11, + ACTIONS(3083), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42413] = 3, - ACTIONS(3085), 1, + [42525] = 3, + ACTIONS(449), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 11, + ACTIONS(447), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42434] = 3, + [42546] = 3, ACTIONS(3089), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93455,70 +89069,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3087), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42455] = 3, - ACTIONS(2946), 1, + [42567] = 3, + ACTIONS(3093), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 11, + ACTIONS(3091), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42476] = 3, - ACTIONS(3093), 1, + [42588] = 3, + ACTIONS(3097), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3091), 11, + ACTIONS(3095), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42497] = 3, - ACTIONS(3097), 1, + [42609] = 3, + ACTIONS(3009), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3095), 11, + ACTIONS(3007), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42518] = 3, + [42630] = 3, ACTIONS(3101), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93527,16 +89141,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3099), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42539] = 3, + [42651] = 3, ACTIONS(3105), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93545,16 +89159,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3103), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42560] = 3, + [42672] = 3, ACTIONS(3109), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93563,70 +89177,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3107), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42581] = 3, - ACTIONS(3011), 1, + [42693] = 3, + ACTIONS(3113), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 11, + ACTIONS(3111), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42602] = 3, - ACTIONS(3113), 1, + [42714] = 3, + ACTIONS(3117), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3111), 11, + ACTIONS(3115), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42623] = 3, - ACTIONS(3117), 1, + [42735] = 3, + ACTIONS(2950), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 11, + ACTIONS(2948), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42644] = 3, + [42756] = 3, ACTIONS(3121), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93635,16 +89249,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3119), 11, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_EQ_GT, + [42777] = 3, + ACTIONS(3025), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3023), 11, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42665] = 3, + [42798] = 3, ACTIONS(3125), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93653,16 +89285,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3123), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42686] = 3, + [42819] = 3, ACTIONS(3129), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93671,16 +89303,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3127), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42707] = 3, + [42840] = 3, ACTIONS(3133), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93689,16 +89321,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3131), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42728] = 3, + [42861] = 3, ACTIONS(3137), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93707,16 +89339,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3135), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42749] = 3, + [42882] = 3, ACTIONS(3141), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93725,16 +89357,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3139), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42770] = 3, + [42903] = 3, ACTIONS(3145), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93743,16 +89375,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3143), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42791] = 3, + [42924] = 3, ACTIONS(3149), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -93761,429 +89393,356 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3147), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42812] = 3, - ACTIONS(517), 1, + [42945] = 3, + ACTIONS(3153), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(515), 11, + ACTIONS(3151), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42833] = 3, - ACTIONS(3153), 1, + [42966] = 3, + ACTIONS(3157), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3151), 11, + ACTIONS(3155), 11, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_EQ_GT, - [42854] = 5, - ACTIONS(2100), 1, + [42987] = 8, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(3159), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2966), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [43018] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, + STATE(980), 1, + sym_type_arguments, + STATE(1342), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1986), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [43046] = 5, + ACTIONS(2094), 1, anon_sym_COLON, - ACTIONS(2468), 1, + ACTIONS(2480), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2016), 4, + ACTIONS(2028), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - ACTIONS(2012), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(2024), 5, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_LT2, - [42878] = 4, + [43070] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 2, + ACTIONS(2506), 2, anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2000), 4, + ACTIONS(2010), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2004), 5, + ACTIONS(2014), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42900] = 5, - ACTIONS(2058), 1, - anon_sym_COLON, + [43092] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 3, + ACTIONS(2512), 2, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2018), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2474), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2022), 5, anon_sym_COMMA, - ACTIONS(2022), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42924] = 5, - ACTIONS(2100), 1, - anon_sym_COLON, + [43114] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2012), 3, + ACTIONS(2474), 2, + anon_sym_RBRACK, + anon_sym_LPAREN, + ACTIONS(2030), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2468), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2034), 5, anon_sym_COMMA, - ACTIONS(2016), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [42948] = 12, - ACTIONS(2813), 1, - anon_sym_default, - ACTIONS(3155), 1, - anon_sym_const, - ACTIONS(3157), 1, - anon_sym_mod, - ACTIONS(3159), 1, - anon_sym_enum, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3163), 1, - anon_sym_struct, - ACTIONS(3165), 1, - anon_sym_trait, - ACTIONS(3167), 1, - anon_sym_type, - ACTIONS(3169), 1, - anon_sym_use, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(2193), 1, - sym_function_modifiers, + [43136] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [42986] = 5, - ACTIONS(2162), 1, - anon_sym_COLON, - ACTIONS(2504), 1, + ACTIONS(2480), 2, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2004), 4, + ACTIONS(2024), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2028), 5, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - ACTIONS(2000), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_LT2, - [43010] = 3, - ACTIONS(3171), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2904), 10, - anon_sym_const, - anon_sym_default, - anon_sym_mod, - anon_sym_enum, - anon_sym_fn, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_use, - sym_identifier, - [43030] = 5, - ACTIONS(2120), 1, + [43158] = 5, + ACTIONS(2164), 1, anon_sym_COLON, - ACTIONS(2480), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - ACTIONS(2006), 5, - anon_sym_RPAREN, + ACTIONS(2010), 3, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - [43054] = 5, - ACTIONS(2058), 1, - anon_sym_COLON, - ACTIONS(2474), 1, + ACTIONS(2506), 3, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2022), 4, + anon_sym_RPAREN, + ACTIONS(2014), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - ACTIONS(2018), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS, + [43182] = 7, + ACTIONS(2044), 1, anon_sym_LT2, - [43078] = 7, - ACTIONS(2137), 1, + ACTIONS(2057), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2964), 1, anon_sym_COLON_COLON, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1356), 1, + STATE(1342), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 6, + ACTIONS(1974), 6, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [43106] = 5, - ACTIONS(2120), 1, - anon_sym_COLON, + [43210] = 12, + ACTIONS(2815), 1, + anon_sym_default, + ACTIONS(3161), 1, + anon_sym_const, + ACTIONS(3163), 1, + anon_sym_mod, + ACTIONS(3165), 1, + anon_sym_enum, + ACTIONS(3167), 1, + anon_sym_fn, + ACTIONS(3169), 1, + anon_sym_struct, + ACTIONS(3171), 1, + anon_sym_trait, + ACTIONS(3173), 1, + anon_sym_type, + ACTIONS(3175), 1, + anon_sym_use, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2196), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2480), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2010), 4, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [43130] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + [43248] = 7, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(3177), 1, anon_sym_COLON_COLON, - STATE(987), 1, + STATE(982), 1, sym_type_arguments, - STATE(1356), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 6, - anon_sym_as, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + ACTIONS(2966), 3, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, anon_sym_PIPE, - [43158] = 5, - ACTIONS(2162), 1, + [43276] = 5, + ACTIONS(2164), 1, anon_sym_COLON, + ACTIONS(2506), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2504), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2004), 4, + ACTIONS(2014), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [43182] = 4, + ACTIONS(2010), 5, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_LT2, + [43300] = 5, + ACTIONS(2154), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 2, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2018), 4, - anon_sym_SEMI, + ACTIONS(2018), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2022), 5, + ACTIONS(2512), 3, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2022), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [43204] = 12, - ACTIONS(2813), 1, - anon_sym_default, - ACTIONS(3173), 1, - anon_sym_const, - ACTIONS(3175), 1, - anon_sym_mod, - ACTIONS(3177), 1, - anon_sym_enum, - ACTIONS(3179), 1, - anon_sym_fn, - ACTIONS(3181), 1, - anon_sym_struct, - ACTIONS(3183), 1, - anon_sym_trait, - ACTIONS(3185), 1, - anon_sym_type, - ACTIONS(3187), 1, - anon_sym_use, - STATE(1496), 1, - aux_sym_function_modifiers_repeat1, - STATE(2062), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [43242] = 4, + [43324] = 5, + ACTIONS(2084), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 2, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2006), 4, - anon_sym_SEMI, + ACTIONS(2030), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2010), 5, + ACTIONS(2474), 3, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2034), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [43264] = 4, + [43348] = 5, + ACTIONS(2094), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2468), 2, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(2012), 4, - anon_sym_SEMI, + ACTIONS(2024), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2016), 5, + ACTIONS(2480), 3, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2028), 4, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [43286] = 6, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - STATE(989), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1996), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [43311] = 6, - ACTIONS(2137), 1, + [43372] = 3, + ACTIONS(3179), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - STATE(989), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1992), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [43336] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 10, + ACTIONS(2900), 10, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -94194,136 +89753,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, sym_identifier, - [43353] = 8, - ACTIONS(2137), 1, + [43392] = 5, + ACTIONS(2154), 1, + anon_sym_COLON, + ACTIONS(2512), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2960), 1, - anon_sym_COLON_COLON, - ACTIONS(3189), 1, - anon_sym_for, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 4, - anon_sym_SEMI, + ACTIONS(2022), 4, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + ACTIONS(2018), 5, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, + anon_sym_RPAREN, anon_sym_PLUS, - [43382] = 8, + anon_sym_LT2, + [43416] = 12, + ACTIONS(2815), 1, + anon_sym_default, + ACTIONS(3181), 1, + anon_sym_const, + ACTIONS(3183), 1, + anon_sym_mod, + ACTIONS(3185), 1, + anon_sym_enum, + ACTIONS(3187), 1, + anon_sym_fn, + ACTIONS(3189), 1, + anon_sym_struct, ACTIONS(3191), 1, - sym_identifier, + anon_sym_trait, ACTIONS(3193), 1, - anon_sym_RBRACE, + anon_sym_type, ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3199), 1, - anon_sym_DOT_DOT, + anon_sym_use, + STATE(1521), 1, + aux_sym_function_modifiers_repeat1, + STATE(2116), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1625), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43411] = 7, - ACTIONS(2137), 1, + [43454] = 5, + ACTIONS(2084), 1, + anon_sym_COLON, + ACTIONS(2474), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3201), 1, - anon_sym_LBRACE, - STATE(989), 1, - sym_type_arguments, - STATE(1203), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 5, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(2034), 4, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + ACTIONS(2030), 5, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_PLUS, - [43438] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, anon_sym_LT2, - ACTIONS(2960), 1, - anon_sym_COLON_COLON, + [43478] = 10, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3201), 1, + anon_sym_COMMA, ACTIONS(3203), 1, - anon_sym_for, - STATE(987), 1, - sym_type_arguments, - STATE(1204), 1, - sym_parameters, + anon_sym_RBRACE, + STATE(1764), 1, + sym_storage_content, + STATE(2170), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_PLUS, - [43467] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + STATE(1357), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [43511] = 8, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, anon_sym_COLON_COLON, ACTIONS(3205), 1, anon_sym_for, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1212), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 4, + ACTIONS(1986), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, - [43496] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + [43540] = 8, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, anon_sym_COLON_COLON, ACTIONS(3207), 1, anon_sym_for, - STATE(987), 1, + STATE(980), 1, sym_type_arguments, - STATE(1204), 1, + STATE(1212), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 4, + ACTIONS(1986), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, - [43525] = 2, + [43569] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 10, + ACTIONS(2896), 10, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -94334,11 +89897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, sym_identifier, - [43542] = 2, + [43586] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 10, + ACTIONS(2906), 10, anon_sym_const, anon_sym_default, anon_sym_mod, @@ -94349,3195 +89912,3179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_use, sym_identifier, - [43559] = 6, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, + [43603] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2426), 3, + ACTIONS(2910), 10, anon_sym_const, anon_sym_default, + anon_sym_mod, + anon_sym_enum, anon_sym_fn, - ACTIONS(2972), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [43584] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_use, + sym_identifier, + [43620] = 8, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3209), 1, sym_identifier, + ACTIONS(3211), 1, + anon_sym_COMMA, ACTIONS(3213), 1, anon_sym_RBRACE, ACTIONS(3215), 1, - anon_sym_COMMA, - STATE(1703), 1, - sym_storage_content, - STATE(2143), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1340), 2, + STATE(1555), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [43617] = 8, - ACTIONS(809), 1, - anon_sym_DOT_DOT, + STATE(1798), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [43649] = 8, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_COMMA, - ACTIONS(3225), 1, - sym_mutable_specifier, + anon_sym_for, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1558), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [43645] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(3229), 1, + ACTIONS(1986), 4, + anon_sym_SEMI, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_PLUS, + [43678] = 6, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(983), 1, + sym_type_arguments, + STATE(1343), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 6, + anon_sym_as, anon_sym_COMMA, - STATE(1767), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [43703] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3219), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_type_arguments, + STATE(1208), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1336), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43675] = 8, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, - ACTIONS(3231), 1, - anon_sym_RBRACE, - ACTIONS(3233), 1, + ACTIONS(1992), 5, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + [43730] = 8, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2966), 1, + anon_sym_PIPE, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(3221), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1635), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [43703] = 7, - ACTIONS(3191), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_DOT_DOT, - ACTIONS(3235), 1, - anon_sym_RBRACE, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [43759] = 6, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(983), 1, + sym_type_arguments, + STATE(1343), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1931), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [43729] = 10, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3239), 1, + ACTIONS(1992), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [43784] = 8, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, anon_sym_LPAREN, - ACTIONS(3241), 1, + ACTIONS(2964), 1, + anon_sym_COLON_COLON, + ACTIONS(3223), 1, + anon_sym_for, + STATE(980), 1, + sym_type_arguments, + STATE(1212), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1986), 4, + anon_sym_SEMI, + anon_sym_where, anon_sym_LBRACE, - ACTIONS(3243), 1, + anon_sym_PLUS, + [43813] = 10, + ACTIONS(3225), 1, + anon_sym_SEMI, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3229), 1, + anon_sym_LBRACE, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, anon_sym_LT, - STATE(1020), 1, + STATE(361), 1, sym_field_declaration_list, - STATE(1335), 1, + STATE(1330), 1, sym_type_parameters, - STATE(1736), 1, + STATE(1800), 1, sym_ordered_field_declaration_list, - STATE(1836), 1, + STATE(1925), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43761] = 10, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3243), 1, + [43845] = 10, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3235), 1, anon_sym_SEMI, - ACTIONS(3249), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(1026), 1, sym_field_declaration_list, - STATE(1341), 1, + STATE(1349), 1, sym_type_parameters, - STATE(1668), 1, + STATE(1568), 1, sym_ordered_field_declaration_list, - STATE(1884), 1, + STATE(1824), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43793] = 5, - ACTIONS(3251), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - ACTIONS(2972), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [43815] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, + [43877] = 8, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, sym_identifier, - ACTIONS(3253), 1, + ACTIONS(3241), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, anon_sym_RBRACE, - STATE(1970), 1, - sym_storage_content, - STATE(2143), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, + ACTIONS(3247), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1340), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43845] = 10, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3243), 1, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [43905] = 10, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3249), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(997), 1, sym_field_declaration_list, - STATE(1357), 1, + STATE(1344), 1, sym_type_parameters, - STATE(1653), 1, + STATE(1714), 1, sym_ordered_field_declaration_list, - STATE(1940), 1, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43877] = 10, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3241), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, + [43937] = 10, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3229), 1, + anon_sym_LBRACE, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(3257), 1, + ACTIONS(3251), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(377), 1, sym_field_declaration_list, - STATE(1339), 1, + STATE(1345), 1, sym_type_parameters, - STATE(1759), 1, + STATE(1733), 1, sym_ordered_field_declaration_list, - STATE(1826), 1, + STATE(1924), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [43909] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3259), 1, - anon_sym_RBRACE, - ACTIONS(3261), 1, - anon_sym_COMMA, - STATE(1721), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1343), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [43939] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - sym_identifier, - ACTIONS(3265), 1, - anon_sym_RBRACE, - ACTIONS(3267), 1, - anon_sym_COMMA, - STATE(1594), 1, - sym_enum_variant, - STATE(2076), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1348), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, [43969] = 9, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3269), 1, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3253), 1, anon_sym_RBRACE, - ACTIONS(3271), 1, - anon_sym_COMMA, - STATE(1783), 1, - sym_enum_variant, - STATE(2076), 1, + STATE(1973), 1, + sym_storage_content, + STATE(2170), 1, + sym_field_declaration, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1355), 2, + STATE(1357), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, [43999] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(3273), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3255), 1, anon_sym_for, - STATE(989), 1, + STATE(983), 1, sym_type_arguments, - STATE(1203), 1, + STATE(1208), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, + ACTIONS(1992), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, [44025] = 8, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(2960), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, anon_sym_COLON_COLON, - ACTIONS(3275), 1, + ACTIONS(3257), 1, anon_sym_EQ, - STATE(1356), 1, + STATE(1342), 1, sym_parameters, - STATE(1448), 1, + STATE(1440), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 3, + ACTIONS(1986), 3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_GT, - [44053] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3277), 1, - anon_sym_RBRACE, - STATE(1970), 1, - sym_storage_content, - STATE(2143), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1340), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44083] = 7, - ACTIONS(3191), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1931), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [44109] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + [44053] = 7, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(3281), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3259), 1, anon_sym_for, - STATE(989), 1, + STATE(983), 1, sym_type_arguments, - STATE(1203), 1, + STATE(1208), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, + ACTIONS(1992), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, - [44135] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, + [44079] = 7, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(3283), 1, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3261), 1, anon_sym_for, - STATE(989), 1, + STATE(983), 1, sym_type_arguments, - STATE(1203), 1, + STATE(1208), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, + ACTIONS(1992), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, - [44161] = 7, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3285), 1, - anon_sym_for, - STATE(989), 1, - sym_type_arguments, - STATE(1203), 1, - sym_parameters, + [44105] = 7, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3209), 1, + sym_identifier, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3263), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_PLUS, - [44187] = 8, - ACTIONS(53), 1, + STATE(1555), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1806), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [44131] = 8, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + sym_identifier, + ACTIONS(3247), 1, + sym_mutable_specifier, + ACTIONS(3265), 1, + anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1701), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44159] = 9, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3287), 1, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3269), 1, + anon_sym_COMMA, + ACTIONS(3271), 1, anon_sym_RBRACE, - STATE(1876), 1, + STATE(1605), 1, sym_field_declaration, - STATE(2150), 1, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, + STATE(1353), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44214] = 8, - ACTIONS(53), 1, + [44189] = 9, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3289), 1, + ACTIONS(3275), 1, + anon_sym_COMMA, + ACTIONS(3277), 1, anon_sym_RBRACE, - STATE(1909), 1, + STATE(1652), 1, sym_enum_variant, - STATE(2076), 1, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1341), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44241] = 6, - ACTIONS(2946), 1, - anon_sym_COLON, - ACTIONS(2948), 1, - anon_sym_LPAREN, - ACTIONS(3291), 1, - anon_sym_COLON_COLON, + [44219] = 9, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3279), 1, + anon_sym_RBRACE, + STATE(1973), 1, + sym_storage_content, + STATE(2170), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2944), 3, - anon_sym_RPAREN, + STATE(1357), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44249] = 9, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, + sym_identifier, + ACTIONS(3281), 1, anon_sym_COMMA, - anon_sym_PIPE, - [44264] = 9, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(3297), 1, - anon_sym_LT, - STATE(1015), 1, - sym_declaration_list, - STATE(1417), 1, - sym_type_parameters, - STATE(1486), 1, - sym_trait_bounds, - STATE(1824), 1, - sym_where_clause, + ACTIONS(3283), 1, + anon_sym_RBRACE, + STATE(1753), 1, + sym_enum_variant, + STATE(2002), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44293] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, + STATE(1355), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44279] = 7, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3299), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3285), 1, anon_sym_RBRACE, - STATE(1909), 1, - sym_enum_variant, - STATE(2076), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1555), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1806), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [44305] = 9, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3287), 1, + anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_RBRACE, + STATE(1803), 1, + sym_field_declaration, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1356), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44320] = 9, - ACTIONS(3243), 1, + [44335] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3291), 1, + anon_sym_for, + STATE(983), 1, + sym_type_arguments, + STATE(1208), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1992), 4, + anon_sym_SEMI, anon_sym_where, + anon_sym_LBRACE, + anon_sym_PLUS, + [44361] = 7, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + sym_identifier, + ACTIONS(3247), 1, + sym_mutable_specifier, ACTIONS(3293), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1898), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44386] = 9, + ACTIONS(3227), 1, + anon_sym_where, ACTIONS(3295), 1, anon_sym_LBRACE, ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3299), 1, anon_sym_LT, - STATE(1014), 1, + STATE(1027), 1, sym_declaration_list, - STATE(1414), 1, + STATE(1397), 1, sym_type_parameters, - STATE(1503), 1, + STATE(1552), 1, sym_trait_bounds, - STATE(1838), 1, + STATE(1826), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44349] = 7, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + [44415] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, + ACTIONS(3199), 1, + anon_sym_POUND, ACTIONS(3301), 1, anon_sym_RBRACE, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1902), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44374] = 8, - ACTIONS(53), 1, + STATE(1350), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44442] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3197), 1, sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, ACTIONS(3303), 1, anon_sym_RBRACE, - STATE(1876), 1, + STATE(1940), 1, sym_field_declaration, - STATE(2150), 1, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, + STATE(1350), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44401] = 8, - ACTIONS(53), 1, + [44469] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3305), 1, - anon_sym_RBRACE, - STATE(1909), 1, - sym_enum_variant, - STATE(2076), 1, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(1973), 1, + sym_storage_content, + STATE(2170), 1, + sym_field_declaration, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1357), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44428] = 6, - ACTIONS(2972), 1, - anon_sym_PIPE, - ACTIONS(2974), 1, + [44496] = 9, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3297), 1, anon_sym_COLON, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, + ACTIONS(3299), 1, + anon_sym_LT, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_declaration_list, + STATE(1393), 1, + sym_type_parameters, + STATE(1482), 1, + sym_trait_bounds, + STATE(1936), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1996), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [44451] = 7, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + [44525] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, - ACTIONS(3309), 1, + ACTIONS(3307), 1, anon_sym_RBRACE, + STATE(1868), 1, + sym_enum_variant, + STATE(2002), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1902), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44476] = 7, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + STATE(1337), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44552] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, - ACTIONS(3311), 1, + ACTIONS(3309), 1, anon_sym_RBRACE, + STATE(1868), 1, + sym_enum_variant, + STATE(2002), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1902), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44501] = 8, - ACTIONS(53), 1, + STATE(1337), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44579] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3313), 1, + ACTIONS(3311), 1, anon_sym_RBRACE, - STATE(1909), 1, + STATE(1868), 1, sym_enum_variant, - STATE(2076), 1, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1337), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44528] = 6, - ACTIONS(2972), 1, - anon_sym_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, + [44606] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [44551] = 7, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + STATE(1350), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44633] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, ACTIONS(3315), 1, anon_sym_RBRACE, + STATE(1868), 1, + sym_enum_variant, + STATE(2002), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1902), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [44576] = 8, - ACTIONS(53), 1, + STATE(1337), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44660] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3273), 1, sym_identifier, ACTIONS(3317), 1, anon_sym_RBRACE, - STATE(1876), 1, - sym_field_declaration, - STATE(2150), 1, + STATE(1868), 1, + sym_enum_variant, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, + STATE(1337), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44603] = 9, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3297), 1, - anon_sym_LT, + [44687] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(337), 1, - sym_declaration_list, - STATE(1378), 1, - sym_type_parameters, - STATE(1537), 1, - sym_trait_bounds, - STATE(1968), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [44632] = 7, - ACTIONS(1996), 1, - anon_sym_PLUS, - ACTIONS(2972), 1, - anon_sym_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACE, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3321), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [44657] = 6, - ACTIONS(3191), 1, + STATE(1350), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [44714] = 8, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3195), 1, - anon_sym_POUND, ACTIONS(3199), 1, - anon_sym_DOT_DOT, + anon_sym_POUND, + ACTIONS(3321), 1, + anon_sym_RBRACE, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, + STATE(1350), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1931), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [44680] = 9, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3297), 1, - anon_sym_LT, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_declaration_list, - STATE(1395), 1, - sym_type_parameters, - STATE(1527), 1, - sym_trait_bounds, - STATE(1885), 1, - sym_where_clause, + [44741] = 6, + ACTIONS(3177), 1, + anon_sym_COLON_COLON, + ACTIONS(3323), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [44709] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(1992), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(2966), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44764] = 7, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, sym_identifier, - ACTIONS(3324), 1, + ACTIONS(3247), 1, + sym_mutable_specifier, + ACTIONS(3326), 1, anon_sym_RBRACE, - STATE(1876), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44736] = 8, - ACTIONS(3326), 1, - anon_sym_LBRACK, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1898), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44789] = 7, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + sym_identifier, + ACTIONS(3247), 1, + sym_mutable_specifier, + ACTIONS(3328), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1898), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44814] = 8, + ACTIONS(3017), 1, + anon_sym_COLON_COLON, ACTIONS(3330), 1, - anon_sym_LPAREN, - ACTIONS(3332), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(3334), 1, anon_sym_EQ, ACTIONS(3336), 1, - anon_sym_COLON_COLON, - STATE(1959), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + anon_sym_LPAREN, + STATE(1870), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3328), 2, + ACTIONS(3332), 2, anon_sym_RBRACK, anon_sym_COMMA, - [44763] = 8, - ACTIONS(3326), 1, - anon_sym_LBRACK, + [44841] = 8, ACTIONS(3330), 1, - anon_sym_LPAREN, - ACTIONS(3332), 1, + anon_sym_LBRACK, + ACTIONS(3336), 1, anon_sym_LBRACE, - ACTIONS(3334), 1, - anon_sym_EQ, ACTIONS(3338), 1, + anon_sym_LPAREN, + ACTIONS(3342), 1, + anon_sym_EQ, + ACTIONS(3344), 1, anon_sym_COLON_COLON, - STATE(1959), 1, + STATE(1873), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3328), 2, + ACTIONS(3340), 2, anon_sym_RBRACK, anon_sym_COMMA, - [44790] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3340), 1, - anon_sym_RBRACE, - STATE(1876), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1344), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [44817] = 8, - ACTIONS(3326), 1, - anon_sym_LBRACK, + [44868] = 8, ACTIONS(3330), 1, - anon_sym_LPAREN, - ACTIONS(3332), 1, + anon_sym_LBRACK, + ACTIONS(3336), 1, anon_sym_LBRACE, - ACTIONS(3334), 1, - anon_sym_EQ, + ACTIONS(3338), 1, + anon_sym_LPAREN, ACTIONS(3342), 1, + anon_sym_EQ, + ACTIONS(3346), 1, anon_sym_COLON_COLON, - STATE(1959), 1, + STATE(1873), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3328), 2, + ACTIONS(3340), 2, anon_sym_RBRACK, anon_sym_COMMA, - [44844] = 8, - ACTIONS(3035), 1, - anon_sym_COLON_COLON, - ACTIONS(3326), 1, - anon_sym_LBRACK, + [44895] = 7, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + sym_identifier, + ACTIONS(3247), 1, + sym_mutable_specifier, + ACTIONS(3348), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1898), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [44920] = 8, ACTIONS(3330), 1, - anon_sym_LPAREN, - ACTIONS(3332), 1, + anon_sym_LBRACK, + ACTIONS(3336), 1, anon_sym_LBRACE, - ACTIONS(3346), 1, + ACTIONS(3338), 1, + anon_sym_LPAREN, + ACTIONS(3342), 1, anon_sym_EQ, - STATE(1958), 1, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + STATE(1873), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3344), 2, + ACTIONS(3340), 2, anon_sym_RBRACK, anon_sym_COMMA, - [44871] = 6, - ACTIONS(3251), 1, + [44947] = 7, + ACTIONS(1992), 1, + anon_sym_PLUS, + ACTIONS(2966), 1, + anon_sym_PIPE, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(3159), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 2, - anon_sym_SEMI, - anon_sym_PLUS, ACTIONS(2972), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2978), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44894] = 8, - ACTIONS(53), 1, + ACTIONS(3323), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44972] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3197), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3352), 1, anon_sym_RBRACE, - STATE(1909), 1, - sym_enum_variant, - STATE(2076), 1, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1350), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44921] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, + [44999] = 9, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3299), 1, + anon_sym_LT, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(362), 1, + sym_declaration_list, + STATE(1361), 1, + sym_type_parameters, + STATE(1531), 1, + sym_trait_bounds, + STATE(1932), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [45028] = 6, + ACTIONS(2950), 1, + anon_sym_COLON, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(3354), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2948), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [45051] = 6, + ACTIONS(2966), 1, + anon_sym_PIPE, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(3221), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2972), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + [45074] = 6, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3350), 1, - anon_sym_RBRACE, - STATE(1909), 1, - sym_enum_variant, - STATE(2076), 1, - sym_visibility_modifier, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1354), 2, + STATE(1555), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44948] = 8, - ACTIONS(53), 1, + STATE(1806), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [45097] = 9, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3299), 1, + anon_sym_LT, + STATE(998), 1, + sym_declaration_list, + STATE(1387), 1, + sym_type_parameters, + STATE(1527), 1, + sym_trait_bounds, + STATE(1963), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [45126] = 8, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3356), 1, anon_sym_RBRACE, - STATE(1876), 1, - sym_field_declaration, - STATE(2150), 1, + STATE(1868), 1, + sym_enum_variant, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, + STATE(1337), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [44975] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, + [45153] = 6, + ACTIONS(801), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, sym_identifier, - STATE(1970), 1, - sym_storage_content, - STATE(2143), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, + ACTIONS(3247), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1340), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45002] = 2, + ACTIONS(3245), 2, + anon_sym_ref, + anon_sym_deref, + STATE(1898), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [45175] = 8, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3229), 1, + anon_sym_LBRACE, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3358), 1, + anon_sym_SEMI, + STATE(236), 1, + sym_field_declaration_list, + STATE(1601), 1, + sym_ordered_field_declaration_list, + STATE(1832), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, + [45201] = 7, + ACTIONS(3360), 1, + sym_identifier, + ACTIONS(3362), 1, + anon_sym_const, + ACTIONS(3364), 1, anon_sym_GT, - [45016] = 3, - ACTIONS(3356), 1, - anon_sym_DASH_GT, + ACTIONS(3366), 1, + sym_metavariable, + STATE(1603), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2076), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, + STATE(1879), 2, + sym_const_parameter, + sym_optional_type_parameter, + [45225] = 7, + ACTIONS(3360), 1, + sym_identifier, + ACTIONS(3362), 1, + anon_sym_const, + ACTIONS(3366), 1, + sym_metavariable, + ACTIONS(3368), 1, anon_sym_GT, - anon_sym_PIPE, - [45032] = 3, - ACTIONS(3358), 1, - anon_sym_DASH_GT, + STATE(1603), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2046), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_PIPE, - [45048] = 2, + STATE(1879), 2, + sym_const_parameter, + sym_optional_type_parameter, + [45249] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 7, + ACTIONS(3370), 7, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_GT, - [45062] = 2, + [45263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3362), 7, + ACTIONS(3372), 7, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_GT, - [45076] = 2, + [45277] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 7, + ACTIONS(3372), 7, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_GT, - [45090] = 2, + [45291] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 7, + ACTIONS(3372), 7, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_GT, - [45104] = 7, - ACTIONS(3364), 1, + [45305] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, sym_identifier, - ACTIONS(3366), 1, + STATE(1821), 1, + sym_enum_variant, + STATE(2002), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45329] = 7, + ACTIONS(3360), 1, + sym_identifier, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3368), 1, - anon_sym_GT, - ACTIONS(3370), 1, + ACTIONS(3366), 1, sym_metavariable, - STATE(1600), 1, + ACTIONS(3374), 1, + anon_sym_GT, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45128] = 7, - ACTIONS(3364), 1, + [45353] = 7, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3366), 1, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3370), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3372), 1, + ACTIONS(3376), 1, anon_sym_GT, - STATE(1600), 1, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45152] = 8, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3241), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3374), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_field_declaration_list, - STATE(1656), 1, - sym_ordered_field_declaration_list, - STATE(1889), 1, - sym_where_clause, + [45377] = 3, + ACTIONS(3378), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45178] = 7, - ACTIONS(53), 1, + ACTIONS(2140), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45393] = 7, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(3273), 1, sym_identifier, STATE(1683), 1, - sym_field_declaration, - STATE(2150), 1, + sym_enum_variant, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, + STATE(1469), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45202] = 6, - ACTIONS(809), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3225), 1, - sym_mutable_specifier, + [45417] = 3, + ACTIONS(3380), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_ref, - anon_sym_deref, - STATE(1902), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [45224] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - STATE(1876), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, + ACTIONS(2148), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45433] = 3, + ACTIONS(3382), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1344), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45248] = 8, - ACTIONS(3239), 1, + ACTIONS(2158), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_PIPE, + [45449] = 8, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3231), 1, anon_sym_LPAREN, - ACTIONS(3241), 1, + ACTIONS(3237), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3376), 1, + ACTIONS(3384), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(1018), 1, sym_field_declaration_list, - STATE(1762), 1, + STATE(1691), 1, sym_ordered_field_declaration_list, - STATE(1821), 1, + STATE(1814), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45274] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - STATE(2080), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1474), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45298] = 8, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3243), 1, + [45475] = 8, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3249), 1, + ACTIONS(3229), 1, anon_sym_LBRACE, - ACTIONS(3378), 1, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3386), 1, anon_sym_SEMI, - STATE(272), 1, + STATE(351), 1, sym_field_declaration_list, - STATE(1728), 1, + STATE(1651), 1, sym_ordered_field_declaration_list, - STATE(1953), 1, + STATE(1840), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45324] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - sym_identifier, - STATE(1909), 1, - sym_enum_variant, - STATE(2076), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1354), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45348] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - STATE(1641), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1474), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45372] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3211), 1, - sym_identifier, - STATE(1910), 1, - sym_field_declaration, - STATE(2150), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1474), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45396] = 7, - ACTIONS(3364), 1, + [45501] = 7, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3366), 1, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3370), 1, - sym_metavariable, - ACTIONS(3380), 1, - anon_sym_GT, - STATE(1600), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1971), 2, - sym_const_parameter, - sym_optional_type_parameter, - [45420] = 7, - ACTIONS(3364), 1, - sym_identifier, ACTIONS(3366), 1, - anon_sym_const, - ACTIONS(3370), 1, sym_metavariable, - ACTIONS(3382), 1, + ACTIONS(3388), 1, anon_sym_GT, - STATE(1600), 1, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45444] = 7, - ACTIONS(3364), 1, + [45525] = 7, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3366), 1, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3370), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3384), 1, + ACTIONS(3390), 1, anon_sym_GT, - STATE(1600), 1, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45468] = 7, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - sym_identifier, - STATE(1568), 1, - sym_enum_variant, - STATE(2076), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1474), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [45492] = 3, - ACTIONS(3386), 1, + [45549] = 3, + ACTIONS(3392), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2060), 6, + ACTIONS(2104), 6, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_PLUS, anon_sym_GT, anon_sym_PIPE, - [45508] = 7, - ACTIONS(3364), 1, - sym_identifier, - ACTIONS(3366), 1, - anon_sym_const, - ACTIONS(3370), 1, - sym_metavariable, - ACTIONS(3388), 1, - anon_sym_GT, - STATE(1600), 1, - sym_constrained_type_parameter, + [45565] = 8, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3231), 1, + anon_sym_LPAREN, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3394), 1, + anon_sym_SEMI, + STATE(1064), 1, + sym_field_declaration_list, + STATE(1610), 1, + sym_ordered_field_declaration_list, + STATE(1859), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, - sym_const_parameter, - sym_optional_type_parameter, - [45532] = 5, - ACTIONS(2948), 1, - anon_sym_LPAREN, - ACTIONS(3390), 1, - anon_sym_COLON_COLON, + [45591] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(1857), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2944), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [45552] = 7, - ACTIONS(3364), 1, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45615] = 7, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3366), 1, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3370), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3392), 1, + ACTIONS(3396), 1, anon_sym_GT, - STATE(1600), 1, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45576] = 7, - ACTIONS(3364), 1, + [45639] = 7, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3366), 1, + ACTIONS(3362), 1, anon_sym_const, - ACTIONS(3370), 1, + ACTIONS(3366), 1, sym_metavariable, - ACTIONS(3394), 1, + ACTIONS(3398), 1, anon_sym_GT, - STATE(1600), 1, + STATE(1603), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, + STATE(1879), 2, sym_const_parameter, sym_optional_type_parameter, - [45600] = 7, - ACTIONS(53), 1, + [45663] = 7, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + STATE(1649), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45687] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3273), 1, sym_identifier, - STATE(1847), 1, + STATE(1868), 1, sym_enum_variant, - STATE(2076), 1, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, + STATE(1337), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45624] = 7, - ACTIONS(53), 1, + [45711] = 7, + ACTIONS(49), 1, anon_sym_pub, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(3273), 1, sym_identifier, - STATE(1723), 1, + STATE(1575), 1, sym_enum_variant, - STATE(2076), 1, + STATE(2002), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, + STATE(1469), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [45648] = 3, - ACTIONS(3396), 1, - anon_sym_DASH_GT, + [45735] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(1600), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2066), 6, - anon_sym_as, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45759] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(2155), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45783] = 7, + ACTIONS(49), 1, + anon_sym_pub, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(1940), 1, + sym_field_declaration, + STATE(2177), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1350), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [45807] = 5, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2948), 3, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_GT, anon_sym_PIPE, - [45664] = 8, - ACTIONS(3239), 1, - anon_sym_LPAREN, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SEMI, - STATE(315), 1, - sym_field_declaration_list, - STATE(1670), 1, - sym_ordered_field_declaration_list, - STATE(1925), 1, - sym_where_clause, + [45827] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45690] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3400), 1, + ACTIONS(3402), 7, anon_sym_SEMI, - ACTIONS(3402), 1, + anon_sym_where, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(3404), 1, anon_sym_PLUS, - STATE(296), 1, - sym_block, - STATE(1788), 1, + anon_sym_GT, + [45841] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_declaration_list, + STATE(1483), 1, + sym_trait_bounds, + STATE(1835), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45713] = 7, - ACTIONS(3243), 1, + [45864] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3295), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3406), 1, anon_sym_SEMI, - STATE(1029), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + STATE(343), 1, sym_declaration_list, - STATE(1611), 1, + STATE(1709), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45736] = 7, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3408), 1, - sym_identifier, + [45887] = 4, ACTIONS(3410), 1, - anon_sym_STAR, - STATE(1135), 1, - sym_type_arguments, - STATE(1760), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45759] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2082), 2, - anon_sym_DASH_GT, anon_sym_PLUS, - ACTIONS(3147), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3412), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [45776] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3415), 1, - anon_sym_SEMI, - ACTIONS(3417), 1, - anon_sym_DASH_GT, - STATE(1114), 1, - sym_block, - STATE(1667), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45799] = 4, - ACTIONS(3419), 1, - anon_sym_RBRACK, + STATE(1437), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2042), 3, + ACTIONS(3408), 4, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_PLUS, - [45816] = 6, - ACTIONS(2944), 1, - anon_sym_PIPE, - ACTIONS(2946), 1, - anon_sym_COLON, - ACTIONS(2948), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, + anon_sym_where, + anon_sym_COMMA, + anon_sym_LBRACE, + [45904] = 4, + ACTIONS(2974), 1, anon_sym_COLON_COLON, + ACTIONS(3259), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45837] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3424), 1, + ACTIONS(1992), 4, anon_sym_SEMI, - ACTIONS(3426), 1, - anon_sym_DASH_GT, - STATE(997), 1, - sym_block, - STATE(1706), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [45860] = 7, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2578), 1, + anon_sym_where, anon_sym_LBRACE, - ACTIONS(3408), 1, - sym_identifier, - ACTIONS(3410), 1, - anon_sym_STAR, - STATE(1082), 1, - sym_type_arguments, - STATE(1760), 1, - sym_use_list, + anon_sym_PLUS, + [45921] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3412), 1, + anon_sym_SEMI, + ACTIONS(3414), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_block, + STATE(1594), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45883] = 7, - ACTIONS(3243), 1, + [45944] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, - anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(269), 1, - sym_enum_variant_list, - STATE(1513), 1, - sym_type_parameters, - STATE(1827), 1, + ACTIONS(3416), 1, + anon_sym_SEMI, + ACTIONS(3418), 1, + anon_sym_DASH_GT, + STATE(286), 1, + sym_block, + STATE(1712), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45906] = 4, - ACTIONS(2962), 1, + [45967] = 5, + ACTIONS(3422), 1, + anon_sym_COLON, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(3283), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3420), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45986] = 4, + ACTIONS(3426), 1, anon_sym_PLUS, - [45923] = 4, + STATE(1368), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2042), 2, - anon_sym_DASH_GT, - anon_sym_PLUS, - ACTIONS(3099), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3419), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [45940] = 7, - ACTIONS(3243), 1, + ACTIONS(3372), 4, + anon_sym_SEMI, anon_sym_where, - ACTIONS(3319), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3430), 1, - anon_sym_SEMI, - STATE(244), 1, - sym_declaration_list, - STATE(1557), 1, - sym_where_clause, + [46003] = 4, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45963] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SEMI, - STATE(1042), 1, - sym_declaration_list, - STATE(1690), 1, - sym_where_clause, + [46020] = 6, + ACTIONS(3362), 1, + anon_sym_const, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3431), 1, + sym_metavariable, + STATE(1517), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [45986] = 6, - ACTIONS(2968), 1, + STATE(1716), 2, + sym_const_parameter, + sym_optional_type_parameter, + [46041] = 5, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_GT, - STATE(1669), 1, - aux_sym_type_parameters_repeat1, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 2, - anon_sym_as, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, - [46007] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(3438), 1, - anon_sym_SEMI, - ACTIONS(3440), 1, + [46060] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2168), 2, anon_sym_DASH_GT, - STATE(323), 1, - sym_block, - STATE(1665), 1, - sym_where_clause, + anon_sym_PLUS, + ACTIONS(3091), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46077] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46030] = 7, - ACTIONS(3243), 1, + ACTIONS(2046), 2, + anon_sym_DASH_GT, + anon_sym_PLUS, + ACTIONS(3119), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3438), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46094] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3442), 1, + ACTIONS(3441), 1, anon_sym_SEMI, - STATE(383), 1, + STATE(255), 1, sym_declaration_list, - STATE(1614), 1, + STATE(1728), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46053] = 3, + [46117] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 2, + ACTIONS(3091), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2042), 4, - anon_sym_RPAREN, + ACTIONS(2168), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_PLUS, - [46068] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, + [46132] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3444), 1, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, anon_sym_SEMI, - STATE(1031), 1, + STATE(292), 1, sym_block, - STATE(1687), 1, + STATE(1741), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46091] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, + [46155] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3404), 1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3446), 1, + ACTIONS(3445), 1, anon_sym_SEMI, - STATE(1058), 1, - sym_block, - STATE(1576), 1, + STATE(257), 1, + sym_declaration_list, + STATE(1743), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46114] = 7, - ACTIONS(3243), 1, + [46178] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3319), 1, + ACTIONS(3233), 1, + anon_sym_LT, + ACTIONS(3447), 1, anon_sym_LBRACE, - STATE(311), 1, - sym_declaration_list, - STATE(1544), 1, - sym_trait_bounds, - STATE(1917), 1, + STATE(1166), 1, + sym_enum_variant_list, + STATE(1480), 1, + sym_type_parameters, + STATE(1942), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46137] = 5, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - sym_identifier, - STATE(71), 1, - sym_block, + [46201] = 5, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(2100), 1, + anon_sym_COLON_COLON, + STATE(654), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3450), 3, + ACTIONS(2038), 3, anon_sym_const, anon_sym_default, anon_sym_fn, - [46156] = 4, - ACTIONS(3412), 1, + [46220] = 4, + ACTIONS(3435), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3091), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2082), 3, + ACTIONS(2168), 3, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_PLUS, - [46173] = 7, - ACTIONS(3243), 1, + [46237] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3402), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_SEMI, - STATE(371), 1, - sym_block, - STATE(1778), 1, + STATE(1169), 1, + sym_declaration_list, + STATE(1705), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46196] = 7, - ACTIONS(3243), 1, + [46260] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3402), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_SEMI, - STATE(384), 1, + STATE(388), 1, + sym_declaration_list, + STATE(1566), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46283] = 6, + ACTIONS(3360), 1, + sym_identifier, + ACTIONS(3362), 1, + anon_sym_const, + ACTIONS(3366), 1, + sym_metavariable, + STATE(1603), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1879), 2, + sym_const_parameter, + sym_optional_type_parameter, + [46304] = 7, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3453), 1, + anon_sym_SEMI, + ACTIONS(3455), 1, + anon_sym_DASH_GT, + STATE(1007), 1, sym_block, STATE(1771), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46219] = 4, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 1, - anon_sym_for, + [46327] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3457), 1, + anon_sym_SEMI, + STATE(1010), 1, + sym_declaration_list, + STATE(1795), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, - anon_sym_SEMI, + [46350] = 5, + ACTIONS(69), 1, anon_sym_LBRACE, + ACTIONS(3459), 1, + sym_identifier, + STATE(50), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3461), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [46369] = 7, + ACTIONS(3227), 1, anon_sym_where, - anon_sym_PLUS, - [46236] = 7, - ACTIONS(3025), 1, - anon_sym_EQ, - ACTIONS(3456), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3297), 1, anon_sym_COLON, - ACTIONS(3458), 1, - anon_sym_COMMA, - ACTIONS(3460), 1, - anon_sym_GT, - STATE(1654), 1, + STATE(1021), 1, + sym_declaration_list, + STATE(1497), 1, sym_trait_bounds, - STATE(1770), 1, - aux_sym_type_parameters_repeat1, + STATE(1816), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46259] = 7, - ACTIONS(3243), 1, + [46392] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(3428), 1, + ACTIONS(3447), 1, anon_sym_LBRACE, - STATE(327), 1, + STATE(1024), 1, sym_enum_variant_list, - STATE(1492), 1, + STATE(1541), 1, sym_type_parameters, - STATE(1967), 1, + STATE(1822), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46282] = 6, - ACTIONS(3366), 1, - anon_sym_const, - ACTIONS(3462), 1, - sym_identifier, - ACTIONS(3464), 1, - sym_metavariable, - STATE(1520), 1, - sym_constrained_type_parameter, + [46415] = 7, + ACTIONS(3039), 1, + anon_sym_COMMA, + ACTIONS(3041), 1, + anon_sym_EQ, + ACTIONS(3045), 1, + anon_sym_GT, + ACTIONS(3463), 1, + anon_sym_COLON, + STATE(1790), 1, + sym_trait_bounds, + STATE(1796), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1632), 2, - sym_const_parameter, - sym_optional_type_parameter, - [46303] = 7, - ACTIONS(3243), 1, + [46438] = 7, + ACTIONS(3041), 1, + anon_sym_EQ, + ACTIONS(3463), 1, + anon_sym_COLON, + ACTIONS(3465), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, + anon_sym_GT, + STATE(1787), 1, + aux_sym_type_parameters_repeat1, + STATE(1790), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [46461] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3295), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3466), 1, + ACTIONS(3469), 1, anon_sym_SEMI, - STATE(1139), 1, + STATE(392), 1, sym_declaration_list, - STATE(1606), 1, + STATE(1561), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46326] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3295), 1, + [46484] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3468), 1, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3471), 1, anon_sym_SEMI, - STATE(1134), 1, - sym_declaration_list, - STATE(1785), 1, + ACTIONS(3473), 1, + anon_sym_DASH_GT, + STATE(1036), 1, + sym_block, + STATE(1584), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46349] = 7, - ACTIONS(3243), 1, + [46507] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3470), 1, - anon_sym_SEMI, - STATE(242), 1, + STATE(354), 1, sym_declaration_list, - STATE(1713), 1, + STATE(1494), 1, + sym_trait_bounds, + STATE(1845), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46372] = 7, - ACTIONS(3243), 1, + [46530] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3472), 1, + ACTIONS(3475), 1, anon_sym_SEMI, - STATE(246), 1, + STATE(1040), 1, sym_declaration_list, - STATE(1779), 1, + STATE(1592), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46395] = 4, - ACTIONS(3476), 1, - anon_sym_PLUS, - STATE(1431), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3474), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + [46553] = 7, + ACTIONS(3227), 1, anon_sym_where, - anon_sym_COMMA, - [46412] = 4, - ACTIONS(3478), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, anon_sym_PLUS, - STATE(1431), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3477), 1, + anon_sym_SEMI, + STATE(1044), 1, + sym_declaration_list, + STATE(1595), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_COMMA, - [46429] = 7, - ACTIONS(1797), 1, + [46576] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3480), 1, + ACTIONS(3479), 1, anon_sym_SEMI, - ACTIONS(3482), 1, + ACTIONS(3481), 1, anon_sym_DASH_GT, - STATE(1004), 1, + STATE(1058), 1, sym_block, - STATE(1582), 1, + STATE(1607), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46452] = 5, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(3484), 1, - anon_sym_COLON_COLON, - STATE(726), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1996), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [46471] = 7, - ACTIONS(3243), 1, + [46599] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3319), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(275), 1, + ACTIONS(3297), 1, + anon_sym_COLON, + STATE(1067), 1, sym_declaration_list, - STATE(1500), 1, + STATE(1535), 1, sym_trait_bounds, - STATE(1956), 1, + STATE(1861), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46494] = 7, - ACTIONS(1797), 1, + [46622] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3486), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3483), 1, anon_sym_SEMI, - ACTIONS(3488), 1, - anon_sym_DASH_GT, - STATE(1094), 1, + STATE(1072), 1, sym_block, - STATE(1794), 1, + STATE(1621), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46517] = 4, - ACTIONS(2962), 1, + [46645] = 5, + ACTIONS(3487), 1, + anon_sym_COLON, + ACTIONS(3489), 1, anon_sym_COLON_COLON, - ACTIONS(3285), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_PLUS, - [46534] = 7, - ACTIONS(3243), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3485), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46664] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3490), 1, + ACTIONS(3491), 1, anon_sym_SEMI, - STATE(335), 1, + STATE(1076), 1, sym_declaration_list, - STATE(1678), 1, + STATE(1559), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46557] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3492), 1, - anon_sym_SEMI, - STATE(1167), 1, - sym_block, - STATE(1562), 1, - sym_where_clause, + [46687] = 5, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2980), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46580] = 7, - ACTIONS(3023), 1, - anon_sym_COMMA, - ACTIONS(3025), 1, - anon_sym_EQ, - ACTIONS(3027), 1, - anon_sym_GT, - ACTIONS(3456), 1, - anon_sym_COLON, - STATE(1654), 1, - sym_trait_bounds, - STATE(1658), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [46706] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3495), 1, + anon_sym_STAR, + STATE(1130), 1, + sym_type_arguments, + STATE(1695), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46603] = 7, - ACTIONS(1797), 1, + [46729] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3494), 1, + ACTIONS(3497), 1, anon_sym_SEMI, - ACTIONS(3496), 1, + ACTIONS(3499), 1, anon_sym_DASH_GT, - STATE(1036), 1, + STATE(1089), 1, sym_block, - STATE(1561), 1, + STATE(1630), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46626] = 7, - ACTIONS(3243), 1, + [46752] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, - anon_sym_LT, - ACTIONS(3498), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(999), 1, - sym_enum_variant_list, - STATE(1498), 1, - sym_type_parameters, - STATE(1839), 1, + ACTIONS(3501), 1, + anon_sym_SEMI, + STATE(336), 1, + sym_block, + STATE(1567), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46649] = 5, - ACTIONS(2024), 1, + [46775] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(726), 1, - sym_field_initializer_list, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3503), 1, + anon_sym_SEMI, + ACTIONS(3505), 1, + anon_sym_DASH_GT, + STATE(1103), 1, + sym_block, + STATE(1633), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [46668] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, + [46798] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3507), 1, anon_sym_SEMI, - ACTIONS(3504), 1, - anon_sym_DASH_GT, - STATE(258), 1, + STATE(1107), 1, sym_block, - STATE(1789), 1, + STATE(1637), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46691] = 7, - ACTIONS(3243), 1, + [46821] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3233), 1, + anon_sym_LT, + ACTIONS(3509), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3506), 1, - anon_sym_SEMI, - STATE(391), 1, - sym_declaration_list, - STATE(1605), 1, + STATE(321), 1, + sym_enum_variant_list, + STATE(1553), 1, + sym_type_parameters, + STATE(1913), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46714] = 5, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, + [46844] = 7, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3511), 1, + anon_sym_SEMI, + STATE(1121), 1, + sym_block, + STATE(1641), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [46733] = 5, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, + [46867] = 7, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3513), 1, + anon_sym_SEMI, + ACTIONS(3515), 1, + anon_sym_DASH_GT, + STATE(1126), 1, + sym_block, + STATE(1643), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [46752] = 4, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, + [46890] = 7, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3495), 1, + anon_sym_STAR, + STATE(1157), 1, + sym_type_arguments, + STATE(1695), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1996), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [46769] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, + [46913] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3517), 1, anon_sym_SEMI, - ACTIONS(3518), 1, - anon_sym_DASH_GT, - STATE(231), 1, + STATE(1138), 1, sym_block, - STATE(1566), 1, + STATE(1645), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46792] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, + [46936] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3519), 1, anon_sym_SEMI, - ACTIONS(3522), 1, - anon_sym_DASH_GT, - STATE(287), 1, + STATE(1145), 1, sym_block, - STATE(1751), 1, + STATE(1647), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46815] = 7, - ACTIONS(1797), 1, + [46959] = 7, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3524), 1, + ACTIONS(3521), 1, anon_sym_SEMI, - STATE(1169), 1, + STATE(1150), 1, sym_block, - STATE(1617), 1, + STATE(1648), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46838] = 4, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1996), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - [46855] = 7, - ACTIONS(3243), 1, + [46982] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3402), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(3523), 1, anon_sym_SEMI, - ACTIONS(3528), 1, + ACTIONS(3525), 1, anon_sym_DASH_GT, - STATE(403), 1, + STATE(271), 1, sym_block, - STATE(1659), 1, + STATE(1680), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46878] = 7, - ACTIONS(3243), 1, + [47005] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3295), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(1149), 1, - sym_declaration_list, - STATE(1529), 1, - sym_trait_bounds, - STATE(1891), 1, + ACTIONS(3527), 1, + anon_sym_SEMI, + STATE(306), 1, + sym_block, + STATE(1699), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46901] = 7, - ACTIONS(3243), 1, + [47028] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3402), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3530), 1, + ACTIONS(3529), 1, anon_sym_SEMI, - STATE(283), 1, + ACTIONS(3531), 1, + anon_sym_DASH_GT, + STATE(290), 1, sym_block, - STATE(1696), 1, + STATE(1655), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46924] = 4, - ACTIONS(3532), 1, + [47051] = 6, + ACTIONS(2978), 1, + anon_sym_COLON_COLON, + ACTIONS(3533), 1, + anon_sym_COMMA, + ACTIONS(3535), 1, + anon_sym_GT, + STATE(1571), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1992), 2, + anon_sym_as, + anon_sym_PLUS, + [47072] = 6, + ACTIONS(2948), 1, + anon_sym_PIPE, + ACTIONS(2950), 1, + anon_sym_COLON, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1996), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [46941] = 7, - ACTIONS(3243), 1, + [47093] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(3295), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(1062), 1, - sym_declaration_list, - STATE(1488), 1, - sym_trait_bounds, - STATE(1823), 1, + ACTIONS(3539), 1, + anon_sym_SEMI, + ACTIONS(3541), 1, + anon_sym_DASH_GT, + STATE(311), 1, + sym_block, + STATE(1801), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [46964] = 3, + [47116] = 6, + ACTIONS(3362), 1, + anon_sym_const, + ACTIONS(3543), 1, + sym_identifier, + ACTIONS(3545), 1, + sym_metavariable, + STATE(1510), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1674), 2, + sym_const_parameter, + sym_optional_type_parameter, + [47137] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3119), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2082), 4, - anon_sym_RPAREN, + ACTIONS(2046), 4, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_PLUS, - [46979] = 5, - ACTIONS(3534), 1, + [47152] = 5, + ACTIONS(3422), 1, anon_sym_COLON, - ACTIONS(3538), 1, + ACTIONS(3547), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3536), 2, - anon_sym_RPAREN, + ACTIONS(3420), 2, anon_sym_COMMA, - [46998] = 5, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(3540), 1, + anon_sym_RPAREN, + [47171] = 4, + ACTIONS(3549), 1, anon_sym_COLON_COLON, - STATE(726), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1992), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - [47017] = 7, - ACTIONS(3243), 1, + [47188] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3245), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(3551), 1, + anon_sym_SEMI, + STATE(251), 1, + sym_block, + STATE(1799), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [47211] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(3498), 1, + ACTIONS(3509), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(359), 1, sym_enum_variant_list, - STATE(1497), 1, + STATE(1547), 1, sym_type_parameters, - STATE(1833), 1, + STATE(1910), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47040] = 6, - ACTIONS(3366), 1, - anon_sym_const, - ACTIONS(3542), 1, - sym_identifier, - ACTIONS(3544), 1, - sym_metavariable, - STATE(1494), 1, - sym_constrained_type_parameter, + [47234] = 4, + ACTIONS(3438), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1746), 2, - sym_const_parameter, - sym_optional_type_parameter, - [47061] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3546), 1, + ACTIONS(3119), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2046), 3, anon_sym_SEMI, - STATE(361), 1, - sym_block, - STATE(1758), 1, - sym_where_clause, + anon_sym_DASH_GT, + anon_sym_PLUS, + [47251] = 5, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(3553), 1, + anon_sym_COLON_COLON, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47084] = 7, - ACTIONS(3243), 1, + ACTIONS(1992), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [47270] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3295), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3548), 1, + ACTIONS(3555), 1, anon_sym_SEMI, - STATE(1104), 1, + STATE(364), 1, sym_declaration_list, - STATE(1753), 1, + STATE(1713), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47107] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, + [47293] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3550), 1, - anon_sym_SEMI, - STATE(1106), 1, - sym_block, - STATE(1634), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47130] = 7, - ACTIONS(1797), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3552), 1, + ACTIONS(3557), 1, anon_sym_SEMI, - ACTIONS(3554), 1, + ACTIONS(3559), 1, anon_sym_DASH_GT, - STATE(1145), 1, + STATE(230), 1, sym_block, - STATE(1589), 1, + STATE(1734), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47153] = 7, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3556), 1, - anon_sym_SEMI, - STATE(1156), 1, - sym_block, - STATE(1685), 1, - sym_where_clause, + [47316] = 4, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, + ACTIONS(3261), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47176] = 7, - ACTIONS(3243), 1, + ACTIONS(1992), 4, + anon_sym_SEMI, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_PLUS, + [47333] = 7, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3402), 1, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(3561), 1, anon_sym_SEMI, - ACTIONS(3560), 1, + ACTIONS(3563), 1, anon_sym_DASH_GT, - STATE(339), 1, + STATE(382), 1, sym_block, - STATE(1756), 1, + STATE(1718), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47199] = 6, - ACTIONS(3364), 1, - sym_identifier, - ACTIONS(3366), 1, - anon_sym_const, - ACTIONS(3370), 1, - sym_metavariable, - STATE(1600), 1, - sym_constrained_type_parameter, + [47356] = 4, + ACTIONS(3547), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1971), 2, - sym_const_parameter, - sym_optional_type_parameter, - [47220] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(3562), 1, - anon_sym_SEMI, - STATE(1025), 1, - sym_declaration_list, - STATE(1698), 1, - sym_where_clause, + [47373] = 5, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, + anon_sym_COLON_COLON, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47243] = 4, - ACTIONS(3476), 1, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, - STATE(1434), 1, + [47392] = 4, + ACTIONS(3567), 1, + anon_sym_PLUS, + STATE(1437), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 4, + ACTIONS(3408), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, - [47260] = 7, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3402), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3566), 1, - anon_sym_SEMI, - STATE(377), 1, - sym_block, - STATE(1772), 1, - sym_where_clause, + [47409] = 4, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, + ACTIONS(3291), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47283] = 4, - ACTIONS(2962), 1, + ACTIONS(1992), 4, + anon_sym_SEMI, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_PLUS, + [47426] = 4, + ACTIONS(2974), 1, anon_sym_COLON_COLON, - ACTIONS(3273), 1, + ACTIONS(3255), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 4, + ACTIONS(1992), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS, - [47300] = 4, - ACTIONS(3568), 1, + [47443] = 4, + ACTIONS(3567), 1, anon_sym_PLUS, - STATE(1434), 1, + STATE(1368), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 4, + ACTIONS(3569), 4, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_where, anon_sym_COMMA, - [47317] = 4, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3575), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3571), 3, + anon_sym_LBRACE, + [47460] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [47333] = 4, - ACTIONS(3577), 1, - anon_sym_RBRACK, + STATE(324), 1, + sym_block, + STATE(1746), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 2, - anon_sym_SEMI, + [47483] = 7, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3083), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [47349] = 6, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(2960), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_COLON, - STATE(987), 1, - sym_type_arguments, - STATE(1569), 1, - sym_trait_bounds, + ACTIONS(3573), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_declaration_list, + STATE(1624), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47369] = 5, - ACTIONS(3025), 1, + [47506] = 3, + ACTIONS(3575), 1, anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_COLON, - STATE(1654), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3582), 2, + ACTIONS(2130), 4, anon_sym_COMMA, + anon_sym_PLUS, anon_sym_GT, - [47387] = 5, - ACTIONS(781), 1, - anon_sym_RPAREN, - ACTIONS(3584), 1, + anon_sym_COLON_COLON, + [47520] = 6, + ACTIONS(3577), 1, anon_sym_COMMA, - STATE(1695), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2944), 2, + ACTIONS(3579), 1, anon_sym_COLON, + ACTIONS(3581), 1, + anon_sym_RPAREN, + ACTIONS(3583), 1, anon_sym_PIPE, - [47405] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - STATE(1243), 1, - sym_block, + STATE(1788), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [47421] = 4, - ACTIONS(3586), 1, - anon_sym_PLUS, - STATE(1449), 1, - aux_sym_trait_bounds_repeat1, + [47540] = 4, + ACTIONS(3587), 1, + anon_sym_as, + ACTIONS(3589), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3585), 3, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, + [47556] = 6, + ACTIONS(3591), 1, + sym_identifier, + ACTIONS(3593), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym_asm_block_repeat1, + STATE(1744), 1, + aux_sym_asm_content_repeat1, + STATE(1885), 1, + sym_asm_content, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [47576] = 5, + ACTIONS(3041), 1, anon_sym_EQ, - anon_sym_GT, - [47437] = 4, - ACTIONS(3588), 1, - anon_sym_PLUS, - STATE(1449), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3463), 1, + anon_sym_COLON, + STATE(1790), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 3, + ACTIONS(3595), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_GT, - [47453] = 4, - ACTIONS(3514), 1, + [47594] = 4, + ACTIONS(3424), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3536), 2, - anon_sym_RPAREN, + ACTIONS(3485), 2, anon_sym_COMMA, - [47469] = 6, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3592), 1, - anon_sym_RBRACE, - STATE(1462), 1, - aux_sym_asm_block_repeat1, - STATE(1615), 1, - aux_sym_asm_content_repeat1, - STATE(1962), 1, - sym_asm_content, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47489] = 3, + anon_sym_RPAREN, + [47610] = 4, + ACTIONS(3489), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2342), 3, - anon_sym_RPAREN, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3485), 2, anon_sym_COMMA, - anon_sym_PLUS, - [47503] = 5, - ACTIONS(3594), 1, anon_sym_RPAREN, - ACTIONS(3596), 1, + [47626] = 5, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(3597), 1, anon_sym_COMMA, - STATE(1575), 1, + STATE(1619), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 2, + ACTIONS(2948), 2, anon_sym_COLON, anon_sym_PIPE, - [47521] = 6, - ACTIONS(3135), 1, - anon_sym_PIPE, - ACTIONS(3598), 1, - anon_sym_SEMI, - ACTIONS(3600), 1, - anon_sym_COLON, - ACTIONS(3602), 1, - anon_sym_EQ, - ACTIONS(3604), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47541] = 3, - ACTIONS(3606), 1, - anon_sym_EQ, + [47644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2106), 4, + ACTIONS(3067), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2294), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_GT, + [47658] = 6, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2964), 1, anon_sym_COLON_COLON, - [47555] = 4, - ACTIONS(3586), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(980), 1, + sym_type_arguments, + STATE(1661), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [47678] = 4, + ACTIONS(3601), 1, anon_sym_PLUS, - STATE(1463), 1, + STATE(1453), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 3, + ACTIONS(3569), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - [47571] = 6, - ACTIONS(3608), 1, - anon_sym_SEMI, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_else, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47591] = 4, - ACTIONS(3573), 1, + [47694] = 4, + ACTIONS(3605), 1, anon_sym_as, - ACTIONS(3618), 1, + ACTIONS(3607), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3571), 3, + ACTIONS(3603), 3, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, + [47710] = 5, + ACTIONS(3609), 1, anon_sym_COMMA, - [47607] = 5, - ACTIONS(773), 1, + ACTIONS(3612), 1, anon_sym_RPAREN, - ACTIONS(3620), 1, - anon_sym_COMMA, - STATE(1637), 1, + STATE(1738), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 2, + ACTIONS(2948), 2, anon_sym_COLON, anon_sym_PIPE, - [47625] = 4, - ACTIONS(3624), 1, - anon_sym_as, - ACTIONS(3626), 1, - anon_sym_COLON_COLON, + [47728] = 4, + ACTIONS(3615), 1, + anon_sym_PLUS, + STATE(1453), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3372), 3, anon_sym_COMMA, - [47641] = 4, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_block, + anon_sym_EQ, + anon_sym_GT, + [47744] = 6, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(3618), 1, + anon_sym_SEMI, + ACTIONS(3620), 1, + anon_sym_EQ, + ACTIONS(3622), 1, + anon_sym_COLON, + ACTIONS(3624), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [47657] = 4, - ACTIONS(3512), 1, + [47764] = 4, + ACTIONS(3489), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3628), 2, - anon_sym_RPAREN, + ACTIONS(3626), 2, anon_sym_COMMA, - [47673] = 4, - ACTIONS(2342), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3083), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3577), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [47689] = 4, - ACTIONS(3573), 1, - anon_sym_as, - ACTIONS(3630), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3571), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [47705] = 6, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3632), 1, - anon_sym_RBRACE, - STATE(1460), 1, - aux_sym_asm_block_repeat1, - STATE(1615), 1, - aux_sym_asm_content_repeat1, - STATE(1962), 1, - sym_asm_content, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47725] = 4, - ACTIONS(3538), 1, + [47780] = 4, + ACTIONS(3424), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3628), 2, - anon_sym_RPAREN, + ACTIONS(3626), 2, anon_sym_COMMA, - [47741] = 6, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym_asm_block_repeat1, - STATE(1615), 1, - aux_sym_asm_content_repeat1, - STATE(1962), 1, - sym_asm_content, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [47761] = 5, - ACTIONS(3636), 1, anon_sym_RPAREN, - ACTIONS(3638), 1, - anon_sym_COMMA, - STATE(1719), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2944), 2, - anon_sym_COLON, + [47796] = 6, + ACTIONS(3051), 1, anon_sym_PIPE, - [47779] = 6, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3640), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym_asm_block_repeat1, - STATE(1615), 1, - aux_sym_asm_content_repeat1, - STATE(1962), 1, - sym_asm_content, + ACTIONS(3628), 1, + anon_sym_SEMI, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47799] = 4, - ACTIONS(3642), 1, - anon_sym_PLUS, - STATE(1463), 1, - aux_sym_trait_bounds_repeat1, + [47816] = 4, + ACTIONS(3587), 1, + anon_sym_as, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 3, + ACTIONS(3585), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_GT, - [47815] = 5, - ACTIONS(3645), 1, + anon_sym_RBRACE, + [47832] = 5, + ACTIONS(769), 1, anon_sym_RPAREN, - ACTIONS(3648), 1, + ACTIONS(3638), 1, anon_sym_COMMA, - STATE(1575), 1, + STATE(1769), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 2, + ACTIONS(2948), 2, anon_sym_COLON, anon_sym_PIPE, - [47833] = 6, - ACTIONS(3616), 1, + [47850] = 6, + ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3651), 1, + ACTIONS(3640), 1, anon_sym_SEMI, - ACTIONS(3653), 1, - anon_sym_COLON, - ACTIONS(3655), 1, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3657), 1, + ACTIONS(3644), 1, + anon_sym_COLON, + ACTIONS(3646), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47853] = 6, - ACTIONS(3590), 1, + [47870] = 6, + ACTIONS(3591), 1, sym_identifier, - ACTIONS(3659), 1, + ACTIONS(3648), 1, anon_sym_RBRACE, - STATE(1467), 1, + STATE(1462), 1, aux_sym_asm_block_repeat1, - STATE(1615), 1, + STATE(1744), 1, aux_sym_asm_content_repeat1, - STATE(1962), 1, + STATE(1885), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47873] = 6, - ACTIONS(3661), 1, + [47890] = 6, + ACTIONS(3591), 1, sym_identifier, - ACTIONS(3664), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, - STATE(1467), 1, + STATE(1479), 1, aux_sym_asm_block_repeat1, - STATE(1615), 1, + STATE(1744), 1, aux_sym_asm_content_repeat1, - STATE(1962), 1, + STATE(1885), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47893] = 4, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, + [47910] = 4, + ACTIONS(2294), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3536), 2, - anon_sym_RPAREN, + ACTIONS(3067), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3652), 2, anon_sym_COMMA, - [47909] = 6, - ACTIONS(3590), 1, + anon_sym_RPAREN, + [47926] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + STATE(1226), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [47942] = 6, + ACTIONS(3591), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3655), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1468), 1, aux_sym_asm_block_repeat1, - STATE(1615), 1, + STATE(1744), 1, aux_sym_asm_content_repeat1, - STATE(1962), 1, + STATE(1885), 1, sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47929] = 4, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [47962] = 5, + ACTIONS(3657), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, + anon_sym_RPAREN, + STATE(1738), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3536), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [47945] = 6, - ACTIONS(3135), 1, + ACTIONS(2948), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3668), 1, + [47980] = 6, + ACTIONS(3051), 1, + anon_sym_PIPE, + ACTIONS(3661), 1, anon_sym_SEMI, - ACTIONS(3670), 1, - anon_sym_COLON, - ACTIONS(3672), 1, + ACTIONS(3663), 1, anon_sym_EQ, - ACTIONS(3674), 1, + ACTIONS(3665), 1, + anon_sym_COLON, + ACTIONS(3667), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [47965] = 4, - ACTIONS(3514), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3628), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [47981] = 6, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3676), 1, - anon_sym_COLON, - ACTIONS(3678), 1, - anon_sym_RPAREN, - ACTIONS(3680), 1, - anon_sym_COMMA, - STATE(1578), 1, - aux_sym_tuple_pattern_repeat1, + [48000] = 6, + ACTIONS(3591), 1, + sym_identifier, + ACTIONS(3669), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym_asm_block_repeat1, + STATE(1744), 1, + aux_sym_asm_content_repeat1, + STATE(1885), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48001] = 4, - ACTIONS(3682), 1, + [48020] = 4, + ACTIONS(3671), 1, anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, @@ -97545,5994 +93092,6109 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1827), 2, anon_sym_pub, sym_identifier, - STATE(1474), 2, + STATE(1469), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [48017] = 3, - ACTIONS(3685), 1, + [48036] = 4, + ACTIONS(3547), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 3, - anon_sym_RPAREN, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3485), 2, anon_sym_COMMA, - anon_sym_PLUS, - [48030] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, + anon_sym_RPAREN, + [48052] = 6, + ACTIONS(3591), 1, + sym_identifier, + ACTIONS(3674), 1, + anon_sym_RBRACE, + STATE(1443), 1, + aux_sym_asm_block_repeat1, + STATE(1744), 1, + aux_sym_asm_content_repeat1, + STATE(1885), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3687), 3, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [48043] = 4, - ACTIONS(265), 1, - anon_sym_LBRACE, - ACTIONS(3689), 1, - anon_sym_if, + [48072] = 4, + ACTIONS(3547), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(749), 2, - sym_if_expression, - sym_block, - [48058] = 5, - ACTIONS(3691), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3626), 2, anon_sym_COMMA, - ACTIONS(3693), 1, + anon_sym_RPAREN, + [48088] = 4, + ACTIONS(3601), 1, anon_sym_PLUS, - ACTIONS(3695), 1, - anon_sym_GT, - STATE(1702), 1, - aux_sym_type_arguments_repeat1, + STATE(1450), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48075] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3636), 1, - anon_sym_RPAREN, - ACTIONS(3638), 1, + ACTIONS(3408), 3, anon_sym_COMMA, - STATE(1719), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48092] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3697), 1, - anon_sym_SEMI, - ACTIONS(3699), 1, anon_sym_EQ, - ACTIONS(3701), 1, - anon_sym_else, + anon_sym_GT, + [48104] = 4, + ACTIONS(3652), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48109] = 5, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3703), 1, - anon_sym_RBRACK, - ACTIONS(3705), 1, + ACTIONS(2294), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3067), 2, anon_sym_COMMA, - STATE(1573), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_PIPE, + [48120] = 4, + ACTIONS(3676), 1, + anon_sym_PLUS, + STATE(1450), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48126] = 4, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3707), 1, - anon_sym_COLON, + ACTIONS(3408), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_GT, + [48136] = 4, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48141] = 3, - ACTIONS(3709), 1, + ACTIONS(2038), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [48152] = 4, + ACTIONS(3587), 1, + anon_sym_as, + ACTIONS(3678), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 3, - anon_sym_RPAREN, + ACTIONS(3585), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PLUS, - [48154] = 5, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3711), 1, - anon_sym_RPAREN, - ACTIONS(3713), 1, + anon_sym_RBRACE, + [48168] = 5, + ACTIONS(3680), 1, anon_sym_COMMA, - STATE(1571), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3682), 1, + anon_sym_RPAREN, + STATE(1578), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48171] = 3, - ACTIONS(3715), 1, + ACTIONS(2948), 2, anon_sym_COLON, + anon_sym_PIPE, + [48186] = 6, + ACTIONS(3684), 1, + sym_identifier, + ACTIONS(3687), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym_asm_block_repeat1, + STATE(1744), 1, + aux_sym_asm_content_repeat1, + STATE(1885), 1, + sym_asm_content, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [48184] = 5, - ACTIONS(3243), 1, + [48206] = 5, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3295), 1, + ACTIONS(3447), 1, anon_sym_LBRACE, - STATE(1064), 1, - sym_declaration_list, - STATE(1822), 1, + STATE(1005), 1, + sym_enum_variant_list, + STATE(1971), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48201] = 3, + [48223] = 5, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(1429), 1, + sym_parameters, + STATE(1906), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [48214] = 5, - ACTIONS(3243), 1, + [48240] = 5, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3295), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1091), 1, + STATE(353), 1, sym_declaration_list, - STATE(1874), 1, + STATE(1843), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48231] = 3, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1996), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [48244] = 4, - ACTIONS(3721), 1, - anon_sym_DQUOTE, - STATE(1501), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3723), 2, - sym__string_content, - sym_escape_sequence, - [48259] = 4, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3727), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3725), 2, - anon_sym_RBRACE, - sym_identifier, - [48274] = 5, - ACTIONS(3243), 1, + [48257] = 5, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(3428), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(320), 1, - sym_enum_variant_list, - STATE(1930), 1, + STATE(226), 1, + sym_declaration_list, + STATE(1807), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48291] = 4, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, - ACTIONS(3727), 1, - anon_sym_SEMI, + [48274] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3725), 2, - anon_sym_RBRACE, - sym_identifier, - [48306] = 5, - ACTIONS(3729), 1, + ACTIONS(3689), 3, anon_sym_COMMA, - ACTIONS(3731), 1, anon_sym_EQ, - ACTIONS(3733), 1, - anon_sym_GT, - STATE(1776), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48323] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3735), 1, + anon_sym_RBRACE, + [48287] = 5, + ACTIONS(777), 1, anon_sym_RPAREN, - ACTIONS(3737), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3597), 1, anon_sym_COMMA, - STATE(1800), 1, - aux_sym_tuple_type_repeat1, + STATE(1619), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48340] = 4, - ACTIONS(3741), 1, + [48304] = 4, + ACTIONS(3694), 1, anon_sym_fn, - STATE(1528), 1, + STATE(1486), 1, aux_sym_function_modifiers_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3739), 2, + ACTIONS(3691), 2, anon_sym_const, anon_sym_default, - [48355] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3498), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_enum_variant_list, - STATE(1886), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48372] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3498), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_enum_variant_list, - STATE(1807), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48389] = 5, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_COMMA, - ACTIONS(3747), 1, - anon_sym_PIPE, - STATE(1629), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48406] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_declaration_list, - STATE(1981), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48423] = 4, - ACTIONS(3749), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3751), 2, - sym__string_content, - sym_escape_sequence, - [48438] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3753), 1, + [48319] = 5, + ACTIONS(769), 1, anon_sym_RPAREN, - ACTIONS(3755), 1, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_COMMA, - STATE(1797), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48455] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_declaration_list, - STATE(1890), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48472] = 5, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(1393), 1, - sym_parameters, - STATE(1871), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48489] = 4, - ACTIONS(667), 1, - anon_sym_LBRACE, - ACTIONS(3757), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(213), 2, - sym_if_expression, - sym_block, - [48504] = 4, - ACTIONS(3759), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - aux_sym_string_literal_repeat1, + STATE(1769), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3751), 2, - sym__string_content, - sym_escape_sequence, - [48519] = 5, - ACTIONS(3293), 1, + [48336] = 5, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(3297), 1, anon_sym_COLON, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(253), 1, - sym_declaration_list, - STATE(1867), 1, + STATE(983), 1, + sym_type_arguments, + STATE(1756), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48536] = 5, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(1409), 1, - sym_parameters, - STATE(1810), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48553] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3761), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, - anon_sym_COMMA, - STATE(1556), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48570] = 5, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(3404), 1, + [48353] = 5, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3620), 1, + ACTIONS(3696), 1, anon_sym_COMMA, - STATE(1637), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48587] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3765), 1, + ACTIONS(3698), 1, anon_sym_RPAREN, - ACTIONS(3767), 1, - anon_sym_COMMA, - STATE(1648), 1, + STATE(1729), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48604] = 3, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3450), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48617] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_enum_variant_list, - STATE(1924), 1, - sym_where_clause, + [48370] = 4, + ACTIONS(3489), 1, + anon_sym_COLON_COLON, + ACTIONS(3700), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48634] = 4, - ACTIONS(3771), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48385] = 4, + ACTIONS(3702), 1, anon_sym_DQUOTE, - STATE(1506), 1, + STATE(1493), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3773), 2, + ACTIONS(3704), 2, sym__string_content, sym_escape_sequence, - [48649] = 5, - ACTIONS(3404), 1, + [48400] = 5, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3775), 1, - anon_sym_SEMI, - ACTIONS(3777), 1, - anon_sym_EQ, - ACTIONS(3779), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48666] = 4, - ACTIONS(3781), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3751), 2, - sym__string_content, - sym_escape_sequence, - [48681] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2944), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3783), 2, - anon_sym_RPAREN, + ACTIONS(3706), 1, anon_sym_COMMA, - [48694] = 3, - ACTIONS(3785), 1, - sym_identifier, + ACTIONS(3708), 1, + anon_sym_RPAREN, + STATE(1602), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3450), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48707] = 4, - ACTIONS(3787), 1, + [48417] = 4, + ACTIONS(3710), 1, anon_sym_DQUOTE, - STATE(1516), 1, + STATE(1540), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3789), 2, + ACTIONS(3712), 2, sym__string_content, sym_escape_sequence, - [48722] = 5, - ACTIONS(3434), 1, - anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_GT, - ACTIONS(3731), 1, - anon_sym_EQ, - STATE(1669), 1, - aux_sym_type_parameters_repeat1, + [48432] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_declaration_list, + STATE(1938), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48739] = 5, - ACTIONS(3404), 1, + [48449] = 5, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3791), 1, + ACTIONS(3714), 1, anon_sym_SEMI, - ACTIONS(3793), 1, + ACTIONS(3716), 1, anon_sym_EQ, - ACTIONS(3795), 1, + ACTIONS(3718), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48756] = 4, - ACTIONS(3799), 1, - anon_sym_COMMA, - STATE(1522), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3797), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [48771] = 5, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(1362), 1, - sym_parameters, - STATE(1894), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48788] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3802), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - [48801] = 3, - ACTIONS(2966), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48814] = 3, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3450), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48827] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3319), 1, + [48466] = 4, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(274), 1, - sym_declaration_list, - STATE(1955), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [48844] = 4, - ACTIONS(3809), 1, - anon_sym_fn, - STATE(1528), 1, - aux_sym_function_modifiers_repeat1, + ACTIONS(3720), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 2, - anon_sym_const, - anon_sym_default, - [48859] = 5, - ACTIONS(3243), 1, + STATE(225), 2, + sym_if_expression, + sym_block, + [48481] = 5, + ACTIONS(3227), 1, anon_sym_where, ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(1054), 1, sym_declaration_list, - STATE(1921), 1, + STATE(1850), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48876] = 5, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3811), 1, - sym_identifier, - ACTIONS(3813), 1, - anon_sym_STAR, - STATE(1572), 1, - sym_use_list, + [48498] = 4, + ACTIONS(2978), 1, + anon_sym_COLON_COLON, + ACTIONS(3724), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48893] = 3, - ACTIONS(2128), 1, - anon_sym_COLON_COLON, + ACTIONS(3722), 2, + anon_sym_RBRACE, + sym_identifier, + [48513] = 4, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3724), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 3, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - [48906] = 5, - ACTIONS(2578), 1, + ACTIONS(3722), 2, + anon_sym_RBRACE, + sym_identifier, + [48528] = 5, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(3408), 1, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(3728), 1, anon_sym_STAR, - STATE(1760), 1, + STATE(1675), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48923] = 5, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(1396), 1, - sym_parameters, - STATE(1923), 1, - sym_type_parameters, + [48545] = 3, + ACTIONS(3730), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [48940] = 4, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_if, + ACTIONS(3461), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [48558] = 4, + ACTIONS(3732), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(77), 2, - sym_if_expression, - sym_block, - [48955] = 4, - ACTIONS(3819), 1, - anon_sym_SEMI, - ACTIONS(3821), 1, - anon_sym_COLON, + ACTIONS(3712), 2, + sym__string_content, + sym_escape_sequence, + [48573] = 5, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(3734), 1, + anon_sym_COMMA, + ACTIONS(3736), 1, + anon_sym_RPAREN, + STATE(1626), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3817), 2, - anon_sym_RBRACE, - sym_identifier, - [48970] = 4, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_COLON, + [48590] = 4, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + STATE(1523), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3825), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [48985] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3319), 1, + ACTIONS(3740), 2, + sym__string_content, + sym_escape_sequence, + [48605] = 5, + ACTIONS(3297), 1, + anon_sym_COLON, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(313), 1, + STATE(262), 1, sym_declaration_list, - STATE(1918), 1, - sym_where_clause, + STATE(1883), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49002] = 5, - ACTIONS(3404), 1, + [48622] = 5, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3827), 1, - anon_sym_RPAREN, - ACTIONS(3829), 1, + ACTIONS(3657), 1, anon_sym_COMMA, - STATE(1718), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3659), 1, + anon_sym_RPAREN, + STATE(1738), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49019] = 4, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3831), 1, + [48639] = 4, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(3744), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49034] = 4, - ACTIONS(3833), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3835), 2, - sym__string_content, - sym_escape_sequence, - [49049] = 5, - ACTIONS(2137), 1, + ACTIONS(3742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48654] = 5, + ACTIONS(2057), 1, anon_sym_LPAREN, - ACTIONS(3245), 1, + ACTIONS(3233), 1, anon_sym_LT, - STATE(1428), 1, + STATE(1384), 1, sym_parameters, - STATE(1926), 1, + STATE(1935), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49066] = 4, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3838), 1, - sym_identifier, + [48671] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3746), 1, + anon_sym_COMMA, + ACTIONS(3748), 1, + anon_sym_RPAREN, + STATE(1782), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1474), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [49081] = 5, - ACTIONS(3693), 1, - anon_sym_PLUS, - ACTIONS(3840), 1, + [48688] = 5, + ACTIONS(3750), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(3752), 1, + anon_sym_EQ, + ACTIONS(3754), 1, anon_sym_GT, - STATE(1583), 1, - aux_sym_type_arguments_repeat1, + STATE(1789), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49098] = 5, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(319), 1, - sym_declaration_list, - STATE(1849), 1, - sym_where_clause, + [48705] = 3, + ACTIONS(3756), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49115] = 5, - ACTIONS(2137), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(1373), 1, - sym_parameters, - STATE(1965), 1, - sym_type_parameters, + ACTIONS(1992), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + [48718] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3758), 1, + anon_sym_SEMI, + ACTIONS(3760), 1, + anon_sym_EQ, + ACTIONS(3762), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49132] = 5, - ACTIONS(3404), 1, + [48735] = 3, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3461), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [48748] = 5, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3844), 1, + ACTIONS(3766), 1, anon_sym_SEMI, - ACTIONS(3846), 1, + ACTIONS(3768), 1, anon_sym_EQ, - ACTIONS(3848), 1, + ACTIONS(3770), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49149] = 3, - ACTIONS(3404), 1, + [48765] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3850), 3, - anon_sym_RBRACE, + ACTIONS(3772), 3, anon_sym_COMMA, anon_sym_EQ, - [49162] = 5, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3594), 1, - anon_sym_RPAREN, - ACTIONS(3596), 1, - anon_sym_COMMA, - STATE(1575), 1, - aux_sym_parameters_repeat1, + anon_sym_RBRACE, + [48778] = 4, + ACTIONS(3489), 1, + anon_sym_COLON_COLON, + ACTIONS(3774), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49179] = 4, - ACTIONS(3854), 1, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48793] = 5, + ACTIONS(3533), 1, anon_sym_COMMA, - STATE(1554), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3535), 1, + anon_sym_GT, + ACTIONS(3752), 1, + anon_sym_EQ, + STATE(1571), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3852), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [49194] = 4, - ACTIONS(3856), 1, - anon_sym_COMMA, - STATE(1550), 1, - aux_sym_tuple_pattern_repeat1, + [48810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3687), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - [49209] = 5, - ACTIONS(781), 1, + ACTIONS(2948), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3776), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(3584), 1, + [48823] = 5, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(1396), 1, + sym_parameters, + STATE(1951), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48840] = 5, + ACTIONS(3778), 1, anon_sym_COMMA, - STATE(1695), 1, - aux_sym_parameters_repeat1, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(3782), 1, + anon_sym_GT, + STATE(1587), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49226] = 3, - ACTIONS(3859), 1, - sym_identifier, + [48857] = 4, + ACTIONS(3786), 1, + anon_sym_fn, + STATE(1486), 1, + aux_sym_function_modifiers_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3450), 3, + ACTIONS(3784), 2, anon_sym_const, anon_sym_default, - anon_sym_fn, - [49239] = 5, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3293), 1, + [48872] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3788), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, + anon_sym_EQ, + ACTIONS(3792), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48889] = 4, + ACTIONS(3794), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3712), 2, + sym__string_content, + sym_escape_sequence, + [48904] = 5, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(1416), 1, + sym_parameters, + STATE(1929), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48921] = 4, + ACTIONS(3798), 1, + anon_sym_SEMI, + ACTIONS(3800), 1, anon_sym_COLON, - STATE(989), 1, - sym_type_arguments, - STATE(1570), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49256] = 4, - ACTIONS(3861), 1, + ACTIONS(3796), 2, + anon_sym_RBRACE, + sym_identifier, + [48936] = 4, + ACTIONS(283), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(690), 2, + sym_if_expression, + sym_block, + [48951] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1020), 1, + sym_declaration_list, + STATE(1815), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [48968] = 4, + ACTIONS(3804), 1, anon_sym_COMMA, - STATE(1522), 1, + STATE(1558), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_SEMI, anon_sym_LBRACE, - [49271] = 5, - ACTIONS(3616), 1, + [48983] = 5, + ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(3678), 1, - anon_sym_RPAREN, - ACTIONS(3680), 1, + ACTIONS(3806), 1, + anon_sym_RBRACK, + ACTIONS(3808), 1, anon_sym_COMMA, - STATE(1578), 1, + STATE(1770), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49288] = 4, - ACTIONS(3863), 1, - anon_sym_RPAREN, - ACTIONS(3865), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [49000] = 5, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(1405), 1, + sym_parameters, + STATE(1960), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49302] = 4, - ACTIONS(3319), 1, + [49017] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, - anon_sym_SEMI, - STATE(388), 1, + STATE(407), 1, sym_declaration_list, + STATE(1834), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49316] = 4, - ACTIONS(3869), 1, - anon_sym_RBRACE, - ACTIONS(3871), 1, - anon_sym_COMMA, - STATE(1581), 1, - aux_sym_struct_pattern_repeat1, + [49034] = 4, + ACTIONS(3810), 1, + anon_sym_DQUOTE, + STATE(1502), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49330] = 3, - ACTIONS(3873), 1, - anon_sym_COLON, + ACTIONS(3812), 2, + sym__string_content, + sym_escape_sequence, + [49049] = 5, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(3814), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_GT, + STATE(1794), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3875), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49342] = 4, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(3879), 1, + [49066] = 4, + ACTIONS(3820), 1, anon_sym_COMMA, - STATE(1560), 1, - aux_sym_storage_content_list_repeat1, + STATE(1528), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49356] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3882), 1, + ACTIONS(3818), 2, anon_sym_SEMI, - STATE(1028), 1, - sym_block, + anon_sym_LBRACE, + [49081] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1100), 1, + sym_declaration_list, + STATE(1874), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49370] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3884), 1, - anon_sym_SEMI, - STATE(1063), 1, - sym_block, + [49098] = 3, + ACTIONS(3822), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49384] = 4, - ACTIONS(3299), 1, - anon_sym_RBRACE, - ACTIONS(3886), 1, + ACTIONS(3051), 3, anon_sym_COMMA, - STATE(1680), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_RPAREN, + anon_sym_PIPE, + [49111] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49398] = 2, + ACTIONS(3824), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [49124] = 5, + ACTIONS(2057), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(1366), 1, + sym_parameters, + STATE(1837), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2643), 3, - anon_sym_COLON, + [49141] = 4, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_where, - [49408] = 2, + ACTIONS(3826), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2739), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [49418] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(3888), 1, - anon_sym_SEMI, - STATE(405), 1, + STATE(66), 2, + sym_if_expression, sym_block, + [49156] = 4, + ACTIONS(3828), 1, + anon_sym_DQUOTE, + STATE(1540), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49432] = 3, - ACTIONS(3890), 1, - anon_sym_COLON, + ACTIONS(3830), 2, + sym__string_content, + sym_escape_sequence, + [49171] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3447), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_enum_variant_list, + STATE(1858), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3892), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [49444] = 4, - ACTIONS(3299), 1, - anon_sym_RBRACE, - ACTIONS(3886), 1, + [49188] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3833), 1, anon_sym_COMMA, - STATE(1681), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(3835), 1, + anon_sym_RPAREN, + STATE(1785), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49458] = 2, + [49205] = 3, + ACTIONS(3837), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3894), 3, + ACTIONS(1992), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + [49218] = 4, + ACTIONS(3839), 1, anon_sym_COMMA, - [49468] = 2, + STATE(1544), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3896), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [49478] = 4, - ACTIONS(1765), 1, + ACTIONS(3824), 2, + anon_sym_RBRACK, anon_sym_RPAREN, - ACTIONS(3898), 1, - anon_sym_COMMA, - STATE(1550), 1, - aux_sym_tuple_pattern_repeat1, + [49233] = 5, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3495), 1, + anon_sym_STAR, + STATE(1695), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49492] = 2, + [49250] = 3, + ACTIONS(3842), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3900), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [49502] = 4, - ACTIONS(1763), 1, - anon_sym_RBRACK, - ACTIONS(3902), 1, - anon_sym_COMMA, - STATE(1550), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3461), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [49263] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3509), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_enum_variant_list, + STATE(1823), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49280] = 3, + ACTIONS(3844), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3461), 3, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + [49293] = 3, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49516] = 4, - ACTIONS(781), 1, + ACTIONS(1992), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3584), 1, + anon_sym_PLUS, + [49306] = 5, + ACTIONS(3577), 1, anon_sym_COMMA, - STATE(1695), 1, - aux_sym_parameters_repeat1, + ACTIONS(3581), 1, + anon_sym_RPAREN, + ACTIONS(3583), 1, + anon_sym_PIPE, + STATE(1788), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49530] = 4, - ACTIONS(781), 1, - anon_sym_RPAREN, - ACTIONS(3584), 1, + [49323] = 5, + ACTIONS(3848), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_parameters_repeat1, + ACTIONS(3850), 1, + anon_sym_COLON, + ACTIONS(3852), 1, + anon_sym_PIPE, + STATE(1759), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49544] = 4, - ACTIONS(1797), 1, + [49340] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3904), 1, - anon_sym_SEMI, - STATE(1075), 1, - sym_block, + STATE(1066), 1, + sym_declaration_list, + STATE(1860), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49558] = 4, - ACTIONS(3594), 1, - anon_sym_RPAREN, - ACTIONS(3596), 1, - anon_sym_COMMA, - STATE(1575), 1, - aux_sym_parameters_repeat1, + [49357] = 5, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3509), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_enum_variant_list, + STATE(1825), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49572] = 4, - ACTIONS(1767), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, + [49374] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(1550), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3856), 1, + anon_sym_RPAREN, + STATE(1682), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49586] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3908), 1, + [49391] = 4, + ACTIONS(3199), 1, + anon_sym_POUND, + ACTIONS(3858), 1, sym_identifier, - STATE(1135), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49600] = 3, - ACTIONS(3910), 1, - anon_sym_COLON, + STATE(1469), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [49406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3912), 2, - anon_sym_RBRACE, + ACTIONS(2948), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3860), 2, anon_sym_COMMA, - [49612] = 4, - ACTIONS(3309), 1, - anon_sym_RBRACE, - ACTIONS(3914), 1, + anon_sym_RPAREN, + [49419] = 5, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3680), 1, anon_sym_COMMA, - STATE(1704), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3682), 1, + anon_sym_RPAREN, + STATE(1578), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49626] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_block, + [49436] = 4, + ACTIONS(3864), 1, + anon_sym_COMMA, + STATE(1558), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49640] = 4, - ACTIONS(1807), 1, - anon_sym_GT, - ACTIONS(3918), 1, - anon_sym_COMMA, - STATE(1709), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3862), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [49451] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3867), 1, + anon_sym_SEMI, + STATE(1111), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49654] = 3, - ACTIONS(3404), 1, + [49465] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49666] = 4, - ACTIONS(3315), 1, - anon_sym_RBRACE, - ACTIONS(3922), 1, + ACTIONS(3869), 2, anon_sym_COMMA, - STATE(1704), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_RPAREN, + [49477] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_SEMI, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49680] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3924), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [49491] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3873), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [49501] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49694] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + ACTIONS(3875), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49513] = 4, + ACTIONS(3877), 1, + anon_sym_RBRACK, + ACTIONS(3879), 1, + anon_sym_COMMA, + STATE(1569), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3926), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49706] = 4, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_COLON, - STATE(1570), 1, - sym_trait_bounds, + [49527] = 4, + ACTIONS(3233), 1, + anon_sym_LT, + ACTIONS(3881), 1, + anon_sym_EQ, + STATE(2088), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49720] = 4, - ACTIONS(1797), 1, + [49541] = 4, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3928), 1, + ACTIONS(3883), 1, anon_sym_SEMI, - STATE(1161), 1, - sym_block, + STATE(253), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49734] = 4, - ACTIONS(2966), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_COLON, - STATE(1570), 1, - sym_trait_bounds, + [49555] = 4, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(3885), 1, + anon_sym_SEMI, + STATE(341), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49748] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3924), 1, - sym_identifier, - STATE(1135), 1, - sym_type_arguments, + [49569] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3887), 1, + anon_sym_SEMI, + STATE(2115), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49762] = 4, - ACTIONS(3926), 1, - anon_sym_RPAREN, - ACTIONS(3930), 1, + [49583] = 4, + ACTIONS(3889), 1, + anon_sym_RBRACK, + ACTIONS(3891), 1, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_tuple_type_repeat1, + STATE(1569), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49776] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(3933), 1, - sym_identifier, - STATE(665), 1, - sym_type_arguments, + [49597] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49790] = 4, - ACTIONS(3935), 1, - anon_sym_RBRACE, - ACTIONS(3937), 1, + ACTIONS(3894), 2, anon_sym_COMMA, - STATE(1563), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [49804] = 3, - ACTIONS(3939), 1, - anon_sym_COLON, + anon_sym_GT, + [49609] = 4, + ACTIONS(3376), 1, + anon_sym_GT, + ACTIONS(3896), 1, + anon_sym_COMMA, + STATE(1639), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3941), 2, - anon_sym_RBRACE, + [49623] = 4, + ACTIONS(3898), 1, anon_sym_COMMA, - [49816] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(3933), 1, - sym_identifier, - STATE(642), 1, - sym_type_arguments, + ACTIONS(3900), 1, + anon_sym_RBRACE, + STATE(1684), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49830] = 4, - ACTIONS(3404), 1, + [49637] = 4, + ACTIONS(283), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(3943), 1, - anon_sym_SEMI, - ACTIONS(3945), 1, - anon_sym_EQ, + STATE(748), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49844] = 4, - ACTIONS(3317), 1, + [49651] = 4, + ACTIONS(3307), 1, anon_sym_RBRACE, - ACTIONS(3947), 1, + ACTIONS(3902), 1, anon_sym_COMMA, - STATE(1732), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1717), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49858] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3908), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [49665] = 4, + ACTIONS(3307), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_COMMA, + STATE(1615), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49872] = 3, - ACTIONS(3731), 1, - anon_sym_EQ, + [49679] = 4, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(3904), 1, + anon_sym_if, + ACTIONS(3906), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3949), 2, + [49693] = 4, + ACTIONS(2712), 1, + anon_sym_RPAREN, + ACTIONS(3908), 1, anon_sym_COMMA, - anon_sym_GT, - [49884] = 4, - ACTIONS(3277), 1, - anon_sym_RBRACE, - ACTIONS(3951), 1, + STATE(1577), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49707] = 4, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(3597), 1, anon_sym_COMMA, - STATE(1560), 1, - aux_sym_storage_content_list_repeat1, + STATE(1754), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49898] = 3, - ACTIONS(3693), 1, + [49721] = 3, + ACTIONS(3780), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3953), 2, + ACTIONS(3911), 2, anon_sym_COMMA, anon_sym_GT, - [49910] = 4, - ACTIONS(3949), 1, - anon_sym_GT, - ACTIONS(3955), 1, - anon_sym_COMMA, - STATE(1603), 1, - aux_sym_type_parameters_repeat1, + [49733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49924] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + ACTIONS(3913), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [49743] = 4, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + sym_identifier, + STATE(691), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3958), 2, + [49757] = 4, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(3597), 1, anon_sym_COMMA, + STATE(1619), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [49771] = 4, + ACTIONS(3911), 1, anon_sym_GT, - [49936] = 4, - ACTIONS(3319), 1, - anon_sym_LBRACE, - ACTIONS(3960), 1, - anon_sym_SEMI, - STATE(250), 1, - sym_declaration_list, + ACTIONS(3917), 1, + anon_sym_COMMA, + STATE(1583), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49950] = 4, - ACTIONS(3295), 1, + [49785] = 4, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(3962), 1, + ACTIONS(3920), 1, anon_sym_SEMI, - STATE(1128), 1, - sym_declaration_list, + STATE(1070), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49964] = 4, - ACTIONS(541), 1, - anon_sym_RPAREN, - ACTIONS(2604), 1, - anon_sym_COMMA, - STATE(1624), 1, - aux_sym_arguments_repeat1, + [49799] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49978] = 4, - ACTIONS(665), 1, - anon_sym_RBRACK, - ACTIONS(3964), 1, + ACTIONS(3922), 2, anon_sym_COMMA, - STATE(1609), 1, - aux_sym_array_expression_repeat1, + anon_sym_RPAREN, + [49811] = 4, + ACTIONS(3657), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, + anon_sym_RPAREN, + STATE(1738), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [49992] = 4, - ACTIONS(2741), 1, - anon_sym_RBRACK, - ACTIONS(3966), 1, + [49825] = 4, + ACTIONS(1807), 1, + anon_sym_GT, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(1609), 1, - aux_sym_array_expression_repeat1, + STATE(1583), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50006] = 4, - ACTIONS(265), 1, - anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - STATE(718), 1, - sym_block, + [49839] = 3, + ACTIONS(3928), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50020] = 4, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(3969), 1, - anon_sym_SEMI, - STATE(1124), 1, - sym_declaration_list, + ACTIONS(3926), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49851] = 4, + ACTIONS(3930), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_RBRACE, + STATE(1589), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50034] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(3971), 1, - sym_identifier, - STATE(665), 1, - sym_type_arguments, + [49865] = 4, + ACTIONS(2980), 1, + anon_sym_COLON_COLON, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(1756), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50048] = 4, - ACTIONS(3245), 1, - anon_sym_LT, - ACTIONS(3973), 1, - anon_sym_EQ, - STATE(2010), 1, - sym_type_parameters, + [49879] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50062] = 4, - ACTIONS(3319), 1, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49891] = 4, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3937), 1, anon_sym_SEMI, - STATE(240), 1, + STATE(1074), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50076] = 4, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3977), 1, - anon_sym_RBRACE, - STATE(1660), 1, - aux_sym_asm_content_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50090] = 4, - ACTIONS(2144), 1, + [49905] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(3979), 1, + ACTIONS(3939), 1, sym_identifier, - STATE(1135), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50104] = 4, - ACTIONS(1797), 1, + [49919] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(3981), 1, + ACTIONS(3941), 1, anon_sym_SEMI, - STATE(1116), 1, + STATE(338), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50118] = 4, - ACTIONS(3983), 1, + [49933] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3943), 1, anon_sym_SEMI, - ACTIONS(3985), 1, - anon_sym_COLON, - ACTIONS(3987), 1, - anon_sym_EQ, + STATE(1080), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50132] = 4, - ACTIONS(451), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, + [49947] = 4, + ACTIONS(3301), 1, + anon_sym_RBRACE, + ACTIONS(3945), 1, anon_sym_COMMA, - STATE(1624), 1, - aux_sym_arguments_repeat1, + STATE(1589), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50146] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3979), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [49961] = 4, + ACTIONS(3947), 1, + anon_sym_SEMI, + ACTIONS(3949), 1, + anon_sym_EQ, + ACTIONS(3951), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50160] = 2, + [49975] = 4, + ACTIONS(489), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, + anon_sym_COMMA, + STATE(1577), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3991), 3, - anon_sym_SEMI, + [49989] = 4, + ACTIONS(3303), 1, anon_sym_RBRACE, + ACTIONS(3955), 1, anon_sym_COMMA, - [50170] = 4, - ACTIONS(2578), 1, - anon_sym_LBRACE, - ACTIONS(3993), 1, - sym_identifier, - STATE(1652), 1, - sym_use_list, + STATE(1589), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50184] = 2, + [50003] = 4, + ACTIONS(3303), 1, + anon_sym_RBRACE, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(1627), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2713), 3, - anon_sym_COLON, - anon_sym_LBRACE, + [50017] = 4, + ACTIONS(3227), 1, anon_sym_where, - [50194] = 4, - ACTIONS(2717), 1, - anon_sym_RPAREN, - ACTIONS(3995), 1, - anon_sym_COMMA, - STATE(1624), 1, - aux_sym_arguments_repeat1, + ACTIONS(3957), 1, + anon_sym_SEMI, + STATE(2172), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50208] = 4, - ACTIONS(3998), 1, - anon_sym_RBRACE, - ACTIONS(4000), 1, + [50031] = 4, + ACTIONS(3959), 1, anon_sym_COMMA, - STATE(1763), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50222] = 3, - ACTIONS(4002), 1, - anon_sym_COLON, + ACTIONS(3961), 1, + anon_sym_RPAREN, + STATE(1613), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4004), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50234] = 2, + [50045] = 3, + ACTIONS(3752), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2685), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [50244] = 4, - ACTIONS(3840), 1, + ACTIONS(3963), 2, anon_sym_COMMA, - ACTIONS(3842), 1, anon_sym_GT, - STATE(1583), 1, - aux_sym_type_arguments_repeat1, + [50057] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50258] = 4, - ACTIONS(3745), 1, + ACTIONS(3965), 2, anon_sym_COMMA, - ACTIONS(4006), 1, - anon_sym_PIPE, - STATE(1727), 1, - aux_sym_closure_parameters_repeat1, + anon_sym_RPAREN, + [50069] = 4, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_RBRACE, + STATE(1642), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50272] = 3, - ACTIONS(4008), 1, - anon_sym_COLON, + [50083] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 2, + ACTIONS(3971), 2, anon_sym_COMMA, - anon_sym_PIPE, - [50284] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(4010), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + anon_sym_GT, + [50095] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(3973), 1, + anon_sym_SEMI, + STATE(1174), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50298] = 4, - ACTIONS(3434), 1, + [50109] = 4, + ACTIONS(3975), 1, anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_GT, - STATE(1669), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3978), 1, + anon_sym_RBRACE, + STATE(1608), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50312] = 4, - ACTIONS(3245), 1, - anon_sym_LT, - ACTIONS(4012), 1, + [50123] = 4, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3980), 1, + anon_sym_SEMI, + ACTIONS(3982), 1, anon_sym_EQ, - STATE(2110), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50326] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(4014), 1, + [50137] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(3984), 1, anon_sym_SEMI, - STATE(1067), 1, - sym_block, + STATE(2048), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50340] = 4, - ACTIONS(4016), 1, - anon_sym_RBRACE, - ACTIONS(4018), 1, - anon_sym_COMMA, - STATE(1585), 1, - aux_sym_struct_pattern_repeat1, + [50151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50354] = 4, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(4022), 1, - anon_sym_COMMA, - STATE(1671), 1, - aux_sym_asm_parameters_repeat1, + ACTIONS(2700), 3, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_COLON, + [50161] = 4, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(1756), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50368] = 4, - ACTIONS(779), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, + [50175] = 4, + ACTIONS(3986), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_parameters_repeat1, + ACTIONS(3989), 1, + anon_sym_RPAREN, + STATE(1613), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50382] = 4, - ACTIONS(2144), 1, + [50189] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4010), 1, + ACTIONS(3991), 1, sym_identifier, - STATE(1135), 1, + STATE(643), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50396] = 4, - ACTIONS(3324), 1, + [50203] = 4, + ACTIONS(3311), 1, anon_sym_RBRACE, - ACTIONS(4026), 1, + ACTIONS(3993), 1, anon_sym_COMMA, - STATE(1732), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1717), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50410] = 4, - ACTIONS(4028), 1, - anon_sym_RBRACK, - ACTIONS(4030), 1, - anon_sym_COMMA, - STATE(1790), 1, - aux_sym_attribute_item_repeat1, + [50217] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50424] = 4, - ACTIONS(3324), 1, + ACTIONS(2612), 3, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_COLON, + [50227] = 4, + ACTIONS(3309), 1, anon_sym_RBRACE, - ACTIONS(4026), 1, + ACTIONS(3995), 1, anon_sym_COMMA, - STATE(1734), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1717), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50438] = 4, - ACTIONS(2024), 1, - anon_sym_LBRACE, - ACTIONS(4032), 1, - anon_sym_COLON_COLON, - STATE(726), 1, - sym_field_initializer_list, + [50241] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50452] = 4, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(4034), 1, + ACTIONS(2578), 2, anon_sym_COMMA, - STATE(1680), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_RPAREN, + [50253] = 4, + ACTIONS(773), 1, + anon_sym_RPAREN, + ACTIONS(3997), 1, + anon_sym_COMMA, + STATE(1754), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50466] = 2, + [50267] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(3939), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 3, + [50281] = 4, + ACTIONS(1803), 1, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_EQ_GT, - [50476] = 2, + ACTIONS(3999), 1, + anon_sym_SEMI, + STATE(1109), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4036), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [50486] = 3, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, + [50295] = 3, + ACTIONS(4003), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50498] = 4, - ACTIONS(4038), 1, - anon_sym_RBRACE, - ACTIONS(4040), 1, + ACTIONS(4001), 2, anon_sym_COMMA, - STATE(1647), 1, - aux_sym_use_list_repeat1, + anon_sym_RBRACE, + [50307] = 4, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4008), 1, + anon_sym_RBRACE, + STATE(1623), 1, + aux_sym_asm_content_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50512] = 4, - ACTIONS(1956), 1, + [50321] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4010), 1, + anon_sym_SEMI, + STATE(1113), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50335] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4012), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [50347] = 4, + ACTIONS(1771), 1, anon_sym_RPAREN, - ACTIONS(4043), 1, + ACTIONS(4014), 1, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_tuple_type_repeat1, + STATE(1544), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50526] = 4, - ACTIONS(4045), 1, - anon_sym_RBRACK, - ACTIONS(4047), 1, + [50361] = 4, + ACTIONS(3313), 1, + anon_sym_RBRACE, + ACTIONS(4016), 1, anon_sym_COMMA, - STATE(1649), 1, - aux_sym_attribute_item_repeat1, + STATE(1589), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50540] = 4, - ACTIONS(4030), 1, - anon_sym_COMMA, - ACTIONS(4050), 1, - anon_sym_RBRACK, - STATE(1679), 1, - aux_sym_attribute_item_repeat1, + [50375] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4018), 1, + sym_identifier, + STATE(643), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50554] = 4, - ACTIONS(4052), 1, - anon_sym_RPAREN, - ACTIONS(4054), 1, - anon_sym_COMMA, - STATE(1651), 1, - aux_sym_asm_parameters_repeat1, + [50389] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4018), 1, + sym_identifier, + STATE(652), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50403] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4020), 1, + anon_sym_SEMI, + STATE(1119), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50417] = 3, + ACTIONS(4024), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50568] = 2, + ACTIONS(4022), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50429] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4057), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4026), 2, anon_sym_COMMA, - [50578] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4059), 1, + anon_sym_GT, + [50441] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4028), 1, anon_sym_SEMI, - STATE(2006), 1, - sym_where_clause, + STATE(1128), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50592] = 2, + [50455] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4061), 3, + ACTIONS(4030), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_GT, - [50602] = 4, - ACTIONS(4063), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, + [50465] = 4, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, anon_sym_COMMA, - STATE(1739), 1, - aux_sym_use_list_repeat1, + STATE(1769), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50616] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4067), 1, + [50479] = 4, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + sym_identifier, + STATE(1580), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50493] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4034), 1, anon_sym_SEMI, - STATE(2073), 1, - sym_where_clause, + STATE(1132), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50630] = 2, + [50507] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4069), 3, + ACTIONS(3862), 3, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COMMA, - [50640] = 4, - ACTIONS(3380), 1, + anon_sym_LBRACE, + [50517] = 4, + ACTIONS(3963), 1, anon_sym_GT, - ACTIONS(4071), 1, + ACTIONS(4036), 1, anon_sym_COMMA, - STATE(1603), 1, + STATE(1639), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50654] = 4, - ACTIONS(3402), 1, + [50531] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4039), 1, + sym_identifier, + STATE(825), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50545] = 4, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4041), 1, anon_sym_SEMI, - STATE(286), 1, + STATE(1140), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50668] = 4, - ACTIONS(4075), 1, - sym_identifier, - ACTIONS(4078), 1, + [50559] = 4, + ACTIONS(3319), 1, anon_sym_RBRACE, - STATE(1660), 1, - aux_sym_asm_content_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50682] = 4, - ACTIONS(4030), 1, + ACTIONS(4043), 1, anon_sym_COMMA, - ACTIONS(4080), 1, - anon_sym_RBRACK, - STATE(1649), 1, - aux_sym_attribute_item_repeat1, + STATE(1589), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50696] = 4, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4082), 1, + [50573] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4045), 1, anon_sym_SEMI, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50710] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + STATE(1143), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4086), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [50722] = 4, - ACTIONS(4088), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_COMMA, - STATE(1664), 1, - aux_sym_field_initializer_list_repeat1, + [50587] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4039), 1, + sym_identifier, + STATE(834), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50736] = 4, - ACTIONS(3402), 1, + [50601] = 4, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(4093), 1, + ACTIONS(4047), 1, anon_sym_SEMI, - STATE(291), 1, + STATE(1148), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50750] = 4, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4095), 1, - anon_sym_SEMI, - ACTIONS(4097), 1, - anon_sym_EQ, + [50615] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50764] = 4, - ACTIONS(1797), 1, + ACTIONS(2684), 3, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_COLON, + [50625] = 4, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4049), 1, anon_sym_SEMI, - STATE(1119), 1, + STATE(1152), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50778] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4101), 1, + [50639] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4051), 1, anon_sym_SEMI, - STATE(2018), 1, - sym_where_clause, + STATE(1155), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50792] = 4, - ACTIONS(3368), 1, - anon_sym_GT, - ACTIONS(4103), 1, + [50653] = 4, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(4043), 1, anon_sym_COMMA, - STATE(1603), 1, - aux_sym_type_parameters_repeat1, + STATE(1596), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50806] = 4, - ACTIONS(3243), 1, + [50667] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2690), 3, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_COLON, + [50677] = 4, + ACTIONS(3227), 1, anon_sym_where, - ACTIONS(4105), 1, + ACTIONS(4053), 1, anon_sym_SEMI, - STATE(2139), 1, + STATE(2065), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50820] = 4, - ACTIONS(1725), 1, - anon_sym_RPAREN, - ACTIONS(4107), 1, + [50691] = 4, + ACTIONS(4055), 1, anon_sym_COMMA, - STATE(1651), 1, - aux_sym_asm_parameters_repeat1, + ACTIONS(4057), 1, + anon_sym_RBRACE, + STATE(1617), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50834] = 4, - ACTIONS(657), 1, - anon_sym_RBRACK, - ACTIONS(2556), 1, + [50705] = 4, + ACTIONS(4059), 1, anon_sym_COMMA, - STATE(1609), 1, - aux_sym_array_expression_repeat1, + ACTIONS(4062), 1, + anon_sym_RBRACE, + STATE(1653), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50848] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3201), 1, - anon_sym_LBRACE, - STATE(989), 1, - sym_type_arguments, + [50719] = 4, + ACTIONS(3879), 1, + anon_sym_COMMA, + ACTIONS(4064), 1, + anon_sym_RBRACK, + STATE(1710), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50862] = 4, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(4109), 1, - sym_identifier, - STATE(678), 1, - sym_arguments, + [50733] = 4, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(4066), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50876] = 4, - ACTIONS(2144), 1, + [50747] = 4, + ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4111), 1, + ACTIONS(4068), 1, sym_identifier, - STATE(1135), 1, + STATE(666), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50890] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + [50761] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4068), 1, + sym_identifier, + STATE(668), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4113), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [50902] = 3, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [50775] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50914] = 4, - ACTIONS(3319), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, + ACTIONS(4070), 3, anon_sym_SEMI, - STATE(247), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [50928] = 4, - ACTIONS(4030), 1, anon_sym_COMMA, - ACTIONS(4117), 1, + anon_sym_RBRACE, + [50785] = 4, + ACTIONS(3879), 1, + anon_sym_COMMA, + ACTIONS(4072), 1, anon_sym_RBRACK, - STATE(1649), 1, + STATE(1665), 1, aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50942] = 4, - ACTIONS(4119), 1, - anon_sym_RBRACE, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(1680), 1, - aux_sym_enum_variant_list_repeat2, + [50799] = 3, + ACTIONS(4076), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50956] = 4, - ACTIONS(3348), 1, - anon_sym_RBRACE, - ACTIONS(4124), 1, + ACTIONS(4074), 2, anon_sym_COMMA, - STATE(1680), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_RBRACE, + [50811] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50970] = 2, + ACTIONS(4078), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [50821] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3797), 3, + ACTIONS(4080), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_COMMA, - [50980] = 4, - ACTIONS(3340), 1, anon_sym_RBRACE, - ACTIONS(4126), 1, - anon_sym_COMMA, - STATE(1598), 1, - aux_sym_field_declaration_list_repeat1, + [50831] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4082), 1, + sym_identifier, + STATE(799), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [50994] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + [50845] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4084), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 2, + [50859] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - anon_sym_PIPE, - [51006] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(4128), 1, - anon_sym_SEMI, - STATE(1159), 1, - sym_block, + ACTIONS(4086), 1, + anon_sym_RBRACK, + STATE(1569), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51020] = 4, - ACTIONS(3340), 1, - anon_sym_RBRACE, - ACTIONS(4126), 1, - anon_sym_COMMA, - STATE(1732), 1, - aux_sym_field_declaration_list_repeat1, + [50873] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4084), 1, + sym_identifier, + STATE(1157), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51034] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(4130), 1, + [50887] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(4082), 1, + sym_identifier, + STATE(801), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [50901] = 4, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4088), 1, anon_sym_SEMI, - STATE(1153), 1, - sym_block, + ACTIONS(4090), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51048] = 4, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4132), 1, - anon_sym_if, - ACTIONS(4134), 1, - anon_sym_EQ_GT, + [50915] = 3, + ACTIONS(4094), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51062] = 4, + ACTIONS(4092), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50927] = 4, ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4010), 1, + ACTIONS(4096), 1, sym_identifier, - STATE(633), 1, + STATE(643), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51076] = 4, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(4136), 1, - anon_sym_SEMI, - STATE(1103), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51090] = 4, + [50941] = 4, ACTIONS(1982), 1, anon_sym_LT2, - ACTIONS(4010), 1, + ACTIONS(4096), 1, sym_identifier, - STATE(638), 1, + STATE(652), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51104] = 3, - ACTIONS(3404), 1, + [50955] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4098), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [50965] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3783), 2, - anon_sym_RPAREN, + ACTIONS(4100), 2, anon_sym_COMMA, - [51116] = 4, - ACTIONS(3783), 1, - anon_sym_RPAREN, - ACTIONS(4138), 1, + anon_sym_RBRACE, + [50977] = 4, + ACTIONS(3750), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_parameters_repeat1, + ACTIONS(3754), 1, + anon_sym_GT, + STATE(1789), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51130] = 4, - ACTIONS(4141), 1, - anon_sym_SEMI, - ACTIONS(4143), 1, - anon_sym_COLON, - ACTIONS(4145), 1, - anon_sym_EQ, + [50991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51144] = 4, - ACTIONS(769), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, + ACTIONS(4102), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_parameters_repeat1, + anon_sym_RBRACE, + [51001] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51158] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4104), 3, anon_sym_SEMI, - STATE(387), 1, - sym_block, + anon_sym_COMMA, + anon_sym_RBRACE, + [51011] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51172] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + [51025] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + STATE(1157), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_RPAREN, + [51039] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - [51184] = 4, - ACTIONS(3295), 1, + ACTIONS(4108), 1, + anon_sym_RBRACK, + STATE(1681), 1, + aux_sym_attribute_item_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51053] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(1078), 1, - sym_declaration_list, + STATE(304), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51198] = 4, - ACTIONS(4030), 1, + [51067] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4112), 1, anon_sym_RBRACK, - STATE(1731), 1, + STATE(1569), 1, aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51212] = 3, - ACTIONS(4155), 1, - anon_sym_COLON, + [51081] = 4, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(4116), 1, + anon_sym_RPAREN, + STATE(1613), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 2, + [51095] = 4, + ACTIONS(3309), 1, anon_sym_RBRACE, + ACTIONS(3995), 1, anon_sym_COMMA, - [51224] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, + STATE(1721), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 2, + [51109] = 4, + ACTIONS(2757), 1, anon_sym_RBRACE, + ACTIONS(4118), 1, anon_sym_COMMA, - [51236] = 4, - ACTIONS(1823), 1, - anon_sym_GT, - ACTIONS(4161), 1, - anon_sym_COMMA, - STATE(1709), 1, - aux_sym_type_arguments_repeat1, + STATE(1762), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51250] = 4, - ACTIONS(4163), 1, - anon_sym_RBRACE, - ACTIONS(4165), 1, - anon_sym_COMMA, - STATE(1601), 1, - aux_sym_storage_content_list_repeat1, + [51123] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51264] = 4, - ACTIONS(4167), 1, + ACTIONS(4120), 3, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4169), 1, + [51133] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4068), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51147] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4068), 1, + sym_identifier, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51161] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - STATE(1704), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4122), 1, + anon_sym_RBRACK, + STATE(1690), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51278] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + [51175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4172), 2, + ACTIONS(4124), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_GT, - [51290] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(4174), 1, + anon_sym_RBRACE, + [51185] = 4, + ACTIONS(3879), 1, + anon_sym_COMMA, + ACTIONS(4126), 1, + anon_sym_RBRACK, + STATE(1569), 1, + aux_sym_attribute_item_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51199] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(4128), 1, anon_sym_SEMI, - STATE(1166), 1, - sym_block, + STATE(2053), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51304] = 4, - ACTIONS(2144), 1, + [51213] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(4111), 1, + ACTIONS(4130), 1, sym_identifier, - STATE(1082), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51318] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + [51227] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4132), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4176), 2, - anon_sym_COMMA, - anon_sym_GT, - [51330] = 4, - ACTIONS(4176), 1, - anon_sym_GT, - ACTIONS(4178), 1, - anon_sym_COMMA, - STATE(1709), 1, - aux_sym_type_arguments_repeat1, + [51241] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4132), 1, + sym_identifier, + STATE(1157), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51344] = 4, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4181), 1, + [51255] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4134), 3, anon_sym_SEMI, - ACTIONS(4183), 1, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + [51265] = 4, + ACTIONS(451), 1, + anon_sym_RPAREN, + ACTIONS(2586), 1, + anon_sym_COMMA, + STATE(1577), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51358] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + [51279] = 4, + ACTIONS(1982), 1, + anon_sym_LT2, + ACTIONS(3991), 1, + sym_identifier, + STATE(652), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4086), 2, - anon_sym_RPAREN, + [51293] = 4, + ACTIONS(651), 1, + anon_sym_RBRACK, + ACTIONS(2576), 1, anon_sym_COMMA, - [51370] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + STATE(1736), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4185), 2, - anon_sym_COMMA, - anon_sym_GT, - [51382] = 4, - ACTIONS(3319), 1, + [51307] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(4187), 1, + ACTIONS(4136), 1, anon_sym_SEMI, - STATE(374), 1, - sym_declaration_list, + STATE(326), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51396] = 4, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(3620), 1, + [51321] = 3, + ACTIONS(3489), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51333] = 4, + ACTIONS(4138), 1, anon_sym_COMMA, - STATE(1637), 1, - aux_sym_parameters_repeat1, + ACTIONS(4140), 1, + anon_sym_RBRACE, + STATE(1726), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51410] = 4, - ACTIONS(1982), 1, + [51347] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(3971), 1, + ACTIONS(3493), 1, sym_identifier, - STATE(642), 1, + STATE(1130), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51424] = 4, - ACTIONS(4189), 1, - anon_sym_SEMI, - ACTIONS(4191), 1, - anon_sym_COLON, - ACTIONS(4193), 1, - anon_sym_EQ, + [51361] = 4, + ACTIONS(2006), 1, + anon_sym_LBRACE, + ACTIONS(4142), 1, + anon_sym_COLON_COLON, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51438] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(4195), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [51375] = 4, + ACTIONS(4144), 1, + anon_sym_COMMA, + ACTIONS(4146), 1, + anon_sym_RPAREN, + STATE(1732), 1, + aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51452] = 4, - ACTIONS(4197), 1, - anon_sym_RPAREN, - ACTIONS(4199), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [51389] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4148), 1, + anon_sym_SEMI, + STATE(1012), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51466] = 4, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(3620), 1, + [51403] = 4, + ACTIONS(3326), 1, + anon_sym_RBRACE, + ACTIONS(4150), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_parameters_repeat1, + STATE(1608), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51480] = 3, - ACTIONS(3743), 1, - anon_sym_COLON, + [51417] = 3, + ACTIONS(3549), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4201), 2, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51429] = 4, + ACTIONS(3814), 1, anon_sym_COMMA, - anon_sym_PIPE, - [51492] = 4, - ACTIONS(4203), 1, - anon_sym_RBRACE, - ACTIONS(4205), 1, + ACTIONS(3816), 1, + anon_sym_GT, + STATE(1794), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51443] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4152), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51457] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - STATE(1639), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4154), 1, + anon_sym_RBRACK, + STATE(1569), 1, + aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51506] = 4, - ACTIONS(1982), 1, + [51471] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(4207), 1, + ACTIONS(3493), 1, sym_identifier, - STATE(828), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51520] = 4, - ACTIONS(3289), 1, - anon_sym_RBRACE, - ACTIONS(4209), 1, - anon_sym_COMMA, - STATE(1643), 1, - aux_sym_enum_variant_list_repeat2, + [51485] = 4, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(4156), 1, + anon_sym_SEMI, + STATE(313), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51534] = 4, - ACTIONS(3289), 1, - anon_sym_RBRACE, - ACTIONS(4209), 1, - anon_sym_COMMA, - STATE(1680), 1, - aux_sym_enum_variant_list_repeat2, + [51499] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4158), 1, + anon_sym_SEMI, + STATE(345), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51548] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + [51513] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(4160), 1, + anon_sym_SEMI, + STATE(2104), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4211), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51560] = 4, - ACTIONS(1982), 1, + [51527] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(4207), 1, + ACTIONS(4162), 1, sym_identifier, - STATE(818), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51574] = 4, - ACTIONS(4201), 1, - anon_sym_PIPE, - ACTIONS(4213), 1, + [51541] = 4, + ACTIONS(3533), 1, anon_sym_COMMA, - STATE(1727), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(3535), 1, + anon_sym_GT, + STATE(1571), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51588] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4216), 1, + [51555] = 4, + ACTIONS(4164), 1, + anon_sym_COMMA, + ACTIONS(4167), 1, + anon_sym_RBRACE, + STATE(1717), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51569] = 4, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(2038), 1, - sym_where_clause, + STATE(249), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51602] = 4, - ACTIONS(2144), 1, + [51583] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(4195), 1, - sym_identifier, - STATE(1135), 1, + ACTIONS(3219), 1, + anon_sym_LBRACE, + STATE(983), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51616] = 4, - ACTIONS(4218), 1, + [51597] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4012), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4220), 1, + [51609] = 4, + ACTIONS(3356), 1, + anon_sym_RBRACE, + ACTIONS(4171), 1, anon_sym_COMMA, - STATE(1730), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1717), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51630] = 4, - ACTIONS(4030), 1, + [51623] = 4, + ACTIONS(3879), 1, anon_sym_COMMA, - ACTIONS(4223), 1, + ACTIONS(4173), 1, anon_sym_RBRACK, - STATE(1649), 1, + STATE(1564), 1, aux_sym_attribute_item_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51644] = 4, - ACTIONS(4225), 1, - anon_sym_RBRACE, - ACTIONS(4227), 1, + [51637] = 3, + ACTIONS(4175), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, anon_sym_COMMA, - STATE(1732), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_PIPE, + [51649] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51658] = 4, - ACTIONS(265), 1, + ACTIONS(2664), 3, + anon_sym_where, anon_sym_LBRACE, - ACTIONS(3404), 1, - anon_sym_PLUS, - STATE(691), 1, - sym_block, + anon_sym_COLON, + [51659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51672] = 4, - ACTIONS(3287), 1, + ACTIONS(2668), 3, + anon_sym_where, + anon_sym_LBRACE, + anon_sym_COLON, + [51669] = 4, + ACTIONS(3348), 1, anon_sym_RBRACE, - ACTIONS(4230), 1, + ACTIONS(4177), 1, anon_sym_COMMA, - STATE(1732), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1608), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51686] = 2, + [51683] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4232), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4179), 2, anon_sym_COMMA, - [51696] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4234), 1, + anon_sym_RBRACE, + [51695] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4181), 1, anon_sym_SEMI, - STATE(2111), 1, - sym_where_clause, + STATE(296), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51710] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(4236), 1, - sym_identifier, - STATE(1135), 1, - sym_type_arguments, + [51709] = 4, + ACTIONS(1964), 1, + anon_sym_RPAREN, + ACTIONS(4183), 1, + anon_sym_COMMA, + STATE(1763), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51724] = 2, + [51723] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3776), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51735] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4238), 3, + ACTIONS(4185), 3, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COMMA, - [51734] = 4, - ACTIONS(2639), 1, anon_sym_RBRACE, - ACTIONS(4240), 1, + [51745] = 4, + ACTIONS(1753), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, anon_sym_COMMA, - STATE(1647), 1, - aux_sym_use_list_repeat1, + STATE(1772), 1, + aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51748] = 4, - ACTIONS(2024), 1, + [51759] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(4189), 1, + anon_sym_SEMI, + STATE(2075), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51773] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(4242), 1, - anon_sym_COLON_COLON, - STATE(726), 1, - sym_field_initializer_list, + ACTIONS(4191), 1, + anon_sym_SEMI, + STATE(273), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51762] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(4236), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [51787] = 4, + ACTIONS(4193), 1, + anon_sym_SEMI, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51776] = 4, - ACTIONS(4030), 1, - anon_sym_COMMA, - ACTIONS(4244), 1, + [51801] = 4, + ACTIONS(2736), 1, anon_sym_RBRACK, - STATE(1649), 1, - aux_sym_attribute_item_repeat1, + ACTIONS(4199), 1, + anon_sym_COMMA, + STATE(1736), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51790] = 4, - ACTIONS(3404), 1, + [51815] = 3, + ACTIONS(3780), 1, anon_sym_PLUS, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51804] = 2, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_GT, + [51827] = 4, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, + anon_sym_COMMA, + STATE(1754), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2703), 3, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - [51814] = 4, - ACTIONS(1982), 1, + [51841] = 4, + ACTIONS(2044), 1, anon_sym_LT2, - ACTIONS(4250), 1, + ACTIONS(4162), 1, sym_identifier, - STATE(796), 1, + STATE(1130), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51828] = 4, - ACTIONS(3729), 1, - anon_sym_COMMA, - ACTIONS(3733), 1, + [51855] = 4, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(4204), 1, + anon_sym_as, + ACTIONS(4206), 1, anon_sym_GT, - STATE(1776), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51842] = 2, + [51869] = 4, + ACTIONS(3414), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, + anon_sym_SEMI, + STATE(317), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2695), 3, - anon_sym_COLON, + [51883] = 4, + ACTIONS(4210), 1, anon_sym_LBRACE, - anon_sym_where, - [51852] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(4250), 1, - sym_identifier, - STATE(803), 1, - sym_type_arguments, + ACTIONS(4212), 1, + anon_sym_DOT, + STATE(395), 1, + sym_storage_content_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51866] = 2, + [51897] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4214), 1, + anon_sym_SEMI, + STATE(298), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4252), 3, - anon_sym_SEMI, + [51911] = 4, + ACTIONS(3591), 1, + sym_identifier, + ACTIONS(4216), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [51876] = 2, + STATE(1623), 1, + aux_sym_asm_content_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4254), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [51925] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4218), 2, anon_sym_COMMA, - [51886] = 4, - ACTIONS(3402), 1, + anon_sym_GT, + [51937] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - ACTIONS(4256), 1, + ACTIONS(4220), 1, anon_sym_SEMI, - STATE(306), 1, + STATE(334), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51900] = 2, + [51951] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3860), 2, anon_sym_COMMA, - [51910] = 4, - ACTIONS(3295), 1, - anon_sym_LBRACE, - ACTIONS(4260), 1, - anon_sym_SEMI, - STATE(1146), 1, - sym_declaration_list, + anon_sym_RPAREN, + [51963] = 4, + ACTIONS(663), 1, + anon_sym_RBRACK, + ACTIONS(4222), 1, + anon_sym_COMMA, + STATE(1736), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51924] = 3, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, + [51977] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51936] = 2, + ACTIONS(3869), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [51989] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4262), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4224), 2, anon_sym_COMMA, - [51946] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4264), 1, + anon_sym_RBRACE, + [52001] = 4, + ACTIONS(4226), 1, anon_sym_SEMI, - STATE(256), 1, - sym_block, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51960] = 3, - ACTIONS(3404), 1, + [52015] = 4, + ACTIONS(3406), 1, anon_sym_PLUS, + ACTIONS(4232), 1, + anon_sym_SEMI, + ACTIONS(4234), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4266), 2, - anon_sym_RBRACE, + [52029] = 4, + ACTIONS(4236), 1, anon_sym_COMMA, - [51972] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4268), 1, - anon_sym_SEMI, - STATE(303), 1, - sym_block, + ACTIONS(4238), 1, + anon_sym_RBRACE, + STATE(1574), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51986] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4270), 1, - anon_sym_SEMI, - STATE(2180), 1, - sym_where_clause, + [52043] = 4, + ACTIONS(3860), 1, + anon_sym_RPAREN, + ACTIONS(4240), 1, + anon_sym_COMMA, + STATE(1754), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52000] = 2, + [52057] = 4, + ACTIONS(4243), 1, + anon_sym_COMMA, + ACTIONS(4245), 1, + anon_sym_RBRACE, + STATE(1706), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [52010] = 4, - ACTIONS(3745), 1, - anon_sym_COMMA, - ACTIONS(4274), 1, - anon_sym_PIPE, - STATE(1629), 1, - aux_sym_closure_parameters_repeat1, + [52071] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52024] = 4, - ACTIONS(3243), 1, - anon_sym_where, - ACTIONS(4276), 1, + ACTIONS(4247), 3, anon_sym_SEMI, - STATE(2119), 1, - sym_where_clause, + anon_sym_COMMA, + anon_sym_LBRACE, + [52081] = 3, + ACTIONS(3850), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52038] = 4, - ACTIONS(3235), 1, - anon_sym_RBRACE, - ACTIONS(4278), 1, + ACTIONS(4249), 2, anon_sym_COMMA, - STATE(1664), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_PIPE, + [52093] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52052] = 4, - ACTIONS(4280), 1, + ACTIONS(2763), 3, anon_sym_LBRACE, - ACTIONS(4282), 1, - anon_sym_DOT, - STATE(277), 1, - sym_storage_content_list, + anon_sym_AMP_AMP, + anon_sym_EQ_GT, + [52103] = 4, + ACTIONS(3848), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_PIPE, + STATE(1760), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52066] = 4, - ACTIONS(4030), 1, + [52117] = 4, + ACTIONS(4249), 1, + anon_sym_PIPE, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_RBRACK, - STATE(1742), 1, - aux_sym_attribute_item_repeat1, + STATE(1760), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52080] = 3, - ACTIONS(3404), 1, + [52131] = 4, + ACTIONS(283), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, anon_sym_PLUS, + STATE(678), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3717), 2, - anon_sym_RPAREN, + [52145] = 4, + ACTIONS(4256), 1, anon_sym_COMMA, - [52092] = 4, - ACTIONS(4286), 1, + ACTIONS(4259), 1, anon_sym_RBRACE, - ACTIONS(4288), 1, + STATE(1762), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52159] = 4, + ACTIONS(3922), 1, + anon_sym_RPAREN, + ACTIONS(4261), 1, anon_sym_COMMA, - STATE(1686), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1763), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52106] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - sym_identifier, - STATE(642), 1, - sym_type_arguments, + [52173] = 4, + ACTIONS(4264), 1, + anon_sym_COMMA, + ACTIONS(4266), 1, + anon_sym_RBRACE, + STATE(1778), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52120] = 4, - ACTIONS(4292), 1, + [52187] = 4, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4294), 1, - anon_sym_COLON, - ACTIONS(4296), 1, + ACTIONS(4270), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52134] = 4, - ACTIONS(3392), 1, - anon_sym_GT, - ACTIONS(4298), 1, + [52201] = 4, + ACTIONS(3680), 1, anon_sym_COMMA, - STATE(1603), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3682), 1, + anon_sym_RPAREN, + STATE(1578), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52148] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4300), 1, - anon_sym_SEMI, - STATE(232), 1, - sym_block, + [52215] = 4, + ACTIONS(3285), 1, + anon_sym_RBRACE, + ACTIONS(4272), 1, + anon_sym_COMMA, + STATE(1653), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52162] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4302), 1, - anon_sym_SEMI, - STATE(330), 1, - sym_block, + [52229] = 3, + ACTIONS(4276), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52176] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, + ACTIONS(4274), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52241] = 4, + ACTIONS(779), 1, + anon_sym_RPAREN, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(1754), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, - anon_sym_RBRACE, + [52255] = 4, + ACTIONS(1765), 1, + anon_sym_RBRACK, + ACTIONS(4280), 1, anon_sym_COMMA, - [52188] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, + STATE(1544), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4306), 2, - anon_sym_COMMA, - anon_sym_GT, - [52200] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3408), 1, - sym_identifier, - STATE(1135), 1, - sym_type_arguments, + [52269] = 4, + ACTIONS(1803), 1, + anon_sym_LBRACE, + ACTIONS(4282), 1, + anon_sym_SEMI, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52214] = 4, - ACTIONS(3372), 1, - anon_sym_GT, - ACTIONS(4308), 1, + [52283] = 4, + ACTIONS(4284), 1, anon_sym_COMMA, - STATE(1603), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4287), 1, + anon_sym_RPAREN, + STATE(1772), 1, + aux_sym_asm_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52228] = 3, - ACTIONS(3514), 1, + [52297] = 3, + ACTIONS(3547), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 2, + ACTIONS(2958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52240] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4310), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_block, + [52309] = 4, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3782), 1, + anon_sym_GT, + STATE(1587), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52254] = 4, - ACTIONS(3319), 1, - anon_sym_LBRACE, - ACTIONS(4312), 1, - anon_sym_SEMI, - STATE(394), 1, - sym_declaration_list, + [52323] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(2980), 1, + anon_sym_COLON_COLON, + STATE(982), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52268] = 4, - ACTIONS(3404), 1, + [52337] = 4, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(4314), 1, + ACTIONS(4289), 1, anon_sym_SEMI, - ACTIONS(4316), 1, - anon_sym_EQ, + ACTIONS(4291), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52282] = 4, - ACTIONS(1982), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - sym_identifier, - STATE(665), 1, - sym_type_arguments, + [52351] = 4, + ACTIONS(4293), 1, + anon_sym_SEMI, + ACTIONS(4295), 1, + anon_sym_EQ, + ACTIONS(4297), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52296] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, + [52365] = 4, + ACTIONS(3279), 1, + anon_sym_RBRACE, + ACTIONS(4299), 1, + anon_sym_COMMA, + STATE(1791), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [52308] = 4, - ACTIONS(4320), 1, - anon_sym_RBRACE, - ACTIONS(4322), 1, - anon_sym_COMMA, - STATE(1724), 1, - aux_sym_enum_variant_list_repeat2, + [52379] = 4, + ACTIONS(3233), 1, + anon_sym_LT, + ACTIONS(4301), 1, + anon_sym_EQ, + STATE(2094), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52322] = 3, - ACTIONS(3404), 1, + [52393] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 2, - anon_sym_RPAREN, + ACTIONS(4303), 2, anon_sym_COMMA, - [52334] = 4, - ACTIONS(3295), 1, + anon_sym_RPAREN, + [52405] = 4, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(4326), 1, - anon_sym_SEMI, - STATE(1034), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52348] = 3, - ACTIONS(4328), 1, - anon_sym_COLON, + ACTIONS(4305), 1, + anon_sym_COLON_COLON, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 2, - anon_sym_RBRACE, + [52419] = 4, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(4307), 1, anon_sym_COMMA, - [52360] = 4, - ACTIONS(3245), 1, - anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ, - STATE(2179), 1, - sym_type_parameters, + STATE(1763), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52374] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4334), 1, - anon_sym_SEMI, - STATE(401), 1, - sym_block, + [52433] = 3, + ACTIONS(4311), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52388] = 4, - ACTIONS(3402), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52445] = 4, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4313), 1, anon_sym_SEMI, - STATE(399), 1, - sym_block, + ACTIONS(4315), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52402] = 4, - ACTIONS(4030), 1, + [52459] = 4, + ACTIONS(4317), 1, anon_sym_COMMA, - ACTIONS(4338), 1, - anon_sym_RBRACK, - STATE(1649), 1, - aux_sym_attribute_item_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52416] = 4, - ACTIONS(3636), 1, + ACTIONS(4319), 1, anon_sym_RPAREN, - ACTIONS(3638), 1, - anon_sym_COMMA, - STATE(1719), 1, - aux_sym_parameters_repeat1, + STATE(1613), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52430] = 4, - ACTIONS(2144), 1, - anon_sym_LT2, - ACTIONS(3408), 1, - sym_identifier, - STATE(1082), 1, - sym_type_arguments, + [52473] = 3, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52444] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, + ACTIONS(2958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52485] = 4, + ACTIONS(3388), 1, + anon_sym_GT, + ACTIONS(4321), 1, + anon_sym_COMMA, + STATE(1639), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4340), 2, - anon_sym_RBRACE, + [52499] = 4, + ACTIONS(1769), 1, + anon_sym_RPAREN, + ACTIONS(4323), 1, anon_sym_COMMA, - [52456] = 4, - ACTIONS(1797), 1, - anon_sym_LBRACE, - ACTIONS(4342), 1, - anon_sym_SEMI, - STATE(1009), 1, - sym_block, + STATE(1544), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52470] = 4, - ACTIONS(4030), 1, + [52513] = 4, + ACTIONS(3390), 1, + anon_sym_GT, + ACTIONS(4325), 1, anon_sym_COMMA, - ACTIONS(4344), 1, - anon_sym_RBRACK, - STATE(1661), 1, - aux_sym_attribute_item_repeat1, + STATE(1639), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52484] = 4, - ACTIONS(3691), 1, - anon_sym_COMMA, - ACTIONS(3695), 1, - anon_sym_GT, - STATE(1702), 1, - aux_sym_type_arguments_repeat1, + [52527] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52498] = 4, - ACTIONS(4346), 1, - anon_sym_RPAREN, - ACTIONS(4348), 1, + ACTIONS(4327), 3, anon_sym_COMMA, - STATE(1730), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_EQ, + anon_sym_GT, + [52537] = 4, + ACTIONS(4329), 1, + anon_sym_COMMA, + ACTIONS(4332), 1, + anon_sym_RBRACE, + STATE(1791), 1, + aux_sym_storage_content_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52512] = 4, - ACTIONS(3693), 1, + [52551] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(4350), 1, - anon_sym_as, - ACTIONS(4352), 1, - anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52526] = 4, - ACTIONS(3245), 1, + ACTIONS(4334), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52563] = 4, + ACTIONS(3233), 1, anon_sym_LT, - ACTIONS(4354), 1, + ACTIONS(4336), 1, anon_sym_EQ, STATE(2182), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52540] = 4, - ACTIONS(1954), 1, - anon_sym_RPAREN, - ACTIONS(4356), 1, + [52577] = 4, + ACTIONS(1823), 1, + anon_sym_GT, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(1592), 1, - aux_sym_tuple_type_repeat1, + STATE(1583), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52554] = 3, - ACTIONS(21), 1, + [52591] = 4, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(76), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52565] = 2, + ACTIONS(4340), 1, + anon_sym_SEMI, + STATE(1042), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4045), 2, - anon_sym_RBRACK, + [52605] = 4, + ACTIONS(3374), 1, + anon_sym_GT, + ACTIONS(4342), 1, anon_sym_COMMA, - [52574] = 2, + STATE(1639), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 2, - anon_sym_SEMI, - anon_sym_where, - [52583] = 3, - ACTIONS(3245), 1, + [52619] = 4, + ACTIONS(3233), 1, anon_sym_LT, - STATE(615), 1, + ACTIONS(4344), 1, + anon_sym_EQ, + STATE(2185), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52594] = 3, - ACTIONS(4280), 1, + [52633] = 4, + ACTIONS(4346), 1, + anon_sym_COMMA, + ACTIONS(4348), 1, + anon_sym_RBRACE, + STATE(1767), 1, + aux_sym_field_initializer_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52647] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(395), 1, - sym_storage_content_list, + ACTIONS(4350), 1, + anon_sym_SEMI, + STATE(294), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52605] = 2, + [52661] = 4, + ACTIONS(3227), 1, + anon_sym_where, + ACTIONS(4352), 1, + anon_sym_SEMI, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4360), 2, - anon_sym_RBRACE, - sym_identifier, - [52614] = 3, - ACTIONS(3498), 1, + [52675] = 4, + ACTIONS(3414), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_enum_variant_list, + ACTIONS(4354), 1, + anon_sym_SEMI, + STATE(329), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52625] = 3, - ACTIONS(3616), 1, + [52689] = 4, + ACTIONS(3848), 1, + anon_sym_COMMA, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4362), 1, - anon_sym_in, + STATE(1759), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52636] = 3, - ACTIONS(4364), 1, - anon_sym_for, - ACTIONS(4366), 1, - anon_sym_while, + [52703] = 4, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4360), 1, + anon_sym_RBRACE, + STATE(1599), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52647] = 3, - ACTIONS(2137), 1, - anon_sym_LPAREN, - STATE(1413), 1, - sym_parameters, + [52717] = 4, + ACTIONS(2044), 1, + anon_sym_LT2, + ACTIONS(4130), 1, + sym_identifier, + STATE(1130), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52658] = 3, - ACTIONS(3616), 1, + [52731] = 3, + ACTIONS(3583), 1, anon_sym_PIPE, - ACTIONS(4368), 1, + ACTIONS(4362), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52669] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4370), 1, - anon_sym_in, + [52742] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52680] = 3, - ACTIONS(3035), 1, - anon_sym_COLON_COLON, - ACTIONS(4372), 1, - anon_sym_RPAREN, + ACTIONS(4062), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52751] = 3, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52691] = 3, - ACTIONS(3342), 1, - anon_sym_COLON_COLON, - ACTIONS(4374), 1, - anon_sym_RPAREN, + [52762] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4364), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52702] = 3, - ACTIONS(3338), 1, + [52773] = 3, + ACTIONS(3017), 1, anon_sym_COLON_COLON, - ACTIONS(4374), 1, + ACTIONS(4366), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52713] = 3, - ACTIONS(3336), 1, + [52784] = 3, + ACTIONS(3344), 1, anon_sym_COLON_COLON, - ACTIONS(4374), 1, + ACTIONS(4368), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52724] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4376), 2, - sym_identifier, - sym_metavariable, - [52733] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2152), 1, - sym_block, + [52795] = 3, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(4368), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52744] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2177), 1, - sym_block, + [52806] = 3, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(4368), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52755] = 2, + [52817] = 3, + ACTIONS(3017), 1, + anon_sym_COLON_COLON, + ACTIONS(4370), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4378), 2, - anon_sym_SEMI, - anon_sym_where, - [52764] = 3, - ACTIONS(3241), 1, + [52828] = 3, + ACTIONS(3237), 1, anon_sym_LBRACE, - STATE(994), 1, + STATE(1051), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52775] = 3, + [52839] = 3, ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1073), 1, + STATE(1052), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52786] = 3, + [52850] = 3, ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(1076), 1, + STATE(1053), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52797] = 3, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_declaration_list, + [52861] = 3, + ACTIONS(3344), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52808] = 3, - ACTIONS(3404), 1, + [52872] = 3, + ACTIONS(3406), 1, anon_sym_PLUS, - ACTIONS(4380), 1, + ACTIONS(4374), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52819] = 3, - ACTIONS(3241), 1, - anon_sym_LBRACE, - STATE(1023), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52830] = 3, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_enum_variant_list, + [52883] = 3, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52841] = 3, - ACTIONS(4382), 1, - anon_sym_for, - ACTIONS(4384), 1, - anon_sym_while, + [52894] = 3, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52852] = 3, - ACTIONS(1976), 1, - anon_sym_LPAREN, - STATE(637), 1, - sym_parameters, + [52905] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52863] = 2, + ACTIONS(4376), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52914] = 3, + ACTIONS(3447), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, - sym_identifier, - sym_metavariable, - [52872] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4388), 1, - anon_sym_EQ, + [52925] = 3, + ACTIONS(3509), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52883] = 2, + [52936] = 3, + ACTIONS(3237), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4390), 2, - anon_sym_SEMI, - anon_sym_where, - [52892] = 3, - ACTIONS(3498), 1, + [52947] = 3, + ACTIONS(3509), 1, anon_sym_LBRACE, - STATE(1118), 1, + STATE(376), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52903] = 2, + [52958] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4392), 2, - anon_sym_SEMI, - anon_sym_where, - [52912] = 2, + [52969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4394), 2, - anon_sym_SEMI, - anon_sym_where, - [52921] = 3, - ACTIONS(3241), 1, + ACTIONS(3776), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52978] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(1127), 1, - sym_field_declaration_list, + STATE(683), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52932] = 2, + [52989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4396), 2, + ACTIONS(4378), 2, anon_sym_SEMI, anon_sym_where, - [52941] = 3, - ACTIONS(3295), 1, + [52998] = 3, + ACTIONS(2775), 1, anon_sym_LBRACE, - STATE(1147), 1, - sym_declaration_list, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52952] = 3, - ACTIONS(3498), 1, + [53009] = 3, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 1, anon_sym_LBRACE, - STATE(1089), 1, - sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52963] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4398), 1, - anon_sym_in, + [53020] = 3, + ACTIONS(3229), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52974] = 3, - ACTIONS(265), 1, + [53031] = 3, + ACTIONS(69), 1, anon_sym_LBRACE, - STATE(673), 1, + STATE(42), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52985] = 2, + [53042] = 3, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(281), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4400), 2, - anon_sym_SEMI, - anon_sym_where, - [52994] = 2, + [53053] = 3, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, - sym_identifier, - sym_metavariable, - [53003] = 2, + [53064] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4384), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4404), 2, - sym_identifier, - sym_metavariable, - [53012] = 2, + [53075] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1419), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4406), 2, - anon_sym_SEMI, - anon_sym_where, - [53021] = 2, + [53086] = 3, + ACTIONS(4386), 1, + sym_identifier, + ACTIONS(4388), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53030] = 2, + [53097] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4408), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53039] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4410), 1, - anon_sym_SEMI, + [53108] = 3, + ACTIONS(3229), 1, + anon_sym_LBRACE, + STATE(401), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53050] = 3, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_declaration_list, + [53119] = 3, + ACTIONS(4392), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53061] = 2, + [53130] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 2, + ACTIONS(4396), 2, anon_sym_COMMA, - anon_sym_GT, - [53070] = 3, - ACTIONS(4412), 1, + anon_sym_RPAREN, + [53139] = 3, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(669), 1, - sym_asm_block, + STATE(402), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53081] = 3, - ACTIONS(265), 1, + [53150] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1209), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53161] = 3, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(700), 1, - sym_block, + STATE(403), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53092] = 3, - ACTIONS(3293), 1, - anon_sym_COLON, - STATE(1570), 1, - sym_trait_bounds, + [53172] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4398), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53103] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, - anon_sym_EQ, + [53183] = 3, + ACTIONS(4400), 1, + anon_sym_for, + ACTIONS(4402), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53114] = 2, + [53194] = 3, + ACTIONS(1982), 1, + anon_sym_LT2, + STATE(697), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4416), 2, - anon_sym_const, - sym_mutable_specifier, - [53123] = 3, - ACTIONS(1976), 1, - anon_sym_LPAREN, - STATE(644), 1, - sym_parameters, + [53205] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53134] = 3, - ACTIONS(4418), 1, - anon_sym_LPAREN, - STATE(1946), 1, - sym_asm_parameters, + [53216] = 3, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1086), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53145] = 3, - ACTIONS(4420), 1, - anon_sym_LBRACK, - ACTIONS(4422), 1, - anon_sym_BANG, + [53227] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4404), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53156] = 3, - ACTIONS(4418), 1, + [53238] = 3, + ACTIONS(2124), 1, anon_sym_LPAREN, - STATE(1961), 1, - sym_asm_parameters, + STATE(699), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53167] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_block, + [53249] = 3, + ACTIONS(2180), 1, + anon_sym_COLON, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53178] = 3, - ACTIONS(4424), 1, - anon_sym_AMP_AMP, - ACTIONS(4426), 1, - anon_sym_EQ_GT, + [53260] = 3, + ACTIONS(2184), 1, + anon_sym_COLON, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53189] = 3, - ACTIONS(2795), 1, - anon_sym_EQ_GT, - ACTIONS(4424), 1, - anon_sym_AMP_AMP, + [53271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53200] = 3, - ACTIONS(265), 1, + ACTIONS(4406), 2, + sym_identifier, + sym_metavariable, + [53280] = 3, + ACTIONS(4408), 1, anon_sym_LBRACE, - STATE(2031), 1, - sym_block, + STATE(71), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53211] = 3, - ACTIONS(83), 1, - anon_sym_PIPE, - STATE(101), 1, - sym_closure_parameters, + [53291] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53222] = 3, - ACTIONS(265), 1, + ACTIONS(4410), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53300] = 3, + ACTIONS(3447), 1, anon_sym_LBRACE, - STATE(2055), 1, - sym_block, + STATE(1094), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53233] = 3, - ACTIONS(1797), 1, + [53311] = 3, + ACTIONS(3237), 1, anon_sym_LBRACE, - STATE(1243), 1, - sym_block, + STATE(1097), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53244] = 3, - ACTIONS(3319), 1, + [53322] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(284), 1, + STATE(1098), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53255] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2051), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53266] = 3, - ACTIONS(265), 1, + [53333] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(2067), 1, - sym_block, + STATE(1099), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53277] = 3, - ACTIONS(83), 1, + [53344] = 3, + ACTIONS(3579), 1, + anon_sym_COLON, + ACTIONS(3583), 1, anon_sym_PIPE, - STATE(95), 1, - sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53288] = 3, - ACTIONS(2137), 1, - anon_sym_LPAREN, - STATE(1401), 1, - sym_parameters, + [53355] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4412), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53299] = 3, - ACTIONS(2024), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_initializer_list, + [53366] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53310] = 2, + ACTIONS(4414), 2, + anon_sym_SEMI, + anon_sym_where, + [53375] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [53319] = 3, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_declaration_list, + ACTIONS(4416), 2, + anon_sym_SEMI, + anon_sym_where, + [53384] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53330] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4428), 1, + ACTIONS(4418), 2, anon_sym_SEMI, + anon_sym_where, + [53393] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53341] = 2, + ACTIONS(4420), 2, + anon_sym_const, + sym_mutable_specifier, + [53402] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4225), 2, - anon_sym_RBRACE, + ACTIONS(4167), 2, anon_sym_COMMA, - [53350] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4430), 1, - anon_sym_SEMI, + anon_sym_RBRACE, + [53411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53361] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2086), 1, - sym_block, + ACTIONS(4422), 2, + anon_sym_SEMI, + anon_sym_where, + [53420] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53372] = 3, - ACTIONS(2137), 1, - anon_sym_LPAREN, - STATE(1201), 1, - sym_parameters, + ACTIONS(4424), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [53429] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53383] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2087), 1, - sym_block, + ACTIONS(4426), 2, + anon_sym_RBRACE, + sym_identifier, + [53438] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4428), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53394] = 3, - ACTIONS(2094), 1, - anon_sym_LPAREN, - STATE(678), 1, - sym_arguments, + [53449] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53405] = 3, - ACTIONS(265), 1, + ACTIONS(4430), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [53458] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(2025), 1, - sym_block, + STATE(1123), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53416] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_block, + [53469] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4432), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53427] = 3, - ACTIONS(3249), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_field_declaration_list, + [53480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53438] = 3, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_declaration_list, + ACTIONS(3860), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53489] = 3, + ACTIONS(2124), 1, + anon_sym_LPAREN, + STATE(691), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53449] = 3, - ACTIONS(3498), 1, + [53500] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(1066), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53460] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4432), 2, - anon_sym_SEMI, - anon_sym_where, - [53469] = 2, + STATE(675), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4434), 2, - anon_sym_SEMI, - anon_sym_where, - [53478] = 3, - ACTIONS(3241), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_field_declaration_list, + [53511] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53489] = 3, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1027), 1, - sym_declaration_list, + ACTIONS(3963), 2, + anon_sym_COMMA, + anon_sym_GT, + [53520] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53500] = 3, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_declaration_list, + ACTIONS(4434), 2, + sym_identifier, + sym_metavariable, + [53529] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1211), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53511] = 2, - ACTIONS(3), 2, + [53540] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1689), 1, sym_line_comment, - ACTIONS(4436), 2, + ACTIONS(4436), 1, anon_sym_SEMI, - anon_sym_where, - [53520] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, ACTIONS(4438), 1, - anon_sym_SEMI, + anon_sym_SPACE, + [53553] = 3, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53531] = 3, - ACTIONS(2137), 1, - anon_sym_LPAREN, - STATE(1426), 1, - sym_parameters, + [53564] = 3, + ACTIONS(4440), 1, + sym_identifier, + ACTIONS(4442), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53542] = 3, - ACTIONS(2094), 1, - anon_sym_LPAREN, - STATE(721), 1, - sym_arguments, + [53575] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53553] = 3, - ACTIONS(265), 1, + ACTIONS(4444), 2, + anon_sym_RBRACE, + sym_identifier, + [53584] = 3, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(2130), 1, + STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53564] = 3, - ACTIONS(265), 1, + [53595] = 3, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(2158), 1, + STATE(209), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53575] = 3, - ACTIONS(1982), 1, - anon_sym_LT2, - STATE(723), 1, - sym_type_arguments, + [53606] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53586] = 3, - ACTIONS(4440), 1, - anon_sym_for, - ACTIONS(4442), 1, - anon_sym_while, + ACTIONS(4446), 2, + anon_sym_const, + sym_mutable_specifier, + [53615] = 3, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53597] = 3, - ACTIONS(265), 1, + [53626] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(2156), 1, + STATE(1996), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53608] = 2, + [53637] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4176), 2, + ACTIONS(3911), 2, anon_sym_COMMA, anon_sym_GT, - [53617] = 2, + [53646] = 3, + ACTIONS(4448), 1, + anon_sym_LBRACE, + STATE(1159), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4167), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53626] = 2, + [53657] = 3, + ACTIONS(3780), 1, + anon_sym_PLUS, + ACTIONS(4450), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3783), 2, - anon_sym_RPAREN, + [53668] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4249), 2, anon_sym_COMMA, - [53635] = 3, - ACTIONS(2306), 1, - anon_sym_COLON, - ACTIONS(3404), 1, - anon_sym_PLUS, + anon_sym_PIPE, + [53677] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53646] = 3, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(526), 1, - sym_type_parameters, + ACTIONS(4452), 2, + anon_sym_SEMI, + anon_sym_where, + [53686] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53657] = 2, + ACTIONS(4454), 2, + anon_sym_SEMI, + anon_sym_where, + [53695] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4444), 2, - sym_float_literal, - sym_integer_literal, - [53666] = 2, + ACTIONS(4456), 2, + anon_sym_SEMI, + anon_sym_where, + [53704] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4446), 2, - sym_identifier, - sym_metavariable, - [53675] = 3, - ACTIONS(4448), 1, - sym_identifier, - ACTIONS(4450), 1, - sym_integer_literal, + ACTIONS(3978), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53713] = 3, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53686] = 2, + [53724] = 3, + ACTIONS(4458), 1, + anon_sym_LPAREN, + STATE(1856), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4119), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53695] = 2, + [53735] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2183), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53704] = 3, - ACTIONS(3245), 1, - anon_sym_LT, - STATE(580), 1, - sym_type_parameters, + [53746] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53715] = 3, - ACTIONS(265), 1, + [53757] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(2186), 1, + STATE(2061), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53726] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4454), 1, - anon_sym_SEMI, + [53768] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53737] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4456), 1, + ACTIONS(4460), 2, + sym_float_literal, + sym_integer_literal, + [53777] = 3, + ACTIONS(4462), 1, anon_sym_in, + ACTIONS(4464), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53748] = 3, - ACTIONS(2137), 1, + [53788] = 3, + ACTIONS(2057), 1, anon_sym_LPAREN, - STATE(1328), 1, + STATE(1414), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53759] = 3, - ACTIONS(2795), 1, - anon_sym_LBRACE, - ACTIONS(4458), 1, - anon_sym_AMP_AMP, + [53799] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53770] = 3, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_declaration_list, + ACTIONS(4466), 2, + anon_sym_SEMI, + anon_sym_where, + [53808] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53781] = 3, - ACTIONS(3319), 1, + ACTIONS(4468), 2, + sym_identifier, + sym_metavariable, + [53817] = 3, + ACTIONS(83), 1, + anon_sym_PIPE, + STATE(99), 1, + sym_closure_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53828] = 3, + ACTIONS(3509), 1, anon_sym_LBRACE, - STATE(307), 1, - sym_declaration_list, + STATE(231), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53792] = 3, - ACTIONS(4426), 1, + [53839] = 3, + ACTIONS(1803), 1, anon_sym_LBRACE, - ACTIONS(4458), 1, - anon_sym_AMP_AMP, + STATE(1226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53803] = 4, - ACTIONS(3), 1, + [53850] = 2, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1689), 1, sym_line_comment, - ACTIONS(4460), 1, + ACTIONS(4470), 2, anon_sym_SEMI, - ACTIONS(4462), 1, - anon_sym_, - [53816] = 3, - ACTIONS(3295), 1, + anon_sym_where, + [53859] = 3, + ACTIONS(3509), 1, anon_sym_LBRACE, - STATE(1074), 1, - sym_declaration_list, + STATE(246), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53827] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4464), 1, - anon_sym_SEMI, + [53870] = 3, + ACTIONS(2775), 1, + anon_sym_EQ_GT, + ACTIONS(4472), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53881] = 3, + ACTIONS(4474), 1, + anon_sym_LBRACK, + ACTIONS(4476), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53838] = 3, - ACTIONS(2137), 1, + [53892] = 3, + ACTIONS(4458), 1, anon_sym_LPAREN, - STATE(1365), 1, - sym_parameters, + STATE(1934), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53849] = 3, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_enum_variant_list, + [53903] = 3, + ACTIONS(4382), 1, + anon_sym_EQ_GT, + ACTIONS(4472), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53860] = 3, - ACTIONS(3249), 1, + [53914] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(305), 1, - sym_field_declaration_list, + STATE(657), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53871] = 3, - ACTIONS(2137), 1, - anon_sym_LPAREN, - STATE(1404), 1, - sym_parameters, + [53925] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53882] = 3, - ACTIONS(2137), 1, + ACTIONS(1848), 2, + anon_sym_COMMA, + anon_sym_GT, + [53934] = 3, + ACTIONS(1978), 1, anon_sym_LPAREN, - STATE(1202), 1, + STATE(658), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53893] = 2, + [53945] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4466), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53902] = 2, + ACTIONS(4478), 2, + anon_sym_SEMI, + anon_sym_where, + [53954] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(1999), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4468), 2, + [53965] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4480), 2, anon_sym_const, sym_mutable_specifier, - [53911] = 3, - ACTIONS(3428), 1, + [53974] = 3, + ACTIONS(3229), 1, anon_sym_LBRACE, - STATE(300), 1, - sym_enum_variant_list, + STATE(349), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53922] = 2, + [53985] = 3, + ACTIONS(3229), 1, + anon_sym_LBRACE, + STATE(234), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53931] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(3676), 1, - anon_sym_COLON, + [53996] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2036), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53942] = 3, - ACTIONS(21), 1, - anon_sym_LBRACE, - STATE(42), 1, - sym_block, + [54007] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1340), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54018] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4482), 2, + anon_sym_const, + sym_mutable_specifier, + [54027] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53953] = 3, - ACTIONS(4470), 1, + [54038] = 3, + ACTIONS(4484), 1, anon_sym_in, - ACTIONS(4472), 1, + ACTIONS(4486), 1, sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53964] = 2, + [54049] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4078), 2, - anon_sym_RBRACE, - sym_identifier, - [53973] = 2, + [54060] = 3, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4052), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53982] = 3, - ACTIONS(4474), 1, - sym_identifier, - ACTIONS(4476), 1, - sym_mutable_specifier, + [54071] = 3, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3406), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53993] = 2, + [54082] = 3, + ACTIONS(4488), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_asm_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4478), 2, - anon_sym_const, - sym_mutable_specifier, - [54002] = 3, - ACTIONS(2137), 1, + [54093] = 3, + ACTIONS(2057), 1, anon_sym_LPAREN, - STATE(1327), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54013] = 3, - ACTIONS(3249), 1, + [54104] = 3, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_field_declaration_list, + STATE(352), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54024] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2020), 1, - sym_block, + [54115] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54035] = 3, - ACTIONS(667), 1, + [54126] = 3, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(216), 1, - sym_block, + STATE(268), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54046] = 3, - ACTIONS(667), 1, + [54137] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(2126), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54057] = 2, + [54148] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 2, - anon_sym_const, - sym_mutable_specifier, - [54066] = 3, - ACTIONS(667), 1, - anon_sym_LBRACE, - STATE(222), 1, - sym_block, + ACTIONS(3933), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54157] = 3, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(4490), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54077] = 3, - ACTIONS(4482), 1, + [54168] = 3, + ACTIONS(3447), 1, anon_sym_LBRACE, - STATE(1070), 1, - sym_asm_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54088] = 2, + STATE(1004), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4484), 2, - sym_identifier, - sym_metavariable, - [54097] = 3, - ACTIONS(3035), 1, - anon_sym_COLON_COLON, - ACTIONS(4486), 1, - anon_sym_RPAREN, + [54179] = 3, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(575), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54108] = 3, - ACTIONS(3342), 1, - anon_sym_COLON_COLON, - ACTIONS(4488), 1, - anon_sym_RPAREN, + [54190] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54119] = 3, - ACTIONS(3338), 1, - anon_sym_COLON_COLON, - ACTIONS(4488), 1, - anon_sym_RPAREN, + ACTIONS(4259), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54199] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54130] = 3, - ACTIONS(3336), 1, - anon_sym_COLON_COLON, - ACTIONS(4488), 1, - anon_sym_RPAREN, + ACTIONS(4492), 2, + anon_sym_SEMI, + anon_sym_where, + [54208] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4494), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54141] = 2, + [54219] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4490), 2, + ACTIONS(4496), 2, anon_sym_SEMI, anon_sym_where, - [54150] = 3, - ACTIONS(3249), 1, + [54228] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(354), 1, - sym_field_declaration_list, + STATE(2037), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54161] = 3, - ACTIONS(667), 1, - anon_sym_LBRACE, - STATE(225), 1, - sym_block, + [54239] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54172] = 3, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_declaration_list, + ACTIONS(1840), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [54248] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4498), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54183] = 3, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(348), 1, - sym_declaration_list, + [54259] = 3, + ACTIONS(2057), 1, + anon_sym_LPAREN, + STATE(1403), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54194] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4492), 1, - anon_sym_SEMI, + [54270] = 3, + ACTIONS(69), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54205] = 2, + [54281] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [54214] = 2, + ACTIONS(4500), 2, + anon_sym_SEMI, + anon_sym_where, + [54290] = 3, + ACTIONS(1978), 1, + anon_sym_LPAREN, + STATE(649), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4496), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [54223] = 3, - ACTIONS(3354), 1, - anon_sym_COLON, - ACTIONS(3404), 1, - anon_sym_PLUS, + [54301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54234] = 3, - ACTIONS(4498), 1, + ACTIONS(3889), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [54310] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(70), 1, - sym_asm_block, + STATE(2021), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54245] = 2, + [54321] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2031), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4500), 2, - anon_sym_RBRACE, - sym_identifier, - [54254] = 3, - ACTIONS(3693), 1, - anon_sym_PLUS, - ACTIONS(4502), 1, - anon_sym_GT, + [54332] = 3, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(573), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54265] = 2, + [54343] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4201), 2, + ACTIONS(1844), 2, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_PIPE, - [54274] = 3, - ACTIONS(2137), 1, + [54352] = 3, + ACTIONS(2057), 1, anon_sym_LPAREN, - STATE(1410), 1, + STATE(1409), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54285] = 3, - ACTIONS(21), 1, + [54363] = 3, + ACTIONS(3237), 1, anon_sym_LBRACE, - STATE(54), 1, - sym_block, + STATE(1016), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54296] = 3, - ACTIONS(3428), 1, + [54374] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(322), 1, - sym_enum_variant_list, + STATE(2070), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54307] = 3, - ACTIONS(3319), 1, + [54385] = 3, + ACTIONS(3295), 1, anon_sym_LBRACE, - STATE(314), 1, + STATE(1019), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54318] = 3, - ACTIONS(3616), 1, - anon_sym_PIPE, - ACTIONS(4504), 1, - anon_sym_in, + [54396] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2073), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54329] = 2, + [54407] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2089), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3877), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54338] = 2, + [54418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3949), 2, + ACTIONS(4287), 2, anon_sym_COMMA, - anon_sym_GT, - [54347] = 3, - ACTIONS(265), 1, + anon_sym_RPAREN, + [54427] = 3, + ACTIONS(283), 1, anon_sym_LBRACE, - STATE(2097), 1, + STATE(2096), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54358] = 3, - ACTIONS(265), 1, - anon_sym_LBRACE, - STATE(2101), 1, - sym_block, + [54438] = 3, + ACTIONS(4458), 1, + anon_sym_LPAREN, + STATE(1892), 1, + sym_asm_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54369] = 3, - ACTIONS(2220), 1, - anon_sym_COLON, - ACTIONS(3404), 1, - anon_sym_PLUS, + [54449] = 3, + ACTIONS(3233), 1, + anon_sym_LT, + STATE(546), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54380] = 3, - ACTIONS(2252), 1, - anon_sym_COLON, - ACTIONS(3404), 1, - anon_sym_PLUS, + [54460] = 3, + ACTIONS(2006), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54391] = 3, - ACTIONS(4506), 1, - anon_sym_LBRACK, - ACTIONS(4508), 1, - anon_sym_BANG, + [54471] = 3, + ACTIONS(3447), 1, + anon_sym_LBRACE, + STATE(1033), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54402] = 3, - ACTIONS(4418), 1, - anon_sym_LPAREN, - STATE(1851), 1, - sym_asm_parameters, + [54482] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54413] = 2, + ACTIONS(4502), 2, + sym_identifier, + sym_metavariable, + [54491] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4510), 2, - anon_sym_SEMI, - anon_sym_where, - [54422] = 2, + ACTIONS(4332), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54500] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4504), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4512), 2, - anon_sym_SEMI, - anon_sym_where, - [54431] = 3, - ACTIONS(4514), 1, + [54511] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, anon_sym_in, - ACTIONS(4516), 1, - sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54442] = 3, - ACTIONS(3319), 1, + [54522] = 3, + ACTIONS(4210), 1, anon_sym_LBRACE, - STATE(262), 1, - sym_declaration_list, + STATE(242), 1, + sym_storage_content_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54453] = 3, - ACTIONS(3404), 1, - anon_sym_PLUS, - ACTIONS(4518), 1, - anon_sym_SEMI, + [54533] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4508), 2, + sym_identifier, + sym_metavariable, + [54542] = 3, + ACTIONS(4510), 1, + anon_sym_for, + ACTIONS(4512), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54553] = 3, + ACTIONS(3297), 1, + anon_sym_COLON, + STATE(1756), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54564] = 3, + ACTIONS(83), 1, + anon_sym_PIPE, + STATE(102), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54464] = 2, + [54575] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4038), 2, + ACTIONS(4008), 2, anon_sym_RBRACE, - anon_sym_COMMA, - [54473] = 2, + sym_identifier, + [54584] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [54482] = 2, - ACTIONS(4520), 1, - anon_sym_RPAREN, + ACTIONS(4514), 2, + sym_identifier, + sym_metavariable, + [54593] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4516), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54490] = 2, - ACTIONS(4020), 1, - anon_sym_RPAREN, + [54604] = 3, + ACTIONS(2332), 1, + anon_sym_COLON, + ACTIONS(3406), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54615] = 3, + ACTIONS(3583), 1, + anon_sym_PIPE, + ACTIONS(4518), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54626] = 3, + ACTIONS(4520), 1, + anon_sym_for, + ACTIONS(4522), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54498] = 2, - ACTIONS(4352), 1, - anon_sym_GT, + [54637] = 3, + ACTIONS(69), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54506] = 2, - ACTIONS(4522), 1, - anon_sym_RBRACK, + [54648] = 3, + ACTIONS(283), 1, + anon_sym_LBRACE, + STATE(2058), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54514] = 2, + [54659] = 2, ACTIONS(4524), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54522] = 2, - ACTIONS(4526), 1, - anon_sym_LBRACE, + [54667] = 2, + ACTIONS(4206), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54530] = 2, - ACTIONS(4010), 1, + [54675] = 2, + ACTIONS(4526), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54538] = 2, + [54683] = 2, ACTIONS(4528), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54546] = 2, + [54691] = 2, ACTIONS(4530), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54554] = 2, - ACTIONS(4111), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54562] = 2, + [54699] = 2, ACTIONS(4532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54570] = 2, + [54707] = 2, ACTIONS(4534), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54578] = 2, - ACTIONS(3971), 1, - sym_identifier, + [54715] = 2, + ACTIONS(4536), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54586] = 2, - ACTIONS(4536), 1, - anon_sym_COLON, + [54723] = 2, + ACTIONS(4106), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54594] = 2, + [54731] = 2, ACTIONS(4538), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54602] = 2, + [54739] = 2, ACTIONS(4540), 1, - anon_sym_fn, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54747] = 2, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54610] = 2, + [54755] = 2, ACTIONS(4542), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54618] = 2, + [54763] = 2, ACTIONS(4544), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54626] = 2, + [54771] = 2, ACTIONS(4546), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54634] = 2, + [54779] = 2, ACTIONS(4548), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54642] = 2, + [54787] = 2, ACTIONS(4550), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54795] = 2, + ACTIONS(3991), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54650] = 2, + [54803] = 2, + ACTIONS(4140), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54811] = 2, ACTIONS(4552), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54658] = 2, - ACTIONS(3908), 1, + [54819] = 2, + ACTIONS(651), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54827] = 2, + ACTIONS(4130), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54666] = 2, + [54835] = 2, ACTIONS(4554), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54674] = 2, + [54843] = 2, ACTIONS(4556), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54682] = 2, + [54851] = 2, ACTIONS(4558), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54690] = 2, - ACTIONS(4203), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54698] = 2, + [54859] = 2, ACTIONS(4560), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54706] = 2, + [54867] = 2, ACTIONS(4562), 1, - sym_identifier, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54714] = 2, + [54875] = 2, ACTIONS(4564), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54722] = 2, - ACTIONS(3979), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54730] = 2, + [54883] = 2, ACTIONS(4566), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54738] = 2, + [54891] = 2, ACTIONS(4568), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54899] = 2, + ACTIONS(4132), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54746] = 2, + [54907] = 2, ACTIONS(4570), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54754] = 2, + [54915] = 2, ACTIONS(4572), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54762] = 2, + [54923] = 2, ACTIONS(4574), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54770] = 2, + [54931] = 2, ACTIONS(4576), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54778] = 2, + [54939] = 2, + ACTIONS(3726), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54947] = 2, ACTIONS(4578), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54786] = 2, + [54955] = 2, ACTIONS(4580), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54794] = 2, + [54963] = 2, ACTIONS(4582), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54802] = 2, + [54971] = 2, ACTIONS(4584), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54810] = 2, + [54979] = 2, ACTIONS(4586), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54818] = 2, + [54987] = 2, ACTIONS(4588), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54826] = 2, + [54995] = 2, ACTIONS(4590), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54834] = 2, + [55003] = 2, ACTIONS(4592), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54842] = 2, + [55011] = 2, ACTIONS(4594), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54850] = 2, + [55019] = 2, ACTIONS(4596), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54858] = 2, + [55027] = 2, ACTIONS(4598), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54866] = 2, + [55035] = 2, ACTIONS(4600), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54874] = 2, + [55043] = 2, ACTIONS(4602), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54882] = 2, + [55051] = 2, ACTIONS(4604), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54890] = 2, + [55059] = 2, ACTIONS(4606), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55067] = 2, + ACTIONS(4018), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54898] = 2, - ACTIONS(3007), 1, + [55075] = 2, + ACTIONS(3021), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54906] = 2, + [55083] = 2, ACTIONS(4608), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54914] = 2, + [55091] = 2, ACTIONS(4610), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54922] = 2, + [55099] = 2, ACTIONS(4612), 1, sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54930] = 2, - ACTIONS(4614), 1, - sym_identifier, + [55107] = 2, + ACTIONS(4360), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54938] = 2, - ACTIONS(4506), 1, + [55115] = 2, + ACTIONS(4474), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54946] = 2, - ACTIONS(3811), 1, - sym_identifier, + [55123] = 2, + ACTIONS(2590), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54954] = 2, - ACTIONS(4290), 1, - sym_identifier, + [55131] = 2, + ACTIONS(4614), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54962] = 2, - ACTIONS(2968), 1, + [55139] = 2, + ACTIONS(2978), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54970] = 2, - ACTIONS(2964), 1, + [55147] = 2, + ACTIONS(2976), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54978] = 2, + [55155] = 2, ACTIONS(4616), 1, - sym_identifier, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55163] = 2, + ACTIONS(3969), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54986] = 2, + [55171] = 2, ACTIONS(4618), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54994] = 2, + [55179] = 2, ACTIONS(4620), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55002] = 2, + [55187] = 2, ACTIONS(4622), 1, - anon_sym_LBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55195] = 2, + ACTIONS(3659), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55010] = 2, + [55203] = 2, ACTIONS(4624), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55018] = 2, + [55211] = 2, ACTIONS(4626), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55026] = 2, + [55219] = 2, ACTIONS(4628), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55034] = 2, + [55227] = 2, ACTIONS(4630), 1, - anon_sym_fn, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55042] = 2, + [55235] = 2, ACTIONS(4632), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55050] = 2, + [55243] = 2, ACTIONS(4634), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55058] = 2, + [55251] = 2, ACTIONS(4636), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55066] = 2, - ACTIONS(3869), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55074] = 2, + [55259] = 2, ACTIONS(4638), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55082] = 2, - ACTIONS(3678), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55090] = 2, + [55267] = 2, ACTIONS(4640), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55098] = 2, + [55275] = 2, ACTIONS(4642), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55106] = 2, + [55283] = 2, ACTIONS(4644), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55114] = 2, + [55291] = 2, ACTIONS(4646), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55122] = 2, + [55299] = 2, ACTIONS(4648), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55130] = 2, + [55307] = 2, ACTIONS(4650), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55138] = 2, + [55315] = 2, ACTIONS(4652), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55146] = 2, + [55323] = 2, ACTIONS(4654), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55154] = 2, - ACTIONS(3408), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55162] = 2, - ACTIONS(3594), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55170] = 2, + [55331] = 2, ACTIONS(4656), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55178] = 2, + [55339] = 2, ACTIONS(4658), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55186] = 2, + [55347] = 2, ACTIONS(4660), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55194] = 2, - ACTIONS(4016), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55202] = 2, - ACTIONS(2128), 1, - anon_sym_COLON_COLON, + [55355] = 2, + ACTIONS(4662), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55210] = 2, - ACTIONS(4662), 1, - sym_identifier, + [55363] = 2, + ACTIONS(4664), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55218] = 2, - ACTIONS(3935), 1, - anon_sym_RBRACE, + [55371] = 2, + ACTIONS(2100), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55226] = 2, - ACTIONS(4664), 1, + [55379] = 2, + ACTIONS(4666), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55234] = 2, - ACTIONS(3933), 1, + [55387] = 2, + ACTIONS(4039), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55242] = 2, - ACTIONS(4666), 1, - anon_sym_EQ, + [55395] = 2, + ACTIONS(4668), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55250] = 2, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, + [55403] = 2, + ACTIONS(3939), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55258] = 2, + [55411] = 2, ACTIONS(4670), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55266] = 2, - ACTIONS(2962), 1, + [55419] = 2, + ACTIONS(2980), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55274] = 2, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [55427] = 2, + ACTIONS(4212), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55282] = 2, + [55435] = 2, ACTIONS(4672), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55290] = 2, + [55443] = 2, ACTIONS(4674), 1, - anon_sym_SEMI, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55298] = 2, + [55451] = 2, ACTIONS(4676), 1, - anon_sym_SEMI, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55306] = 2, + [55459] = 2, ACTIONS(4678), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55314] = 2, + [55467] = 2, ACTIONS(4680), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55322] = 2, - ACTIONS(3998), 1, - anon_sym_RBRACE, + [55475] = 2, + ACTIONS(4682), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55330] = 2, - ACTIONS(4682), 1, - anon_sym_RPAREN, + [55483] = 2, + ACTIONS(3806), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55491] = 2, + ACTIONS(4245), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55338] = 2, + [55499] = 2, ACTIONS(4684), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55346] = 2, + [55507] = 2, ACTIONS(4686), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55354] = 2, + [55515] = 2, ACTIONS(4688), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55362] = 2, - ACTIONS(4690), 1, + [55523] = 2, + ACTIONS(4084), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55370] = 2, - ACTIONS(3993), 1, + [55531] = 2, + ACTIONS(4690), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55378] = 2, + [55539] = 2, ACTIONS(4692), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55386] = 2, + [55547] = 2, ACTIONS(4694), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55394] = 2, + [55555] = 2, ACTIONS(4696), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55402] = 2, + [55563] = 2, ACTIONS(4698), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55410] = 2, + [55571] = 2, ACTIONS(4700), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55418] = 2, + [55579] = 2, ACTIONS(4702), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55426] = 2, + [55587] = 2, ACTIONS(4704), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55434] = 2, + [55595] = 2, ACTIONS(4706), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55442] = 2, + [55603] = 2, ACTIONS(4708), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55450] = 2, - ACTIONS(443), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55458] = 2, + [55611] = 2, ACTIONS(4710), 1, - anon_sym_LBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55466] = 2, - ACTIONS(4063), 1, - anon_sym_RBRACE, + [55619] = 2, + ACTIONS(4712), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55474] = 2, - ACTIONS(4282), 1, - anon_sym_DOT, + [55627] = 2, + ACTIONS(4714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55482] = 2, - ACTIONS(4712), 1, - anon_sym_EQ, + [55635] = 2, + ACTIONS(3900), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55490] = 2, - ACTIONS(4714), 1, - anon_sym_SEMI, + [55643] = 2, + ACTIONS(4716), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55498] = 2, - ACTIONS(4716), 1, - anon_sym_RPAREN, + [55651] = 2, + ACTIONS(4266), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55506] = 2, + [55659] = 2, ACTIONS(4718), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55514] = 2, + [55667] = 2, ACTIONS(4720), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55522] = 2, + [55675] = 2, ACTIONS(4722), 1, - sym_integer_literal, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55530] = 2, - ACTIONS(657), 1, - anon_sym_RBRACK, + [55683] = 2, + ACTIONS(4348), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55538] = 2, - ACTIONS(2600), 1, + [55691] = 2, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55699] = 2, + ACTIONS(4146), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55546] = 2, + [55707] = 2, ACTIONS(4724), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55554] = 2, + [55715] = 2, ACTIONS(4726), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55562] = 2, + [55723] = 2, ACTIONS(4728), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55570] = 2, + [55731] = 2, ACTIONS(4730), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55578] = 2, + [55739] = 2, ACTIONS(4732), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55586] = 2, - ACTIONS(3338), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55594] = 2, + [55747] = 2, ACTIONS(4734), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55602] = 2, + [55755] = 2, ACTIONS(4736), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55610] = 2, - ACTIONS(4250), 1, + [55763] = 2, + ACTIONS(4068), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55618] = 2, - ACTIONS(3179), 1, - anon_sym_fn, + [55771] = 2, + ACTIONS(4738), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55626] = 2, - ACTIONS(4738), 1, - ts_builtin_sym_end, + [55779] = 2, + ACTIONS(3736), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55634] = 2, + [55787] = 2, ACTIONS(4740), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55642] = 2, + [55795] = 2, ACTIONS(4742), 1, - anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55650] = 2, + [55803] = 2, ACTIONS(4744), 1, - sym_identifier, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55811] = 2, + ACTIONS(439), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55819] = 2, + ACTIONS(3581), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55658] = 2, + [55827] = 2, ACTIONS(4746), 1, - anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55666] = 2, + [55835] = 2, ACTIONS(4748), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55674] = 2, + [55843] = 2, ACTIONS(4750), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55682] = 2, - ACTIONS(4163), 1, - anon_sym_RBRACE, + [55851] = 2, + ACTIONS(4752), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55690] = 2, - ACTIONS(4752), 1, - anon_sym_COLON, + [55859] = 2, + ACTIONS(4754), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55698] = 2, - ACTIONS(4754), 1, + [55867] = 2, + ACTIONS(4756), 1, sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55706] = 2, - ACTIONS(4756), 1, + [55875] = 2, + ACTIONS(4758), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55714] = 2, - ACTIONS(4758), 1, + [55883] = 2, + ACTIONS(4760), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55722] = 2, - ACTIONS(2122), 1, + [55891] = 2, + ACTIONS(2098), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55730] = 2, - ACTIONS(2154), 1, + [55899] = 2, + ACTIONS(2102), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55738] = 2, - ACTIONS(2966), 1, + [55907] = 2, + ACTIONS(3489), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55746] = 2, - ACTIONS(4760), 1, - anon_sym_EQ, + [55915] = 2, + ACTIONS(2974), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55754] = 2, + [55923] = 2, ACTIONS(4762), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55762] = 2, + [55931] = 2, ACTIONS(4764), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55770] = 2, + [55939] = 2, ACTIONS(4766), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55947] = 2, + ACTIONS(4082), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55778] = 2, + [55955] = 2, ACTIONS(4768), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55786] = 2, + [55963] = 2, ACTIONS(4770), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55794] = 2, + [55971] = 2, ACTIONS(4772), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55802] = 2, + [55979] = 2, ACTIONS(4774), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55810] = 2, - ACTIONS(4207), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55818] = 2, + [55987] = 2, ACTIONS(4776), 1, - anon_sym_SEMI, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55826] = 2, - ACTIONS(3924), 1, + [55995] = 2, + ACTIONS(4778), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55834] = 2, - ACTIONS(4778), 1, - sym_identifier, + [56003] = 2, + ACTIONS(4238), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55842] = 2, + [56011] = 2, ACTIONS(4780), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55850] = 2, - ACTIONS(4782), 1, - anon_sym_SEMI, + [56019] = 2, + ACTIONS(4032), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55858] = 2, - ACTIONS(3514), 1, + [56027] = 2, + ACTIONS(3424), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55866] = 2, - ACTIONS(4784), 1, + [56035] = 2, + ACTIONS(4782), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55874] = 2, - ACTIONS(4786), 1, - anon_sym_EQ_GT, + [56043] = 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56051] = 2, + ACTIONS(3549), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55882] = 2, - ACTIONS(3532), 1, + [56059] = 2, + ACTIONS(3547), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55890] = 2, - ACTIONS(3512), 1, + [56067] = 2, + ACTIONS(4786), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55898] = 2, + [56075] = 2, ACTIONS(4788), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55906] = 2, + [56083] = 2, ACTIONS(4790), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55914] = 2, + [56091] = 2, ACTIONS(4792), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55922] = 2, + [56099] = 2, ACTIONS(4794), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55930] = 2, - ACTIONS(4195), 1, - sym_identifier, + [56107] = 2, + ACTIONS(4796), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55938] = 2, - ACTIONS(4796), 1, - sym_identifier, + [56115] = 2, + ACTIONS(3682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55946] = 2, + [56123] = 2, ACTIONS(4798), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55954] = 2, + [56131] = 2, ACTIONS(4800), 1, - anon_sym_fn, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55962] = 2, + [56139] = 2, ACTIONS(4802), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55970] = 2, - ACTIONS(4236), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55978] = 2, + [56147] = 2, ACTIONS(4804), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55986] = 2, + [56155] = 2, ACTIONS(4806), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55994] = 2, + [56163] = 2, ACTIONS(4808), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56002] = 2, + [56171] = 2, ACTIONS(4810), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56010] = 2, + [56179] = 2, ACTIONS(4812), 1, - anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56187] = 2, + ACTIONS(4162), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56018] = 2, + [56195] = 2, ACTIONS(4814), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56026] = 2, + [56203] = 2, ACTIONS(4816), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56034] = 2, + [56211] = 2, ACTIONS(4818), 1, - anon_sym_EQ, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56042] = 2, + [56219] = 2, ACTIONS(4820), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56050] = 2, + [56227] = 2, ACTIONS(4822), 1, - anon_sym_SEMI, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56058] = 2, + [56235] = 2, ACTIONS(4824), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56066] = 2, - ACTIONS(4286), 1, - anon_sym_RBRACE, + [56243] = 2, + ACTIONS(3187), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56074] = 2, - ACTIONS(4826), 1, + [56251] = 2, + ACTIONS(4096), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56082] = 2, - ACTIONS(4828), 1, - anon_sym_RBRACE, + [56259] = 2, + ACTIONS(4826), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56090] = 2, - ACTIONS(4830), 1, + [56267] = 2, + ACTIONS(4828), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56098] = 2, - ACTIONS(3703), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56106] = 2, - ACTIONS(3636), 1, - anon_sym_RPAREN, + [56275] = 2, + ACTIONS(4057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56114] = 2, - ACTIONS(4832), 1, + [56283] = 2, + ACTIONS(4830), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56122] = 2, - ACTIONS(3161), 1, + [56291] = 2, + ACTIONS(3167), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56130] = 2, - ACTIONS(4834), 1, + [56299] = 2, + ACTIONS(4832), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56138] = 2, - ACTIONS(4836), 1, + [56307] = 2, + ACTIONS(4834), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56146] = 2, - ACTIONS(4838), 1, + [56315] = 2, + ACTIONS(4836), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56154] = 2, - ACTIONS(4320), 1, - anon_sym_RBRACE, + [56323] = 2, + ACTIONS(4838), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56162] = 2, - ACTIONS(3711), 1, - anon_sym_RPAREN, + [56331] = 2, + ACTIONS(4840), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56170] = 2, - ACTIONS(4840), 1, + [56339] = 2, + ACTIONS(4842), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56178] = 2, - ACTIONS(4842), 1, + [56347] = 2, + ACTIONS(4844), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56355] = 2, + ACTIONS(4846), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -103548,10 +99210,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(495)] = 628, [SMALL_STATE(496)] = 753, [SMALL_STATE(497)] = 878, - [SMALL_STATE(498)] = 944, - [SMALL_STATE(499)] = 1066, + [SMALL_STATE(498)] = 1000, + [SMALL_STATE(499)] = 1122, [SMALL_STATE(500)] = 1188, - [SMALL_STATE(501)] = 1310, + [SMALL_STATE(501)] = 1254, [SMALL_STATE(502)] = 1376, [SMALL_STATE(503)] = 1442, [SMALL_STATE(504)] = 1508, @@ -103667,3924 +99329,3969 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(614)] = 13613, [SMALL_STATE(615)] = 13722, [SMALL_STATE(616)] = 13831, - [SMALL_STATE(617)] = 13889, - [SMALL_STATE(618)] = 13957, - [SMALL_STATE(619)] = 14025, + [SMALL_STATE(617)] = 13899, + [SMALL_STATE(618)] = 13959, + [SMALL_STATE(619)] = 14027, [SMALL_STATE(620)] = 14085, [SMALL_STATE(621)] = 14143, [SMALL_STATE(622)] = 14200, [SMALL_STATE(623)] = 14257, - [SMALL_STATE(624)] = 14314, + [SMALL_STATE(624)] = 14322, [SMALL_STATE(625)] = 14379, [SMALL_STATE(626)] = 14444, - [SMALL_STATE(627)] = 14502, - [SMALL_STATE(628)] = 14560, - [SMALL_STATE(629)] = 14618, - [SMALL_STATE(630)] = 14676, - [SMALL_STATE(631)] = 14738, - [SMALL_STATE(632)] = 14800, + [SMALL_STATE(627)] = 14504, + [SMALL_STATE(628)] = 14566, + [SMALL_STATE(629)] = 14624, + [SMALL_STATE(630)] = 14686, + [SMALL_STATE(631)] = 14744, + [SMALL_STATE(632)] = 14802, [SMALL_STATE(633)] = 14860, - [SMALL_STATE(634)] = 14915, - [SMALL_STATE(635)] = 14972, - [SMALL_STATE(636)] = 15027, - [SMALL_STATE(637)] = 15082, - [SMALL_STATE(638)] = 15139, - [SMALL_STATE(639)] = 15194, - [SMALL_STATE(640)] = 15251, - [SMALL_STATE(641)] = 15308, - [SMALL_STATE(642)] = 15365, - [SMALL_STATE(643)] = 15422, - [SMALL_STATE(644)] = 15479, - [SMALL_STATE(645)] = 15536, - [SMALL_STATE(646)] = 15591, - [SMALL_STATE(647)] = 15646, - [SMALL_STATE(648)] = 15705, - [SMALL_STATE(649)] = 15760, - [SMALL_STATE(650)] = 15819, - [SMALL_STATE(651)] = 15876, - [SMALL_STATE(652)] = 15931, - [SMALL_STATE(653)] = 15986, - [SMALL_STATE(654)] = 16041, - [SMALL_STATE(655)] = 16096, - [SMALL_STATE(656)] = 16153, - [SMALL_STATE(657)] = 16210, - [SMALL_STATE(658)] = 16265, - [SMALL_STATE(659)] = 16322, - [SMALL_STATE(660)] = 16377, - [SMALL_STATE(661)] = 16450, - [SMALL_STATE(662)] = 16505, - [SMALL_STATE(663)] = 16560, - [SMALL_STATE(664)] = 16617, - [SMALL_STATE(665)] = 16672, - [SMALL_STATE(666)] = 16729, - [SMALL_STATE(667)] = 16784, - [SMALL_STATE(668)] = 16841, - [SMALL_STATE(669)] = 16895, - [SMALL_STATE(670)] = 16949, - [SMALL_STATE(671)] = 17003, - [SMALL_STATE(672)] = 17059, - [SMALL_STATE(673)] = 17131, - [SMALL_STATE(674)] = 17185, - [SMALL_STATE(675)] = 17239, - [SMALL_STATE(676)] = 17293, - [SMALL_STATE(677)] = 17349, - [SMALL_STATE(678)] = 17403, - [SMALL_STATE(679)] = 17457, - [SMALL_STATE(680)] = 17511, - [SMALL_STATE(681)] = 17565, - [SMALL_STATE(682)] = 17619, - [SMALL_STATE(683)] = 17673, - [SMALL_STATE(684)] = 17727, - [SMALL_STATE(685)] = 17781, - [SMALL_STATE(686)] = 17835, - [SMALL_STATE(687)] = 17889, - [SMALL_STATE(688)] = 17943, - [SMALL_STATE(689)] = 18015, - [SMALL_STATE(690)] = 18069, - [SMALL_STATE(691)] = 18123, - [SMALL_STATE(692)] = 18177, - [SMALL_STATE(693)] = 18231, - [SMALL_STATE(694)] = 18285, - [SMALL_STATE(695)] = 18339, - [SMALL_STATE(696)] = 18393, - [SMALL_STATE(697)] = 18447, - [SMALL_STATE(698)] = 18501, - [SMALL_STATE(699)] = 18555, - [SMALL_STATE(700)] = 18609, - [SMALL_STATE(701)] = 18663, - [SMALL_STATE(702)] = 18717, - [SMALL_STATE(703)] = 18771, - [SMALL_STATE(704)] = 18825, - [SMALL_STATE(705)] = 18879, - [SMALL_STATE(706)] = 18933, - [SMALL_STATE(707)] = 18987, - [SMALL_STATE(708)] = 19041, - [SMALL_STATE(709)] = 19095, - [SMALL_STATE(710)] = 19149, - [SMALL_STATE(711)] = 19203, - [SMALL_STATE(712)] = 19257, - [SMALL_STATE(713)] = 19311, - [SMALL_STATE(714)] = 19365, - [SMALL_STATE(715)] = 19419, - [SMALL_STATE(716)] = 19473, - [SMALL_STATE(717)] = 19527, - [SMALL_STATE(718)] = 19581, - [SMALL_STATE(719)] = 19635, - [SMALL_STATE(720)] = 19689, - [SMALL_STATE(721)] = 19743, - [SMALL_STATE(722)] = 19797, - [SMALL_STATE(723)] = 19851, - [SMALL_STATE(724)] = 19905, - [SMALL_STATE(725)] = 19959, - [SMALL_STATE(726)] = 20013, - [SMALL_STATE(727)] = 20067, - [SMALL_STATE(728)] = 20121, - [SMALL_STATE(729)] = 20175, - [SMALL_STATE(730)] = 20231, - [SMALL_STATE(731)] = 20285, - [SMALL_STATE(732)] = 20339, - [SMALL_STATE(733)] = 20393, - [SMALL_STATE(734)] = 20447, - [SMALL_STATE(735)] = 20501, - [SMALL_STATE(736)] = 20555, - [SMALL_STATE(737)] = 20609, - [SMALL_STATE(738)] = 20665, - [SMALL_STATE(739)] = 20719, - [SMALL_STATE(740)] = 20773, - [SMALL_STATE(741)] = 20829, - [SMALL_STATE(742)] = 20883, - [SMALL_STATE(743)] = 20937, - [SMALL_STATE(744)] = 20993, - [SMALL_STATE(745)] = 21047, - [SMALL_STATE(746)] = 21101, - [SMALL_STATE(747)] = 21155, - [SMALL_STATE(748)] = 21209, - [SMALL_STATE(749)] = 21263, - [SMALL_STATE(750)] = 21317, - [SMALL_STATE(751)] = 21371, - [SMALL_STATE(752)] = 21425, - [SMALL_STATE(753)] = 21479, - [SMALL_STATE(754)] = 21562, - [SMALL_STATE(755)] = 21635, - [SMALL_STATE(756)] = 21698, - [SMALL_STATE(757)] = 21767, - [SMALL_STATE(758)] = 21846, - [SMALL_STATE(759)] = 21929, - [SMALL_STATE(760)] = 21986, - [SMALL_STATE(761)] = 22051, - [SMALL_STATE(762)] = 22134, - [SMALL_STATE(763)] = 22221, - [SMALL_STATE(764)] = 22288, - [SMALL_STATE(765)] = 22371, - [SMALL_STATE(766)] = 22446, - [SMALL_STATE(767)] = 22529, - [SMALL_STATE(768)] = 22582, - [SMALL_STATE(769)] = 22663, - [SMALL_STATE(770)] = 22746, - [SMALL_STATE(771)] = 22807, - [SMALL_STATE(772)] = 22868, - [SMALL_STATE(773)] = 22929, - [SMALL_STATE(774)] = 23000, - [SMALL_STATE(775)] = 23053, - [SMALL_STATE(776)] = 23140, - [SMALL_STATE(777)] = 23200, - [SMALL_STATE(778)] = 23260, - [SMALL_STATE(779)] = 23320, - [SMALL_STATE(780)] = 23410, - [SMALL_STATE(781)] = 23500, - [SMALL_STATE(782)] = 23560, - [SMALL_STATE(783)] = 23616, - [SMALL_STATE(784)] = 23672, - [SMALL_STATE(785)] = 23731, - [SMALL_STATE(786)] = 23790, - [SMALL_STATE(787)] = 23849, - [SMALL_STATE(788)] = 23908, - [SMALL_STATE(789)] = 23967, - [SMALL_STATE(790)] = 24050, - [SMALL_STATE(791)] = 24109, - [SMALL_STATE(792)] = 24168, - [SMALL_STATE(793)] = 24227, - [SMALL_STATE(794)] = 24284, - [SMALL_STATE(795)] = 24367, - [SMALL_STATE(796)] = 24421, - [SMALL_STATE(797)] = 24473, - [SMALL_STATE(798)] = 24525, - [SMALL_STATE(799)] = 24581, - [SMALL_STATE(800)] = 24633, - [SMALL_STATE(801)] = 24689, - [SMALL_STATE(802)] = 24775, - [SMALL_STATE(803)] = 24831, - [SMALL_STATE(804)] = 24883, - [SMALL_STATE(805)] = 24969, - [SMALL_STATE(806)] = 25025, - [SMALL_STATE(807)] = 25080, - [SMALL_STATE(808)] = 25135, - [SMALL_STATE(809)] = 25188, - [SMALL_STATE(810)] = 25239, - [SMALL_STATE(811)] = 25328, - [SMALL_STATE(812)] = 25383, - [SMALL_STATE(813)] = 25434, - [SMALL_STATE(814)] = 25487, - [SMALL_STATE(815)] = 25576, - [SMALL_STATE(816)] = 25631, - [SMALL_STATE(817)] = 25684, - [SMALL_STATE(818)] = 25737, - [SMALL_STATE(819)] = 25787, - [SMALL_STATE(820)] = 25839, - [SMALL_STATE(821)] = 25917, - [SMALL_STATE(822)] = 25967, - [SMALL_STATE(823)] = 26015, - [SMALL_STATE(824)] = 26065, - [SMALL_STATE(825)] = 26115, - [SMALL_STATE(826)] = 26163, - [SMALL_STATE(827)] = 26213, - [SMALL_STATE(828)] = 26261, - [SMALL_STATE(829)] = 26311, - [SMALL_STATE(830)] = 26397, - [SMALL_STATE(831)] = 26449, - [SMALL_STATE(832)] = 26535, - [SMALL_STATE(833)] = 26585, - [SMALL_STATE(834)] = 26633, - [SMALL_STATE(835)] = 26714, - [SMALL_STATE(836)] = 26791, - [SMALL_STATE(837)] = 26842, - [SMALL_STATE(838)] = 26891, - [SMALL_STATE(839)] = 26974, - [SMALL_STATE(840)] = 27051, - [SMALL_STATE(841)] = 27126, - [SMALL_STATE(842)] = 27173, - [SMALL_STATE(843)] = 27228, - [SMALL_STATE(844)] = 27283, - [SMALL_STATE(845)] = 27364, - [SMALL_STATE(846)] = 27447, - [SMALL_STATE(847)] = 27524, - [SMALL_STATE(848)] = 27579, - [SMALL_STATE(849)] = 27662, - [SMALL_STATE(850)] = 27745, - [SMALL_STATE(851)] = 27828, - [SMALL_STATE(852)] = 27905, - [SMALL_STATE(853)] = 27962, - [SMALL_STATE(854)] = 28043, - [SMALL_STATE(855)] = 28124, - [SMALL_STATE(856)] = 28207, - [SMALL_STATE(857)] = 28290, - [SMALL_STATE(858)] = 28373, - [SMALL_STATE(859)] = 28456, - [SMALL_STATE(860)] = 28539, - [SMALL_STATE(861)] = 28586, - [SMALL_STATE(862)] = 28669, - [SMALL_STATE(863)] = 28752, - [SMALL_STATE(864)] = 28833, - [SMALL_STATE(865)] = 28880, - [SMALL_STATE(866)] = 28963, - [SMALL_STATE(867)] = 29010, - [SMALL_STATE(868)] = 29091, - [SMALL_STATE(869)] = 29174, - [SMALL_STATE(870)] = 29257, - [SMALL_STATE(871)] = 29338, - [SMALL_STATE(872)] = 29415, - [SMALL_STATE(873)] = 29498, - [SMALL_STATE(874)] = 29581, - [SMALL_STATE(875)] = 29628, - [SMALL_STATE(876)] = 29709, - [SMALL_STATE(877)] = 29790, - [SMALL_STATE(878)] = 29873, - [SMALL_STATE(879)] = 29948, - [SMALL_STATE(880)] = 30031, - [SMALL_STATE(881)] = 30108, - [SMALL_STATE(882)] = 30191, - [SMALL_STATE(883)] = 30272, - [SMALL_STATE(884)] = 30353, - [SMALL_STATE(885)] = 30436, - [SMALL_STATE(886)] = 30519, - [SMALL_STATE(887)] = 30578, - [SMALL_STATE(888)] = 30647, - [SMALL_STATE(889)] = 30730, - [SMALL_STATE(890)] = 30813, - [SMALL_STATE(891)] = 30876, - [SMALL_STATE(892)] = 30959, - [SMALL_STATE(893)] = 31032, - [SMALL_STATE(894)] = 31115, - [SMALL_STATE(895)] = 31162, - [SMALL_STATE(896)] = 31243, - [SMALL_STATE(897)] = 31326, - [SMALL_STATE(898)] = 31409, - [SMALL_STATE(899)] = 31492, - [SMALL_STATE(900)] = 31575, - [SMALL_STATE(901)] = 31650, - [SMALL_STATE(902)] = 31733, - [SMALL_STATE(903)] = 31800, - [SMALL_STATE(904)] = 31883, - [SMALL_STATE(905)] = 31948, - [SMALL_STATE(906)] = 32031, - [SMALL_STATE(907)] = 32080, - [SMALL_STATE(908)] = 32141, - [SMALL_STATE(909)] = 32219, - [SMALL_STATE(910)] = 32291, - [SMALL_STATE(911)] = 32363, - [SMALL_STATE(912)] = 32443, - [SMALL_STATE(913)] = 32523, - [SMALL_STATE(914)] = 32603, - [SMALL_STATE(915)] = 32683, - [SMALL_STATE(916)] = 32763, - [SMALL_STATE(917)] = 32843, - [SMALL_STATE(918)] = 32915, - [SMALL_STATE(919)] = 32995, - [SMALL_STATE(920)] = 33075, - [SMALL_STATE(921)] = 33155, - [SMALL_STATE(922)] = 33235, - [SMALL_STATE(923)] = 33315, - [SMALL_STATE(924)] = 33395, - [SMALL_STATE(925)] = 33475, - [SMALL_STATE(926)] = 33555, - [SMALL_STATE(927)] = 33635, - [SMALL_STATE(928)] = 33715, - [SMALL_STATE(929)] = 33793, - [SMALL_STATE(930)] = 33871, - [SMALL_STATE(931)] = 33951, - [SMALL_STATE(932)] = 34023, - [SMALL_STATE(933)] = 34103, - [SMALL_STATE(934)] = 34183, - [SMALL_STATE(935)] = 34263, - [SMALL_STATE(936)] = 34343, - [SMALL_STATE(937)] = 34421, - [SMALL_STATE(938)] = 34501, - [SMALL_STATE(939)] = 34573, - [SMALL_STATE(940)] = 34653, - [SMALL_STATE(941)] = 34698, - [SMALL_STATE(942)] = 34743, - [SMALL_STATE(943)] = 34820, - [SMALL_STATE(944)] = 34865, - [SMALL_STATE(945)] = 34945, - [SMALL_STATE(946)] = 35025, - [SMALL_STATE(947)] = 35105, - [SMALL_STATE(948)] = 35185, - [SMALL_STATE(949)] = 35265, - [SMALL_STATE(950)] = 35308, - [SMALL_STATE(951)] = 35351, - [SMALL_STATE(952)] = 35394, - [SMALL_STATE(953)] = 35439, - [SMALL_STATE(954)] = 35504, - [SMALL_STATE(955)] = 35569, - [SMALL_STATE(956)] = 35634, - [SMALL_STATE(957)] = 35699, - [SMALL_STATE(958)] = 35764, - [SMALL_STATE(959)] = 35826, - [SMALL_STATE(960)] = 35888, - [SMALL_STATE(961)] = 35950, - [SMALL_STATE(962)] = 36009, - [SMALL_STATE(963)] = 36068, - [SMALL_STATE(964)] = 36104, - [SMALL_STATE(965)] = 36140, - [SMALL_STATE(966)] = 36176, - [SMALL_STATE(967)] = 36219, - [SMALL_STATE(968)] = 36249, - [SMALL_STATE(969)] = 36279, - [SMALL_STATE(970)] = 36309, - [SMALL_STATE(971)] = 36339, - [SMALL_STATE(972)] = 36369, - [SMALL_STATE(973)] = 36396, - [SMALL_STATE(974)] = 36425, - [SMALL_STATE(975)] = 36454, - [SMALL_STATE(976)] = 36481, - [SMALL_STATE(977)] = 36510, - [SMALL_STATE(978)] = 36537, - [SMALL_STATE(979)] = 36566, - [SMALL_STATE(980)] = 36592, - [SMALL_STATE(981)] = 36618, - [SMALL_STATE(982)] = 36644, - [SMALL_STATE(983)] = 36670, - [SMALL_STATE(984)] = 36696, - [SMALL_STATE(985)] = 36722, - [SMALL_STATE(986)] = 36748, - [SMALL_STATE(987)] = 36784, - [SMALL_STATE(988)] = 36810, - [SMALL_STATE(989)] = 36836, - [SMALL_STATE(990)] = 36862, - [SMALL_STATE(991)] = 36898, - [SMALL_STATE(992)] = 36924, - [SMALL_STATE(993)] = 36947, - [SMALL_STATE(994)] = 36970, - [SMALL_STATE(995)] = 36993, - [SMALL_STATE(996)] = 37016, - [SMALL_STATE(997)] = 37039, - [SMALL_STATE(998)] = 37062, - [SMALL_STATE(999)] = 37085, - [SMALL_STATE(1000)] = 37108, - [SMALL_STATE(1001)] = 37131, - [SMALL_STATE(1002)] = 37154, - [SMALL_STATE(1003)] = 37177, - [SMALL_STATE(1004)] = 37200, - [SMALL_STATE(1005)] = 37223, - [SMALL_STATE(1006)] = 37246, - [SMALL_STATE(1007)] = 37269, - [SMALL_STATE(1008)] = 37294, - [SMALL_STATE(1009)] = 37317, - [SMALL_STATE(1010)] = 37340, - [SMALL_STATE(1011)] = 37363, - [SMALL_STATE(1012)] = 37386, - [SMALL_STATE(1013)] = 37409, - [SMALL_STATE(1014)] = 37432, - [SMALL_STATE(1015)] = 37455, - [SMALL_STATE(1016)] = 37478, - [SMALL_STATE(1017)] = 37501, - [SMALL_STATE(1018)] = 37524, - [SMALL_STATE(1019)] = 37547, - [SMALL_STATE(1020)] = 37570, - [SMALL_STATE(1021)] = 37593, - [SMALL_STATE(1022)] = 37616, - [SMALL_STATE(1023)] = 37639, - [SMALL_STATE(1024)] = 37662, - [SMALL_STATE(1025)] = 37685, - [SMALL_STATE(1026)] = 37708, - [SMALL_STATE(1027)] = 37733, - [SMALL_STATE(1028)] = 37756, - [SMALL_STATE(1029)] = 37779, - [SMALL_STATE(1030)] = 37802, - [SMALL_STATE(1031)] = 37825, - [SMALL_STATE(1032)] = 37848, - [SMALL_STATE(1033)] = 37871, - [SMALL_STATE(1034)] = 37898, - [SMALL_STATE(1035)] = 37921, - [SMALL_STATE(1036)] = 37954, - [SMALL_STATE(1037)] = 37977, - [SMALL_STATE(1038)] = 38000, - [SMALL_STATE(1039)] = 38023, - [SMALL_STATE(1040)] = 38046, - [SMALL_STATE(1041)] = 38071, - [SMALL_STATE(1042)] = 38094, - [SMALL_STATE(1043)] = 38117, - [SMALL_STATE(1044)] = 38140, - [SMALL_STATE(1045)] = 38163, - [SMALL_STATE(1046)] = 38186, - [SMALL_STATE(1047)] = 38209, - [SMALL_STATE(1048)] = 38232, - [SMALL_STATE(1049)] = 38255, - [SMALL_STATE(1050)] = 38278, - [SMALL_STATE(1051)] = 38301, - [SMALL_STATE(1052)] = 38324, - [SMALL_STATE(1053)] = 38347, - [SMALL_STATE(1054)] = 38370, - [SMALL_STATE(1055)] = 38393, - [SMALL_STATE(1056)] = 38416, - [SMALL_STATE(1057)] = 38439, - [SMALL_STATE(1058)] = 38462, - [SMALL_STATE(1059)] = 38485, - [SMALL_STATE(1060)] = 38508, - [SMALL_STATE(1061)] = 38531, - [SMALL_STATE(1062)] = 38554, - [SMALL_STATE(1063)] = 38577, - [SMALL_STATE(1064)] = 38600, - [SMALL_STATE(1065)] = 38623, - [SMALL_STATE(1066)] = 38646, - [SMALL_STATE(1067)] = 38669, - [SMALL_STATE(1068)] = 38692, - [SMALL_STATE(1069)] = 38715, - [SMALL_STATE(1070)] = 38738, - [SMALL_STATE(1071)] = 38761, - [SMALL_STATE(1072)] = 38784, - [SMALL_STATE(1073)] = 38807, - [SMALL_STATE(1074)] = 38830, - [SMALL_STATE(1075)] = 38853, - [SMALL_STATE(1076)] = 38876, - [SMALL_STATE(1077)] = 38899, - [SMALL_STATE(1078)] = 38926, - [SMALL_STATE(1079)] = 38949, - [SMALL_STATE(1080)] = 38972, - [SMALL_STATE(1081)] = 38995, - [SMALL_STATE(1082)] = 39018, - [SMALL_STATE(1083)] = 39043, - [SMALL_STATE(1084)] = 39066, - [SMALL_STATE(1085)] = 39089, - [SMALL_STATE(1086)] = 39112, - [SMALL_STATE(1087)] = 39135, - [SMALL_STATE(1088)] = 39158, - [SMALL_STATE(1089)] = 39181, - [SMALL_STATE(1090)] = 39204, - [SMALL_STATE(1091)] = 39227, - [SMALL_STATE(1092)] = 39250, - [SMALL_STATE(1093)] = 39273, - [SMALL_STATE(1094)] = 39296, - [SMALL_STATE(1095)] = 39319, - [SMALL_STATE(1096)] = 39342, - [SMALL_STATE(1097)] = 39365, - [SMALL_STATE(1098)] = 39388, - [SMALL_STATE(1099)] = 39411, - [SMALL_STATE(1100)] = 39434, - [SMALL_STATE(1101)] = 39457, - [SMALL_STATE(1102)] = 39480, - [SMALL_STATE(1103)] = 39503, - [SMALL_STATE(1104)] = 39526, - [SMALL_STATE(1105)] = 39549, - [SMALL_STATE(1106)] = 39576, - [SMALL_STATE(1107)] = 39599, - [SMALL_STATE(1108)] = 39622, - [SMALL_STATE(1109)] = 39645, - [SMALL_STATE(1110)] = 39672, - [SMALL_STATE(1111)] = 39699, - [SMALL_STATE(1112)] = 39722, - [SMALL_STATE(1113)] = 39755, - [SMALL_STATE(1114)] = 39778, - [SMALL_STATE(1115)] = 39801, - [SMALL_STATE(1116)] = 39824, - [SMALL_STATE(1117)] = 39847, - [SMALL_STATE(1118)] = 39872, - [SMALL_STATE(1119)] = 39895, - [SMALL_STATE(1120)] = 39918, - [SMALL_STATE(1121)] = 39941, - [SMALL_STATE(1122)] = 39964, - [SMALL_STATE(1123)] = 39987, - [SMALL_STATE(1124)] = 40010, - [SMALL_STATE(1125)] = 40033, - [SMALL_STATE(1126)] = 40056, - [SMALL_STATE(1127)] = 40087, - [SMALL_STATE(1128)] = 40110, - [SMALL_STATE(1129)] = 40133, - [SMALL_STATE(1130)] = 40156, - [SMALL_STATE(1131)] = 40179, - [SMALL_STATE(1132)] = 40204, - [SMALL_STATE(1133)] = 40227, - [SMALL_STATE(1134)] = 40250, - [SMALL_STATE(1135)] = 40273, - [SMALL_STATE(1136)] = 40298, - [SMALL_STATE(1137)] = 40321, - [SMALL_STATE(1138)] = 40344, - [SMALL_STATE(1139)] = 40367, - [SMALL_STATE(1140)] = 40390, - [SMALL_STATE(1141)] = 40413, - [SMALL_STATE(1142)] = 40436, - [SMALL_STATE(1143)] = 40459, - [SMALL_STATE(1144)] = 40482, - [SMALL_STATE(1145)] = 40505, - [SMALL_STATE(1146)] = 40528, - [SMALL_STATE(1147)] = 40551, - [SMALL_STATE(1148)] = 40574, - [SMALL_STATE(1149)] = 40597, - [SMALL_STATE(1150)] = 40620, - [SMALL_STATE(1151)] = 40643, - [SMALL_STATE(1152)] = 40666, - [SMALL_STATE(1153)] = 40689, - [SMALL_STATE(1154)] = 40712, - [SMALL_STATE(1155)] = 40735, - [SMALL_STATE(1156)] = 40758, - [SMALL_STATE(1157)] = 40781, - [SMALL_STATE(1158)] = 40804, - [SMALL_STATE(1159)] = 40827, - [SMALL_STATE(1160)] = 40850, - [SMALL_STATE(1161)] = 40873, - [SMALL_STATE(1162)] = 40896, - [SMALL_STATE(1163)] = 40919, - [SMALL_STATE(1164)] = 40942, - [SMALL_STATE(1165)] = 40965, - [SMALL_STATE(1166)] = 40988, - [SMALL_STATE(1167)] = 41011, - [SMALL_STATE(1168)] = 41034, - [SMALL_STATE(1169)] = 41057, - [SMALL_STATE(1170)] = 41080, - [SMALL_STATE(1171)] = 41103, - [SMALL_STATE(1172)] = 41126, - [SMALL_STATE(1173)] = 41150, - [SMALL_STATE(1174)] = 41174, - [SMALL_STATE(1175)] = 41202, - [SMALL_STATE(1176)] = 41226, - [SMALL_STATE(1177)] = 41250, - [SMALL_STATE(1178)] = 41274, - [SMALL_STATE(1179)] = 41298, - [SMALL_STATE(1180)] = 41322, - [SMALL_STATE(1181)] = 41346, - [SMALL_STATE(1182)] = 41370, - [SMALL_STATE(1183)] = 41394, - [SMALL_STATE(1184)] = 41418, - [SMALL_STATE(1185)] = 41442, - [SMALL_STATE(1186)] = 41466, - [SMALL_STATE(1187)] = 41490, - [SMALL_STATE(1188)] = 41514, - [SMALL_STATE(1189)] = 41538, - [SMALL_STATE(1190)] = 41562, - [SMALL_STATE(1191)] = 41586, - [SMALL_STATE(1192)] = 41610, - [SMALL_STATE(1193)] = 41634, - [SMALL_STATE(1194)] = 41659, - [SMALL_STATE(1195)] = 41700, - [SMALL_STATE(1196)] = 41741, - [SMALL_STATE(1197)] = 41784, - [SMALL_STATE(1198)] = 41807, - [SMALL_STATE(1199)] = 41830, - [SMALL_STATE(1200)] = 41854, - [SMALL_STATE(1201)] = 41878, - [SMALL_STATE(1202)] = 41902, - [SMALL_STATE(1203)] = 41926, - [SMALL_STATE(1204)] = 41950, - [SMALL_STATE(1205)] = 41974, - [SMALL_STATE(1206)] = 41996, - [SMALL_STATE(1207)] = 42038, - [SMALL_STATE(1208)] = 42062, - [SMALL_STATE(1209)] = 42086, - [SMALL_STATE(1210)] = 42110, - [SMALL_STATE(1211)] = 42134, - [SMALL_STATE(1212)] = 42158, - [SMALL_STATE(1213)] = 42182, - [SMALL_STATE(1214)] = 42203, - [SMALL_STATE(1215)] = 42224, - [SMALL_STATE(1216)] = 42245, - [SMALL_STATE(1217)] = 42266, - [SMALL_STATE(1218)] = 42287, - [SMALL_STATE(1219)] = 42308, - [SMALL_STATE(1220)] = 42329, - [SMALL_STATE(1221)] = 42350, - [SMALL_STATE(1222)] = 42371, - [SMALL_STATE(1223)] = 42392, - [SMALL_STATE(1224)] = 42413, - [SMALL_STATE(1225)] = 42434, - [SMALL_STATE(1226)] = 42455, - [SMALL_STATE(1227)] = 42476, - [SMALL_STATE(1228)] = 42497, - [SMALL_STATE(1229)] = 42518, - [SMALL_STATE(1230)] = 42539, - [SMALL_STATE(1231)] = 42560, - [SMALL_STATE(1232)] = 42581, - [SMALL_STATE(1233)] = 42602, - [SMALL_STATE(1234)] = 42623, - [SMALL_STATE(1235)] = 42644, - [SMALL_STATE(1236)] = 42665, - [SMALL_STATE(1237)] = 42686, - [SMALL_STATE(1238)] = 42707, - [SMALL_STATE(1239)] = 42728, - [SMALL_STATE(1240)] = 42749, - [SMALL_STATE(1241)] = 42770, - [SMALL_STATE(1242)] = 42791, - [SMALL_STATE(1243)] = 42812, - [SMALL_STATE(1244)] = 42833, - [SMALL_STATE(1245)] = 42854, - [SMALL_STATE(1246)] = 42878, - [SMALL_STATE(1247)] = 42900, - [SMALL_STATE(1248)] = 42924, - [SMALL_STATE(1249)] = 42948, - [SMALL_STATE(1250)] = 42986, - [SMALL_STATE(1251)] = 43010, - [SMALL_STATE(1252)] = 43030, - [SMALL_STATE(1253)] = 43054, - [SMALL_STATE(1254)] = 43078, - [SMALL_STATE(1255)] = 43106, - [SMALL_STATE(1256)] = 43130, - [SMALL_STATE(1257)] = 43158, - [SMALL_STATE(1258)] = 43182, - [SMALL_STATE(1259)] = 43204, - [SMALL_STATE(1260)] = 43242, - [SMALL_STATE(1261)] = 43264, - [SMALL_STATE(1262)] = 43286, - [SMALL_STATE(1263)] = 43311, - [SMALL_STATE(1264)] = 43336, - [SMALL_STATE(1265)] = 43353, - [SMALL_STATE(1266)] = 43382, - [SMALL_STATE(1267)] = 43411, - [SMALL_STATE(1268)] = 43438, - [SMALL_STATE(1269)] = 43467, - [SMALL_STATE(1270)] = 43496, - [SMALL_STATE(1271)] = 43525, - [SMALL_STATE(1272)] = 43542, - [SMALL_STATE(1273)] = 43559, - [SMALL_STATE(1274)] = 43584, - [SMALL_STATE(1275)] = 43617, - [SMALL_STATE(1276)] = 43645, - [SMALL_STATE(1277)] = 43675, - [SMALL_STATE(1278)] = 43703, - [SMALL_STATE(1279)] = 43729, - [SMALL_STATE(1280)] = 43761, - [SMALL_STATE(1281)] = 43793, - [SMALL_STATE(1282)] = 43815, - [SMALL_STATE(1283)] = 43845, - [SMALL_STATE(1284)] = 43877, - [SMALL_STATE(1285)] = 43909, - [SMALL_STATE(1286)] = 43939, - [SMALL_STATE(1287)] = 43969, - [SMALL_STATE(1288)] = 43999, - [SMALL_STATE(1289)] = 44025, - [SMALL_STATE(1290)] = 44053, - [SMALL_STATE(1291)] = 44083, - [SMALL_STATE(1292)] = 44109, - [SMALL_STATE(1293)] = 44135, - [SMALL_STATE(1294)] = 44161, - [SMALL_STATE(1295)] = 44187, - [SMALL_STATE(1296)] = 44214, - [SMALL_STATE(1297)] = 44241, - [SMALL_STATE(1298)] = 44264, - [SMALL_STATE(1299)] = 44293, - [SMALL_STATE(1300)] = 44320, - [SMALL_STATE(1301)] = 44349, - [SMALL_STATE(1302)] = 44374, - [SMALL_STATE(1303)] = 44401, - [SMALL_STATE(1304)] = 44428, - [SMALL_STATE(1305)] = 44451, - [SMALL_STATE(1306)] = 44476, - [SMALL_STATE(1307)] = 44501, - [SMALL_STATE(1308)] = 44528, - [SMALL_STATE(1309)] = 44551, - [SMALL_STATE(1310)] = 44576, - [SMALL_STATE(1311)] = 44603, - [SMALL_STATE(1312)] = 44632, - [SMALL_STATE(1313)] = 44657, - [SMALL_STATE(1314)] = 44680, - [SMALL_STATE(1315)] = 44709, - [SMALL_STATE(1316)] = 44736, - [SMALL_STATE(1317)] = 44763, - [SMALL_STATE(1318)] = 44790, - [SMALL_STATE(1319)] = 44817, - [SMALL_STATE(1320)] = 44844, - [SMALL_STATE(1321)] = 44871, - [SMALL_STATE(1322)] = 44894, - [SMALL_STATE(1323)] = 44921, - [SMALL_STATE(1324)] = 44948, - [SMALL_STATE(1325)] = 44975, - [SMALL_STATE(1326)] = 45002, - [SMALL_STATE(1327)] = 45016, - [SMALL_STATE(1328)] = 45032, - [SMALL_STATE(1329)] = 45048, - [SMALL_STATE(1330)] = 45062, - [SMALL_STATE(1331)] = 45076, - [SMALL_STATE(1332)] = 45090, - [SMALL_STATE(1333)] = 45104, - [SMALL_STATE(1334)] = 45128, - [SMALL_STATE(1335)] = 45152, - [SMALL_STATE(1336)] = 45178, - [SMALL_STATE(1337)] = 45202, - [SMALL_STATE(1338)] = 45224, - [SMALL_STATE(1339)] = 45248, - [SMALL_STATE(1340)] = 45274, - [SMALL_STATE(1341)] = 45298, - [SMALL_STATE(1342)] = 45324, - [SMALL_STATE(1343)] = 45348, - [SMALL_STATE(1344)] = 45372, - [SMALL_STATE(1345)] = 45396, - [SMALL_STATE(1346)] = 45420, - [SMALL_STATE(1347)] = 45444, - [SMALL_STATE(1348)] = 45468, - [SMALL_STATE(1349)] = 45492, - [SMALL_STATE(1350)] = 45508, - [SMALL_STATE(1351)] = 45532, - [SMALL_STATE(1352)] = 45552, - [SMALL_STATE(1353)] = 45576, - [SMALL_STATE(1354)] = 45600, - [SMALL_STATE(1355)] = 45624, - [SMALL_STATE(1356)] = 45648, - [SMALL_STATE(1357)] = 45664, - [SMALL_STATE(1358)] = 45690, - [SMALL_STATE(1359)] = 45713, - [SMALL_STATE(1360)] = 45736, - [SMALL_STATE(1361)] = 45759, - [SMALL_STATE(1362)] = 45776, - [SMALL_STATE(1363)] = 45799, - [SMALL_STATE(1364)] = 45816, - [SMALL_STATE(1365)] = 45837, - [SMALL_STATE(1366)] = 45860, - [SMALL_STATE(1367)] = 45883, - [SMALL_STATE(1368)] = 45906, - [SMALL_STATE(1369)] = 45923, - [SMALL_STATE(1370)] = 45940, - [SMALL_STATE(1371)] = 45963, - [SMALL_STATE(1372)] = 45986, - [SMALL_STATE(1373)] = 46007, - [SMALL_STATE(1374)] = 46030, - [SMALL_STATE(1375)] = 46053, - [SMALL_STATE(1376)] = 46068, - [SMALL_STATE(1377)] = 46091, - [SMALL_STATE(1378)] = 46114, - [SMALL_STATE(1379)] = 46137, - [SMALL_STATE(1380)] = 46156, - [SMALL_STATE(1381)] = 46173, - [SMALL_STATE(1382)] = 46196, - [SMALL_STATE(1383)] = 46219, - [SMALL_STATE(1384)] = 46236, - [SMALL_STATE(1385)] = 46259, - [SMALL_STATE(1386)] = 46282, - [SMALL_STATE(1387)] = 46303, - [SMALL_STATE(1388)] = 46326, - [SMALL_STATE(1389)] = 46349, - [SMALL_STATE(1390)] = 46372, - [SMALL_STATE(1391)] = 46395, - [SMALL_STATE(1392)] = 46412, - [SMALL_STATE(1393)] = 46429, - [SMALL_STATE(1394)] = 46452, - [SMALL_STATE(1395)] = 46471, - [SMALL_STATE(1396)] = 46494, - [SMALL_STATE(1397)] = 46517, - [SMALL_STATE(1398)] = 46534, - [SMALL_STATE(1399)] = 46557, - [SMALL_STATE(1400)] = 46580, - [SMALL_STATE(1401)] = 46603, - [SMALL_STATE(1402)] = 46626, - [SMALL_STATE(1403)] = 46649, - [SMALL_STATE(1404)] = 46668, - [SMALL_STATE(1405)] = 46691, - [SMALL_STATE(1406)] = 46714, - [SMALL_STATE(1407)] = 46733, - [SMALL_STATE(1408)] = 46752, - [SMALL_STATE(1409)] = 46769, - [SMALL_STATE(1410)] = 46792, - [SMALL_STATE(1411)] = 46815, - [SMALL_STATE(1412)] = 46838, - [SMALL_STATE(1413)] = 46855, - [SMALL_STATE(1414)] = 46878, - [SMALL_STATE(1415)] = 46901, - [SMALL_STATE(1416)] = 46924, - [SMALL_STATE(1417)] = 46941, - [SMALL_STATE(1418)] = 46964, - [SMALL_STATE(1419)] = 46979, - [SMALL_STATE(1420)] = 46998, - [SMALL_STATE(1421)] = 47017, - [SMALL_STATE(1422)] = 47040, - [SMALL_STATE(1423)] = 47061, - [SMALL_STATE(1424)] = 47084, - [SMALL_STATE(1425)] = 47107, - [SMALL_STATE(1426)] = 47130, - [SMALL_STATE(1427)] = 47153, - [SMALL_STATE(1428)] = 47176, - [SMALL_STATE(1429)] = 47199, - [SMALL_STATE(1430)] = 47220, - [SMALL_STATE(1431)] = 47243, - [SMALL_STATE(1432)] = 47260, - [SMALL_STATE(1433)] = 47283, - [SMALL_STATE(1434)] = 47300, - [SMALL_STATE(1435)] = 47317, - [SMALL_STATE(1436)] = 47333, - [SMALL_STATE(1437)] = 47349, - [SMALL_STATE(1438)] = 47369, - [SMALL_STATE(1439)] = 47387, - [SMALL_STATE(1440)] = 47405, - [SMALL_STATE(1441)] = 47421, - [SMALL_STATE(1442)] = 47437, - [SMALL_STATE(1443)] = 47453, - [SMALL_STATE(1444)] = 47469, - [SMALL_STATE(1445)] = 47489, - [SMALL_STATE(1446)] = 47503, - [SMALL_STATE(1447)] = 47521, - [SMALL_STATE(1448)] = 47541, - [SMALL_STATE(1449)] = 47555, - [SMALL_STATE(1450)] = 47571, - [SMALL_STATE(1451)] = 47591, - [SMALL_STATE(1452)] = 47607, - [SMALL_STATE(1453)] = 47625, - [SMALL_STATE(1454)] = 47641, - [SMALL_STATE(1455)] = 47657, - [SMALL_STATE(1456)] = 47673, - [SMALL_STATE(1457)] = 47689, - [SMALL_STATE(1458)] = 47705, - [SMALL_STATE(1459)] = 47725, - [SMALL_STATE(1460)] = 47741, - [SMALL_STATE(1461)] = 47761, - [SMALL_STATE(1462)] = 47779, - [SMALL_STATE(1463)] = 47799, - [SMALL_STATE(1464)] = 47815, - [SMALL_STATE(1465)] = 47833, - [SMALL_STATE(1466)] = 47853, - [SMALL_STATE(1467)] = 47873, - [SMALL_STATE(1468)] = 47893, - [SMALL_STATE(1469)] = 47909, - [SMALL_STATE(1470)] = 47929, - [SMALL_STATE(1471)] = 47945, - [SMALL_STATE(1472)] = 47965, - [SMALL_STATE(1473)] = 47981, - [SMALL_STATE(1474)] = 48001, - [SMALL_STATE(1475)] = 48017, - [SMALL_STATE(1476)] = 48030, - [SMALL_STATE(1477)] = 48043, - [SMALL_STATE(1478)] = 48058, - [SMALL_STATE(1479)] = 48075, - [SMALL_STATE(1480)] = 48092, - [SMALL_STATE(1481)] = 48109, - [SMALL_STATE(1482)] = 48126, - [SMALL_STATE(1483)] = 48141, - [SMALL_STATE(1484)] = 48154, - [SMALL_STATE(1485)] = 48171, - [SMALL_STATE(1486)] = 48184, - [SMALL_STATE(1487)] = 48201, - [SMALL_STATE(1488)] = 48214, - [SMALL_STATE(1489)] = 48231, - [SMALL_STATE(1490)] = 48244, - [SMALL_STATE(1491)] = 48259, - [SMALL_STATE(1492)] = 48274, - [SMALL_STATE(1493)] = 48291, - [SMALL_STATE(1494)] = 48306, - [SMALL_STATE(1495)] = 48323, - [SMALL_STATE(1496)] = 48340, - [SMALL_STATE(1497)] = 48355, - [SMALL_STATE(1498)] = 48372, - [SMALL_STATE(1499)] = 48389, - [SMALL_STATE(1500)] = 48406, - [SMALL_STATE(1501)] = 48423, - [SMALL_STATE(1502)] = 48438, - [SMALL_STATE(1503)] = 48455, - [SMALL_STATE(1504)] = 48472, - [SMALL_STATE(1505)] = 48489, - [SMALL_STATE(1506)] = 48504, - [SMALL_STATE(1507)] = 48519, - [SMALL_STATE(1508)] = 48536, - [SMALL_STATE(1509)] = 48553, - [SMALL_STATE(1510)] = 48570, - [SMALL_STATE(1511)] = 48587, - [SMALL_STATE(1512)] = 48604, - [SMALL_STATE(1513)] = 48617, - [SMALL_STATE(1514)] = 48634, - [SMALL_STATE(1515)] = 48649, - [SMALL_STATE(1516)] = 48666, - [SMALL_STATE(1517)] = 48681, - [SMALL_STATE(1518)] = 48694, - [SMALL_STATE(1519)] = 48707, - [SMALL_STATE(1520)] = 48722, - [SMALL_STATE(1521)] = 48739, - [SMALL_STATE(1522)] = 48756, - [SMALL_STATE(1523)] = 48771, - [SMALL_STATE(1524)] = 48788, - [SMALL_STATE(1525)] = 48801, - [SMALL_STATE(1526)] = 48814, - [SMALL_STATE(1527)] = 48827, - [SMALL_STATE(1528)] = 48844, - [SMALL_STATE(1529)] = 48859, - [SMALL_STATE(1530)] = 48876, - [SMALL_STATE(1531)] = 48893, - [SMALL_STATE(1532)] = 48906, - [SMALL_STATE(1533)] = 48923, - [SMALL_STATE(1534)] = 48940, - [SMALL_STATE(1535)] = 48955, - [SMALL_STATE(1536)] = 48970, - [SMALL_STATE(1537)] = 48985, - [SMALL_STATE(1538)] = 49002, - [SMALL_STATE(1539)] = 49019, - [SMALL_STATE(1540)] = 49034, - [SMALL_STATE(1541)] = 49049, - [SMALL_STATE(1542)] = 49066, - [SMALL_STATE(1543)] = 49081, - [SMALL_STATE(1544)] = 49098, - [SMALL_STATE(1545)] = 49115, - [SMALL_STATE(1546)] = 49132, - [SMALL_STATE(1547)] = 49149, - [SMALL_STATE(1548)] = 49162, - [SMALL_STATE(1549)] = 49179, - [SMALL_STATE(1550)] = 49194, - [SMALL_STATE(1551)] = 49209, - [SMALL_STATE(1552)] = 49226, - [SMALL_STATE(1553)] = 49239, - [SMALL_STATE(1554)] = 49256, - [SMALL_STATE(1555)] = 49271, - [SMALL_STATE(1556)] = 49288, - [SMALL_STATE(1557)] = 49302, - [SMALL_STATE(1558)] = 49316, - [SMALL_STATE(1559)] = 49330, - [SMALL_STATE(1560)] = 49342, - [SMALL_STATE(1561)] = 49356, - [SMALL_STATE(1562)] = 49370, - [SMALL_STATE(1563)] = 49384, - [SMALL_STATE(1564)] = 49398, - [SMALL_STATE(1565)] = 49408, - [SMALL_STATE(1566)] = 49418, - [SMALL_STATE(1567)] = 49432, - [SMALL_STATE(1568)] = 49444, - [SMALL_STATE(1569)] = 49458, - [SMALL_STATE(1570)] = 49468, - [SMALL_STATE(1571)] = 49478, - [SMALL_STATE(1572)] = 49492, - [SMALL_STATE(1573)] = 49502, - [SMALL_STATE(1574)] = 49516, - [SMALL_STATE(1575)] = 49530, - [SMALL_STATE(1576)] = 49544, - [SMALL_STATE(1577)] = 49558, - [SMALL_STATE(1578)] = 49572, - [SMALL_STATE(1579)] = 49586, - [SMALL_STATE(1580)] = 49600, - [SMALL_STATE(1581)] = 49612, - [SMALL_STATE(1582)] = 49626, - [SMALL_STATE(1583)] = 49640, - [SMALL_STATE(1584)] = 49654, - [SMALL_STATE(1585)] = 49666, - [SMALL_STATE(1586)] = 49680, - [SMALL_STATE(1587)] = 49694, - [SMALL_STATE(1588)] = 49706, - [SMALL_STATE(1589)] = 49720, - [SMALL_STATE(1590)] = 49734, - [SMALL_STATE(1591)] = 49748, - [SMALL_STATE(1592)] = 49762, - [SMALL_STATE(1593)] = 49776, - [SMALL_STATE(1594)] = 49790, - [SMALL_STATE(1595)] = 49804, - [SMALL_STATE(1596)] = 49816, - [SMALL_STATE(1597)] = 49830, - [SMALL_STATE(1598)] = 49844, - [SMALL_STATE(1599)] = 49858, - [SMALL_STATE(1600)] = 49872, - [SMALL_STATE(1601)] = 49884, - [SMALL_STATE(1602)] = 49898, - [SMALL_STATE(1603)] = 49910, - [SMALL_STATE(1604)] = 49924, - [SMALL_STATE(1605)] = 49936, - [SMALL_STATE(1606)] = 49950, - [SMALL_STATE(1607)] = 49964, - [SMALL_STATE(1608)] = 49978, - [SMALL_STATE(1609)] = 49992, - [SMALL_STATE(1610)] = 50006, - [SMALL_STATE(1611)] = 50020, - [SMALL_STATE(1612)] = 50034, - [SMALL_STATE(1613)] = 50048, - [SMALL_STATE(1614)] = 50062, - [SMALL_STATE(1615)] = 50076, - [SMALL_STATE(1616)] = 50090, - [SMALL_STATE(1617)] = 50104, - [SMALL_STATE(1618)] = 50118, - [SMALL_STATE(1619)] = 50132, - [SMALL_STATE(1620)] = 50146, - [SMALL_STATE(1621)] = 50160, - [SMALL_STATE(1622)] = 50170, - [SMALL_STATE(1623)] = 50184, - [SMALL_STATE(1624)] = 50194, - [SMALL_STATE(1625)] = 50208, - [SMALL_STATE(1626)] = 50222, - [SMALL_STATE(1627)] = 50234, - [SMALL_STATE(1628)] = 50244, - [SMALL_STATE(1629)] = 50258, - [SMALL_STATE(1630)] = 50272, - [SMALL_STATE(1631)] = 50284, - [SMALL_STATE(1632)] = 50298, - [SMALL_STATE(1633)] = 50312, - [SMALL_STATE(1634)] = 50326, - [SMALL_STATE(1635)] = 50340, - [SMALL_STATE(1636)] = 50354, - [SMALL_STATE(1637)] = 50368, - [SMALL_STATE(1638)] = 50382, - [SMALL_STATE(1639)] = 50396, - [SMALL_STATE(1640)] = 50410, - [SMALL_STATE(1641)] = 50424, - [SMALL_STATE(1642)] = 50438, - [SMALL_STATE(1643)] = 50452, - [SMALL_STATE(1644)] = 50466, - [SMALL_STATE(1645)] = 50476, - [SMALL_STATE(1646)] = 50486, - [SMALL_STATE(1647)] = 50498, - [SMALL_STATE(1648)] = 50512, - [SMALL_STATE(1649)] = 50526, - [SMALL_STATE(1650)] = 50540, - [SMALL_STATE(1651)] = 50554, - [SMALL_STATE(1652)] = 50568, - [SMALL_STATE(1653)] = 50578, - [SMALL_STATE(1654)] = 50592, - [SMALL_STATE(1655)] = 50602, - [SMALL_STATE(1656)] = 50616, - [SMALL_STATE(1657)] = 50630, - [SMALL_STATE(1658)] = 50640, - [SMALL_STATE(1659)] = 50654, - [SMALL_STATE(1660)] = 50668, - [SMALL_STATE(1661)] = 50682, - [SMALL_STATE(1662)] = 50696, - [SMALL_STATE(1663)] = 50710, - [SMALL_STATE(1664)] = 50722, - [SMALL_STATE(1665)] = 50736, - [SMALL_STATE(1666)] = 50750, - [SMALL_STATE(1667)] = 50764, - [SMALL_STATE(1668)] = 50778, - [SMALL_STATE(1669)] = 50792, - [SMALL_STATE(1670)] = 50806, - [SMALL_STATE(1671)] = 50820, - [SMALL_STATE(1672)] = 50834, - [SMALL_STATE(1673)] = 50848, - [SMALL_STATE(1674)] = 50862, - [SMALL_STATE(1675)] = 50876, - [SMALL_STATE(1676)] = 50890, - [SMALL_STATE(1677)] = 50902, - [SMALL_STATE(1678)] = 50914, - [SMALL_STATE(1679)] = 50928, - [SMALL_STATE(1680)] = 50942, - [SMALL_STATE(1681)] = 50956, - [SMALL_STATE(1682)] = 50970, - [SMALL_STATE(1683)] = 50980, - [SMALL_STATE(1684)] = 50994, - [SMALL_STATE(1685)] = 51006, - [SMALL_STATE(1686)] = 51020, - [SMALL_STATE(1687)] = 51034, - [SMALL_STATE(1688)] = 51048, - [SMALL_STATE(1689)] = 51062, - [SMALL_STATE(1690)] = 51076, - [SMALL_STATE(1691)] = 51090, - [SMALL_STATE(1692)] = 51104, - [SMALL_STATE(1693)] = 51116, - [SMALL_STATE(1694)] = 51130, - [SMALL_STATE(1695)] = 51144, - [SMALL_STATE(1696)] = 51158, - [SMALL_STATE(1697)] = 51172, - [SMALL_STATE(1698)] = 51184, - [SMALL_STATE(1699)] = 51198, - [SMALL_STATE(1700)] = 51212, - [SMALL_STATE(1701)] = 51224, - [SMALL_STATE(1702)] = 51236, - [SMALL_STATE(1703)] = 51250, - [SMALL_STATE(1704)] = 51264, - [SMALL_STATE(1705)] = 51278, - [SMALL_STATE(1706)] = 51290, - [SMALL_STATE(1707)] = 51304, - [SMALL_STATE(1708)] = 51318, - [SMALL_STATE(1709)] = 51330, - [SMALL_STATE(1710)] = 51344, - [SMALL_STATE(1711)] = 51358, - [SMALL_STATE(1712)] = 51370, - [SMALL_STATE(1713)] = 51382, - [SMALL_STATE(1714)] = 51396, - [SMALL_STATE(1715)] = 51410, - [SMALL_STATE(1716)] = 51424, - [SMALL_STATE(1717)] = 51438, - [SMALL_STATE(1718)] = 51452, - [SMALL_STATE(1719)] = 51466, - [SMALL_STATE(1720)] = 51480, - [SMALL_STATE(1721)] = 51492, - [SMALL_STATE(1722)] = 51506, - [SMALL_STATE(1723)] = 51520, - [SMALL_STATE(1724)] = 51534, - [SMALL_STATE(1725)] = 51548, - [SMALL_STATE(1726)] = 51560, - [SMALL_STATE(1727)] = 51574, - [SMALL_STATE(1728)] = 51588, - [SMALL_STATE(1729)] = 51602, - [SMALL_STATE(1730)] = 51616, - [SMALL_STATE(1731)] = 51630, - [SMALL_STATE(1732)] = 51644, - [SMALL_STATE(1733)] = 51658, - [SMALL_STATE(1734)] = 51672, - [SMALL_STATE(1735)] = 51686, - [SMALL_STATE(1736)] = 51696, - [SMALL_STATE(1737)] = 51710, - [SMALL_STATE(1738)] = 51724, - [SMALL_STATE(1739)] = 51734, - [SMALL_STATE(1740)] = 51748, - [SMALL_STATE(1741)] = 51762, - [SMALL_STATE(1742)] = 51776, - [SMALL_STATE(1743)] = 51790, - [SMALL_STATE(1744)] = 51804, - [SMALL_STATE(1745)] = 51814, - [SMALL_STATE(1746)] = 51828, - [SMALL_STATE(1747)] = 51842, - [SMALL_STATE(1748)] = 51852, - [SMALL_STATE(1749)] = 51866, - [SMALL_STATE(1750)] = 51876, - [SMALL_STATE(1751)] = 51886, - [SMALL_STATE(1752)] = 51900, - [SMALL_STATE(1753)] = 51910, - [SMALL_STATE(1754)] = 51924, - [SMALL_STATE(1755)] = 51936, - [SMALL_STATE(1756)] = 51946, - [SMALL_STATE(1757)] = 51960, - [SMALL_STATE(1758)] = 51972, - [SMALL_STATE(1759)] = 51986, - [SMALL_STATE(1760)] = 52000, - [SMALL_STATE(1761)] = 52010, - [SMALL_STATE(1762)] = 52024, - [SMALL_STATE(1763)] = 52038, - [SMALL_STATE(1764)] = 52052, - [SMALL_STATE(1765)] = 52066, - [SMALL_STATE(1766)] = 52080, - [SMALL_STATE(1767)] = 52092, - [SMALL_STATE(1768)] = 52106, - [SMALL_STATE(1769)] = 52120, - [SMALL_STATE(1770)] = 52134, - [SMALL_STATE(1771)] = 52148, - [SMALL_STATE(1772)] = 52162, - [SMALL_STATE(1773)] = 52176, - [SMALL_STATE(1774)] = 52188, - [SMALL_STATE(1775)] = 52200, - [SMALL_STATE(1776)] = 52214, - [SMALL_STATE(1777)] = 52228, - [SMALL_STATE(1778)] = 52240, - [SMALL_STATE(1779)] = 52254, - [SMALL_STATE(1780)] = 52268, - [SMALL_STATE(1781)] = 52282, - [SMALL_STATE(1782)] = 52296, - [SMALL_STATE(1783)] = 52308, - [SMALL_STATE(1784)] = 52322, - [SMALL_STATE(1785)] = 52334, - [SMALL_STATE(1786)] = 52348, - [SMALL_STATE(1787)] = 52360, - [SMALL_STATE(1788)] = 52374, - [SMALL_STATE(1789)] = 52388, - [SMALL_STATE(1790)] = 52402, - [SMALL_STATE(1791)] = 52416, - [SMALL_STATE(1792)] = 52430, - [SMALL_STATE(1793)] = 52444, - [SMALL_STATE(1794)] = 52456, - [SMALL_STATE(1795)] = 52470, - [SMALL_STATE(1796)] = 52484, - [SMALL_STATE(1797)] = 52498, - [SMALL_STATE(1798)] = 52512, - [SMALL_STATE(1799)] = 52526, - [SMALL_STATE(1800)] = 52540, - [SMALL_STATE(1801)] = 52554, - [SMALL_STATE(1802)] = 52565, - [SMALL_STATE(1803)] = 52574, - [SMALL_STATE(1804)] = 52583, - [SMALL_STATE(1805)] = 52594, - [SMALL_STATE(1806)] = 52605, - [SMALL_STATE(1807)] = 52614, - [SMALL_STATE(1808)] = 52625, - [SMALL_STATE(1809)] = 52636, - [SMALL_STATE(1810)] = 52647, - [SMALL_STATE(1811)] = 52658, - [SMALL_STATE(1812)] = 52669, - [SMALL_STATE(1813)] = 52680, - [SMALL_STATE(1814)] = 52691, - [SMALL_STATE(1815)] = 52702, - [SMALL_STATE(1816)] = 52713, - [SMALL_STATE(1817)] = 52724, - [SMALL_STATE(1818)] = 52733, - [SMALL_STATE(1819)] = 52744, - [SMALL_STATE(1820)] = 52755, - [SMALL_STATE(1821)] = 52764, - [SMALL_STATE(1822)] = 52775, - [SMALL_STATE(1823)] = 52786, - [SMALL_STATE(1824)] = 52797, - [SMALL_STATE(1825)] = 52808, - [SMALL_STATE(1826)] = 52819, - [SMALL_STATE(1827)] = 52830, - [SMALL_STATE(1828)] = 52841, - [SMALL_STATE(1829)] = 52852, - [SMALL_STATE(1830)] = 52863, - [SMALL_STATE(1831)] = 52872, - [SMALL_STATE(1832)] = 52883, - [SMALL_STATE(1833)] = 52892, - [SMALL_STATE(1834)] = 52903, - [SMALL_STATE(1835)] = 52912, - [SMALL_STATE(1836)] = 52921, - [SMALL_STATE(1837)] = 52932, - [SMALL_STATE(1838)] = 52941, - [SMALL_STATE(1839)] = 52952, - [SMALL_STATE(1840)] = 52963, - [SMALL_STATE(1841)] = 52974, - [SMALL_STATE(1842)] = 52985, - [SMALL_STATE(1843)] = 52994, - [SMALL_STATE(1844)] = 53003, - [SMALL_STATE(1845)] = 53012, - [SMALL_STATE(1846)] = 53021, - [SMALL_STATE(1847)] = 53030, - [SMALL_STATE(1848)] = 53039, - [SMALL_STATE(1849)] = 53050, - [SMALL_STATE(1850)] = 53061, - [SMALL_STATE(1851)] = 53070, - [SMALL_STATE(1852)] = 53081, - [SMALL_STATE(1853)] = 53092, - [SMALL_STATE(1854)] = 53103, - [SMALL_STATE(1855)] = 53114, - [SMALL_STATE(1856)] = 53123, - [SMALL_STATE(1857)] = 53134, - [SMALL_STATE(1858)] = 53145, - [SMALL_STATE(1859)] = 53156, - [SMALL_STATE(1860)] = 53167, - [SMALL_STATE(1861)] = 53178, - [SMALL_STATE(1862)] = 53189, - [SMALL_STATE(1863)] = 53200, - [SMALL_STATE(1864)] = 53211, - [SMALL_STATE(1865)] = 53222, - [SMALL_STATE(1866)] = 53233, - [SMALL_STATE(1867)] = 53244, - [SMALL_STATE(1868)] = 53255, - [SMALL_STATE(1869)] = 53266, - [SMALL_STATE(1870)] = 53277, - [SMALL_STATE(1871)] = 53288, - [SMALL_STATE(1872)] = 53299, - [SMALL_STATE(1873)] = 53310, - [SMALL_STATE(1874)] = 53319, - [SMALL_STATE(1875)] = 53330, - [SMALL_STATE(1876)] = 53341, - [SMALL_STATE(1877)] = 53350, - [SMALL_STATE(1878)] = 53361, - [SMALL_STATE(1879)] = 53372, - [SMALL_STATE(1880)] = 53383, - [SMALL_STATE(1881)] = 53394, - [SMALL_STATE(1882)] = 53405, - [SMALL_STATE(1883)] = 53416, - [SMALL_STATE(1884)] = 53427, - [SMALL_STATE(1885)] = 53438, - [SMALL_STATE(1886)] = 53449, - [SMALL_STATE(1887)] = 53460, - [SMALL_STATE(1888)] = 53469, - [SMALL_STATE(1889)] = 53478, - [SMALL_STATE(1890)] = 53489, - [SMALL_STATE(1891)] = 53500, - [SMALL_STATE(1892)] = 53511, - [SMALL_STATE(1893)] = 53520, - [SMALL_STATE(1894)] = 53531, - [SMALL_STATE(1895)] = 53542, - [SMALL_STATE(1896)] = 53553, - [SMALL_STATE(1897)] = 53564, - [SMALL_STATE(1898)] = 53575, - [SMALL_STATE(1899)] = 53586, - [SMALL_STATE(1900)] = 53597, - [SMALL_STATE(1901)] = 53608, - [SMALL_STATE(1902)] = 53617, - [SMALL_STATE(1903)] = 53626, - [SMALL_STATE(1904)] = 53635, - [SMALL_STATE(1905)] = 53646, - [SMALL_STATE(1906)] = 53657, - [SMALL_STATE(1907)] = 53666, - [SMALL_STATE(1908)] = 53675, - [SMALL_STATE(1909)] = 53686, - [SMALL_STATE(1910)] = 53695, - [SMALL_STATE(1911)] = 53704, - [SMALL_STATE(1912)] = 53715, - [SMALL_STATE(1913)] = 53726, - [SMALL_STATE(1914)] = 53737, - [SMALL_STATE(1915)] = 53748, - [SMALL_STATE(1916)] = 53759, - [SMALL_STATE(1917)] = 53770, - [SMALL_STATE(1918)] = 53781, - [SMALL_STATE(1919)] = 53792, - [SMALL_STATE(1920)] = 53803, - [SMALL_STATE(1921)] = 53816, - [SMALL_STATE(1922)] = 53827, - [SMALL_STATE(1923)] = 53838, - [SMALL_STATE(1924)] = 53849, - [SMALL_STATE(1925)] = 53860, - [SMALL_STATE(1926)] = 53871, - [SMALL_STATE(1927)] = 53882, - [SMALL_STATE(1928)] = 53893, - [SMALL_STATE(1929)] = 53902, - [SMALL_STATE(1930)] = 53911, - [SMALL_STATE(1931)] = 53922, - [SMALL_STATE(1932)] = 53931, - [SMALL_STATE(1933)] = 53942, - [SMALL_STATE(1934)] = 53953, - [SMALL_STATE(1935)] = 53964, - [SMALL_STATE(1936)] = 53973, - [SMALL_STATE(1937)] = 53982, - [SMALL_STATE(1938)] = 53993, - [SMALL_STATE(1939)] = 54002, - [SMALL_STATE(1940)] = 54013, - [SMALL_STATE(1941)] = 54024, - [SMALL_STATE(1942)] = 54035, - [SMALL_STATE(1943)] = 54046, - [SMALL_STATE(1944)] = 54057, - [SMALL_STATE(1945)] = 54066, - [SMALL_STATE(1946)] = 54077, - [SMALL_STATE(1947)] = 54088, - [SMALL_STATE(1948)] = 54097, - [SMALL_STATE(1949)] = 54108, - [SMALL_STATE(1950)] = 54119, - [SMALL_STATE(1951)] = 54130, - [SMALL_STATE(1952)] = 54141, - [SMALL_STATE(1953)] = 54150, - [SMALL_STATE(1954)] = 54161, - [SMALL_STATE(1955)] = 54172, - [SMALL_STATE(1956)] = 54183, - [SMALL_STATE(1957)] = 54194, - [SMALL_STATE(1958)] = 54205, - [SMALL_STATE(1959)] = 54214, - [SMALL_STATE(1960)] = 54223, - [SMALL_STATE(1961)] = 54234, - [SMALL_STATE(1962)] = 54245, - [SMALL_STATE(1963)] = 54254, - [SMALL_STATE(1964)] = 54265, - [SMALL_STATE(1965)] = 54274, - [SMALL_STATE(1966)] = 54285, - [SMALL_STATE(1967)] = 54296, - [SMALL_STATE(1968)] = 54307, - [SMALL_STATE(1969)] = 54318, - [SMALL_STATE(1970)] = 54329, - [SMALL_STATE(1971)] = 54338, - [SMALL_STATE(1972)] = 54347, - [SMALL_STATE(1973)] = 54358, - [SMALL_STATE(1974)] = 54369, - [SMALL_STATE(1975)] = 54380, - [SMALL_STATE(1976)] = 54391, - [SMALL_STATE(1977)] = 54402, - [SMALL_STATE(1978)] = 54413, - [SMALL_STATE(1979)] = 54422, - [SMALL_STATE(1980)] = 54431, - [SMALL_STATE(1981)] = 54442, - [SMALL_STATE(1982)] = 54453, - [SMALL_STATE(1983)] = 54464, - [SMALL_STATE(1984)] = 54473, - [SMALL_STATE(1985)] = 54482, - [SMALL_STATE(1986)] = 54490, - [SMALL_STATE(1987)] = 54498, - [SMALL_STATE(1988)] = 54506, - [SMALL_STATE(1989)] = 54514, - [SMALL_STATE(1990)] = 54522, - [SMALL_STATE(1991)] = 54530, - [SMALL_STATE(1992)] = 54538, - [SMALL_STATE(1993)] = 54546, - [SMALL_STATE(1994)] = 54554, - [SMALL_STATE(1995)] = 54562, - [SMALL_STATE(1996)] = 54570, - [SMALL_STATE(1997)] = 54578, - [SMALL_STATE(1998)] = 54586, - [SMALL_STATE(1999)] = 54594, - [SMALL_STATE(2000)] = 54602, - [SMALL_STATE(2001)] = 54610, - [SMALL_STATE(2002)] = 54618, - [SMALL_STATE(2003)] = 54626, - [SMALL_STATE(2004)] = 54634, - [SMALL_STATE(2005)] = 54642, - [SMALL_STATE(2006)] = 54650, - [SMALL_STATE(2007)] = 54658, - [SMALL_STATE(2008)] = 54666, - [SMALL_STATE(2009)] = 54674, - [SMALL_STATE(2010)] = 54682, - [SMALL_STATE(2011)] = 54690, - [SMALL_STATE(2012)] = 54698, - [SMALL_STATE(2013)] = 54706, - [SMALL_STATE(2014)] = 54714, - [SMALL_STATE(2015)] = 54722, - [SMALL_STATE(2016)] = 54730, - [SMALL_STATE(2017)] = 54738, - [SMALL_STATE(2018)] = 54746, - [SMALL_STATE(2019)] = 54754, - [SMALL_STATE(2020)] = 54762, - [SMALL_STATE(2021)] = 54770, - [SMALL_STATE(2022)] = 54778, - [SMALL_STATE(2023)] = 54786, - [SMALL_STATE(2024)] = 54794, - [SMALL_STATE(2025)] = 54802, - [SMALL_STATE(2026)] = 54810, - [SMALL_STATE(2027)] = 54818, - [SMALL_STATE(2028)] = 54826, - [SMALL_STATE(2029)] = 54834, - [SMALL_STATE(2030)] = 54842, - [SMALL_STATE(2031)] = 54850, - [SMALL_STATE(2032)] = 54858, - [SMALL_STATE(2033)] = 54866, - [SMALL_STATE(2034)] = 54874, - [SMALL_STATE(2035)] = 54882, - [SMALL_STATE(2036)] = 54890, - [SMALL_STATE(2037)] = 54898, - [SMALL_STATE(2038)] = 54906, - [SMALL_STATE(2039)] = 54914, - [SMALL_STATE(2040)] = 54922, - [SMALL_STATE(2041)] = 54930, - [SMALL_STATE(2042)] = 54938, - [SMALL_STATE(2043)] = 54946, - [SMALL_STATE(2044)] = 54954, - [SMALL_STATE(2045)] = 54962, - [SMALL_STATE(2046)] = 54970, - [SMALL_STATE(2047)] = 54978, - [SMALL_STATE(2048)] = 54986, - [SMALL_STATE(2049)] = 54994, - [SMALL_STATE(2050)] = 55002, - [SMALL_STATE(2051)] = 55010, - [SMALL_STATE(2052)] = 55018, - [SMALL_STATE(2053)] = 55026, - [SMALL_STATE(2054)] = 55034, - [SMALL_STATE(2055)] = 55042, - [SMALL_STATE(2056)] = 55050, - [SMALL_STATE(2057)] = 55058, - [SMALL_STATE(2058)] = 55066, - [SMALL_STATE(2059)] = 55074, - [SMALL_STATE(2060)] = 55082, - [SMALL_STATE(2061)] = 55090, - [SMALL_STATE(2062)] = 55098, - [SMALL_STATE(2063)] = 55106, - [SMALL_STATE(2064)] = 55114, - [SMALL_STATE(2065)] = 55122, - [SMALL_STATE(2066)] = 55130, - [SMALL_STATE(2067)] = 55138, - [SMALL_STATE(2068)] = 55146, - [SMALL_STATE(2069)] = 55154, - [SMALL_STATE(2070)] = 55162, - [SMALL_STATE(2071)] = 55170, - [SMALL_STATE(2072)] = 55178, - [SMALL_STATE(2073)] = 55186, - [SMALL_STATE(2074)] = 55194, - [SMALL_STATE(2075)] = 55202, - [SMALL_STATE(2076)] = 55210, - [SMALL_STATE(2077)] = 55218, - [SMALL_STATE(2078)] = 55226, - [SMALL_STATE(2079)] = 55234, - [SMALL_STATE(2080)] = 55242, - [SMALL_STATE(2081)] = 55250, - [SMALL_STATE(2082)] = 55258, - [SMALL_STATE(2083)] = 55266, - [SMALL_STATE(2084)] = 55274, - [SMALL_STATE(2085)] = 55282, - [SMALL_STATE(2086)] = 55290, - [SMALL_STATE(2087)] = 55298, - [SMALL_STATE(2088)] = 55306, - [SMALL_STATE(2089)] = 55314, - [SMALL_STATE(2090)] = 55322, - [SMALL_STATE(2091)] = 55330, - [SMALL_STATE(2092)] = 55338, - [SMALL_STATE(2093)] = 55346, - [SMALL_STATE(2094)] = 55354, - [SMALL_STATE(2095)] = 55362, - [SMALL_STATE(2096)] = 55370, - [SMALL_STATE(2097)] = 55378, - [SMALL_STATE(2098)] = 55386, - [SMALL_STATE(2099)] = 55394, - [SMALL_STATE(2100)] = 55402, - [SMALL_STATE(2101)] = 55410, - [SMALL_STATE(2102)] = 55418, - [SMALL_STATE(2103)] = 55426, - [SMALL_STATE(2104)] = 55434, - [SMALL_STATE(2105)] = 55442, - [SMALL_STATE(2106)] = 55450, - [SMALL_STATE(2107)] = 55458, - [SMALL_STATE(2108)] = 55466, - [SMALL_STATE(2109)] = 55474, - [SMALL_STATE(2110)] = 55482, - [SMALL_STATE(2111)] = 55490, - [SMALL_STATE(2112)] = 55498, - [SMALL_STATE(2113)] = 55506, - [SMALL_STATE(2114)] = 55514, - [SMALL_STATE(2115)] = 55522, - [SMALL_STATE(2116)] = 55530, - [SMALL_STATE(2117)] = 55538, - [SMALL_STATE(2118)] = 55546, - [SMALL_STATE(2119)] = 55554, - [SMALL_STATE(2120)] = 55562, - [SMALL_STATE(2121)] = 55570, - [SMALL_STATE(2122)] = 55578, - [SMALL_STATE(2123)] = 55586, - [SMALL_STATE(2124)] = 55594, - [SMALL_STATE(2125)] = 55602, - [SMALL_STATE(2126)] = 55610, - [SMALL_STATE(2127)] = 55618, - [SMALL_STATE(2128)] = 55626, - [SMALL_STATE(2129)] = 55634, - [SMALL_STATE(2130)] = 55642, - [SMALL_STATE(2131)] = 55650, - [SMALL_STATE(2132)] = 55658, - [SMALL_STATE(2133)] = 55666, - [SMALL_STATE(2134)] = 55674, - [SMALL_STATE(2135)] = 55682, - [SMALL_STATE(2136)] = 55690, - [SMALL_STATE(2137)] = 55698, - [SMALL_STATE(2138)] = 55706, - [SMALL_STATE(2139)] = 55714, - [SMALL_STATE(2140)] = 55722, - [SMALL_STATE(2141)] = 55730, - [SMALL_STATE(2142)] = 55738, - [SMALL_STATE(2143)] = 55746, - [SMALL_STATE(2144)] = 55754, - [SMALL_STATE(2145)] = 55762, - [SMALL_STATE(2146)] = 55770, - [SMALL_STATE(2147)] = 55778, - [SMALL_STATE(2148)] = 55786, - [SMALL_STATE(2149)] = 55794, - [SMALL_STATE(2150)] = 55802, - [SMALL_STATE(2151)] = 55810, - [SMALL_STATE(2152)] = 55818, - [SMALL_STATE(2153)] = 55826, - [SMALL_STATE(2154)] = 55834, - [SMALL_STATE(2155)] = 55842, - [SMALL_STATE(2156)] = 55850, - [SMALL_STATE(2157)] = 55858, - [SMALL_STATE(2158)] = 55866, - [SMALL_STATE(2159)] = 55874, - [SMALL_STATE(2160)] = 55882, - [SMALL_STATE(2161)] = 55890, - [SMALL_STATE(2162)] = 55898, - [SMALL_STATE(2163)] = 55906, - [SMALL_STATE(2164)] = 55914, - [SMALL_STATE(2165)] = 55922, - [SMALL_STATE(2166)] = 55930, - [SMALL_STATE(2167)] = 55938, - [SMALL_STATE(2168)] = 55946, - [SMALL_STATE(2169)] = 55954, - [SMALL_STATE(2170)] = 55962, - [SMALL_STATE(2171)] = 55970, - [SMALL_STATE(2172)] = 55978, - [SMALL_STATE(2173)] = 55986, - [SMALL_STATE(2174)] = 55994, - [SMALL_STATE(2175)] = 56002, - [SMALL_STATE(2176)] = 56010, - [SMALL_STATE(2177)] = 56018, - [SMALL_STATE(2178)] = 56026, - [SMALL_STATE(2179)] = 56034, - [SMALL_STATE(2180)] = 56042, - [SMALL_STATE(2181)] = 56050, - [SMALL_STATE(2182)] = 56058, - [SMALL_STATE(2183)] = 56066, - [SMALL_STATE(2184)] = 56074, - [SMALL_STATE(2185)] = 56082, - [SMALL_STATE(2186)] = 56090, - [SMALL_STATE(2187)] = 56098, - [SMALL_STATE(2188)] = 56106, - [SMALL_STATE(2189)] = 56114, - [SMALL_STATE(2190)] = 56122, - [SMALL_STATE(2191)] = 56130, - [SMALL_STATE(2192)] = 56138, - [SMALL_STATE(2193)] = 56146, - [SMALL_STATE(2194)] = 56154, - [SMALL_STATE(2195)] = 56162, - [SMALL_STATE(2196)] = 56170, - [SMALL_STATE(2197)] = 56178, + [SMALL_STATE(634)] = 14923, + [SMALL_STATE(635)] = 14978, + [SMALL_STATE(636)] = 15033, + [SMALL_STATE(637)] = 15106, + [SMALL_STATE(638)] = 15161, + [SMALL_STATE(639)] = 15216, + [SMALL_STATE(640)] = 15271, + [SMALL_STATE(641)] = 15326, + [SMALL_STATE(642)] = 15381, + [SMALL_STATE(643)] = 15438, + [SMALL_STATE(644)] = 15495, + [SMALL_STATE(645)] = 15550, + [SMALL_STATE(646)] = 15607, + [SMALL_STATE(647)] = 15664, + [SMALL_STATE(648)] = 15721, + [SMALL_STATE(649)] = 15778, + [SMALL_STATE(650)] = 15835, + [SMALL_STATE(651)] = 15890, + [SMALL_STATE(652)] = 15945, + [SMALL_STATE(653)] = 16002, + [SMALL_STATE(654)] = 16061, + [SMALL_STATE(655)] = 16116, + [SMALL_STATE(656)] = 16171, + [SMALL_STATE(657)] = 16226, + [SMALL_STATE(658)] = 16285, + [SMALL_STATE(659)] = 16342, + [SMALL_STATE(660)] = 16397, + [SMALL_STATE(661)] = 16454, + [SMALL_STATE(662)] = 16511, + [SMALL_STATE(663)] = 16568, + [SMALL_STATE(664)] = 16625, + [SMALL_STATE(665)] = 16682, + [SMALL_STATE(666)] = 16737, + [SMALL_STATE(667)] = 16792, + [SMALL_STATE(668)] = 16847, + [SMALL_STATE(669)] = 16902, + [SMALL_STATE(670)] = 16959, + [SMALL_STATE(671)] = 17013, + [SMALL_STATE(672)] = 17067, + [SMALL_STATE(673)] = 17121, + [SMALL_STATE(674)] = 17175, + [SMALL_STATE(675)] = 17229, + [SMALL_STATE(676)] = 17283, + [SMALL_STATE(677)] = 17337, + [SMALL_STATE(678)] = 17409, + [SMALL_STATE(679)] = 17463, + [SMALL_STATE(680)] = 17517, + [SMALL_STATE(681)] = 17571, + [SMALL_STATE(682)] = 17625, + [SMALL_STATE(683)] = 17679, + [SMALL_STATE(684)] = 17733, + [SMALL_STATE(685)] = 17787, + [SMALL_STATE(686)] = 17841, + [SMALL_STATE(687)] = 17895, + [SMALL_STATE(688)] = 17949, + [SMALL_STATE(689)] = 18003, + [SMALL_STATE(690)] = 18057, + [SMALL_STATE(691)] = 18111, + [SMALL_STATE(692)] = 18165, + [SMALL_STATE(693)] = 18219, + [SMALL_STATE(694)] = 18273, + [SMALL_STATE(695)] = 18327, + [SMALL_STATE(696)] = 18381, + [SMALL_STATE(697)] = 18435, + [SMALL_STATE(698)] = 18489, + [SMALL_STATE(699)] = 18543, + [SMALL_STATE(700)] = 18597, + [SMALL_STATE(701)] = 18651, + [SMALL_STATE(702)] = 18705, + [SMALL_STATE(703)] = 18759, + [SMALL_STATE(704)] = 18813, + [SMALL_STATE(705)] = 18867, + [SMALL_STATE(706)] = 18921, + [SMALL_STATE(707)] = 18975, + [SMALL_STATE(708)] = 19029, + [SMALL_STATE(709)] = 19083, + [SMALL_STATE(710)] = 19137, + [SMALL_STATE(711)] = 19191, + [SMALL_STATE(712)] = 19245, + [SMALL_STATE(713)] = 19301, + [SMALL_STATE(714)] = 19355, + [SMALL_STATE(715)] = 19409, + [SMALL_STATE(716)] = 19463, + [SMALL_STATE(717)] = 19517, + [SMALL_STATE(718)] = 19571, + [SMALL_STATE(719)] = 19625, + [SMALL_STATE(720)] = 19679, + [SMALL_STATE(721)] = 19733, + [SMALL_STATE(722)] = 19787, + [SMALL_STATE(723)] = 19841, + [SMALL_STATE(724)] = 19895, + [SMALL_STATE(725)] = 19949, + [SMALL_STATE(726)] = 20005, + [SMALL_STATE(727)] = 20059, + [SMALL_STATE(728)] = 20113, + [SMALL_STATE(729)] = 20167, + [SMALL_STATE(730)] = 20221, + [SMALL_STATE(731)] = 20275, + [SMALL_STATE(732)] = 20329, + [SMALL_STATE(733)] = 20383, + [SMALL_STATE(734)] = 20455, + [SMALL_STATE(735)] = 20509, + [SMALL_STATE(736)] = 20563, + [SMALL_STATE(737)] = 20617, + [SMALL_STATE(738)] = 20671, + [SMALL_STATE(739)] = 20725, + [SMALL_STATE(740)] = 20781, + [SMALL_STATE(741)] = 20835, + [SMALL_STATE(742)] = 20889, + [SMALL_STATE(743)] = 20945, + [SMALL_STATE(744)] = 20999, + [SMALL_STATE(745)] = 21053, + [SMALL_STATE(746)] = 21107, + [SMALL_STATE(747)] = 21161, + [SMALL_STATE(748)] = 21217, + [SMALL_STATE(749)] = 21271, + [SMALL_STATE(750)] = 21327, + [SMALL_STATE(751)] = 21381, + [SMALL_STATE(752)] = 21435, + [SMALL_STATE(753)] = 21489, + [SMALL_STATE(754)] = 21551, + [SMALL_STATE(755)] = 21605, + [SMALL_STATE(756)] = 21659, + [SMALL_STATE(757)] = 21742, + [SMALL_STATE(758)] = 21803, + [SMALL_STATE(759)] = 21856, + [SMALL_STATE(760)] = 21939, + [SMALL_STATE(761)] = 22004, + [SMALL_STATE(762)] = 22091, + [SMALL_STATE(763)] = 22144, + [SMALL_STATE(764)] = 22219, + [SMALL_STATE(765)] = 22282, + [SMALL_STATE(766)] = 22351, + [SMALL_STATE(767)] = 22430, + [SMALL_STATE(768)] = 22511, + [SMALL_STATE(769)] = 22584, + [SMALL_STATE(770)] = 22667, + [SMALL_STATE(771)] = 22738, + [SMALL_STATE(772)] = 22821, + [SMALL_STATE(773)] = 22882, + [SMALL_STATE(774)] = 22943, + [SMALL_STATE(775)] = 23010, + [SMALL_STATE(776)] = 23093, + [SMALL_STATE(777)] = 23176, + [SMALL_STATE(778)] = 23263, + [SMALL_STATE(779)] = 23323, + [SMALL_STATE(780)] = 23383, + [SMALL_STATE(781)] = 23443, + [SMALL_STATE(782)] = 23533, + [SMALL_STATE(783)] = 23623, + [SMALL_STATE(784)] = 23683, + [SMALL_STATE(785)] = 23743, + [SMALL_STATE(786)] = 23799, + [SMALL_STATE(787)] = 23858, + [SMALL_STATE(788)] = 23917, + [SMALL_STATE(789)] = 23976, + [SMALL_STATE(790)] = 24035, + [SMALL_STATE(791)] = 24092, + [SMALL_STATE(792)] = 24151, + [SMALL_STATE(793)] = 24210, + [SMALL_STATE(794)] = 24293, + [SMALL_STATE(795)] = 24376, + [SMALL_STATE(796)] = 24435, + [SMALL_STATE(797)] = 24494, + [SMALL_STATE(798)] = 24550, + [SMALL_STATE(799)] = 24606, + [SMALL_STATE(800)] = 24658, + [SMALL_STATE(801)] = 24744, + [SMALL_STATE(802)] = 24796, + [SMALL_STATE(803)] = 24852, + [SMALL_STATE(804)] = 24904, + [SMALL_STATE(805)] = 24960, + [SMALL_STATE(806)] = 25046, + [SMALL_STATE(807)] = 25098, + [SMALL_STATE(808)] = 25151, + [SMALL_STATE(809)] = 25204, + [SMALL_STATE(810)] = 25259, + [SMALL_STATE(811)] = 25314, + [SMALL_STATE(812)] = 25367, + [SMALL_STATE(813)] = 25456, + [SMALL_STATE(814)] = 25511, + [SMALL_STATE(815)] = 25566, + [SMALL_STATE(816)] = 25617, + [SMALL_STATE(817)] = 25706, + [SMALL_STATE(818)] = 25757, + [SMALL_STATE(819)] = 25810, + [SMALL_STATE(820)] = 25860, + [SMALL_STATE(821)] = 25912, + [SMALL_STATE(822)] = 25960, + [SMALL_STATE(823)] = 26008, + [SMALL_STATE(824)] = 26060, + [SMALL_STATE(825)] = 26110, + [SMALL_STATE(826)] = 26160, + [SMALL_STATE(827)] = 26208, + [SMALL_STATE(828)] = 26258, + [SMALL_STATE(829)] = 26308, + [SMALL_STATE(830)] = 26394, + [SMALL_STATE(831)] = 26480, + [SMALL_STATE(832)] = 26530, + [SMALL_STATE(833)] = 26578, + [SMALL_STATE(834)] = 26656, + [SMALL_STATE(835)] = 26706, + [SMALL_STATE(836)] = 26753, + [SMALL_STATE(837)] = 26836, + [SMALL_STATE(838)] = 26919, + [SMALL_STATE(839)] = 27002, + [SMALL_STATE(840)] = 27085, + [SMALL_STATE(841)] = 27168, + [SMALL_STATE(842)] = 27251, + [SMALL_STATE(843)] = 27334, + [SMALL_STATE(844)] = 27417, + [SMALL_STATE(845)] = 27464, + [SMALL_STATE(846)] = 27511, + [SMALL_STATE(847)] = 27594, + [SMALL_STATE(848)] = 27677, + [SMALL_STATE(849)] = 27754, + [SMALL_STATE(850)] = 27829, + [SMALL_STATE(851)] = 27912, + [SMALL_STATE(852)] = 27995, + [SMALL_STATE(853)] = 28078, + [SMALL_STATE(854)] = 28125, + [SMALL_STATE(855)] = 28208, + [SMALL_STATE(856)] = 28255, + [SMALL_STATE(857)] = 28338, + [SMALL_STATE(858)] = 28421, + [SMALL_STATE(859)] = 28504, + [SMALL_STATE(860)] = 28587, + [SMALL_STATE(861)] = 28642, + [SMALL_STATE(862)] = 28689, + [SMALL_STATE(863)] = 28746, + [SMALL_STATE(864)] = 28827, + [SMALL_STATE(865)] = 28910, + [SMALL_STATE(866)] = 28991, + [SMALL_STATE(867)] = 29074, + [SMALL_STATE(868)] = 29155, + [SMALL_STATE(869)] = 29236, + [SMALL_STATE(870)] = 29317, + [SMALL_STATE(871)] = 29400, + [SMALL_STATE(872)] = 29477, + [SMALL_STATE(873)] = 29560, + [SMALL_STATE(874)] = 29643, + [SMALL_STATE(875)] = 29724, + [SMALL_STATE(876)] = 29801, + [SMALL_STATE(877)] = 29884, + [SMALL_STATE(878)] = 29943, + [SMALL_STATE(879)] = 30026, + [SMALL_STATE(880)] = 30095, + [SMALL_STATE(881)] = 30178, + [SMALL_STATE(882)] = 30241, + [SMALL_STATE(883)] = 30314, + [SMALL_STATE(884)] = 30389, + [SMALL_STATE(885)] = 30470, + [SMALL_STATE(886)] = 30537, + [SMALL_STATE(887)] = 30618, + [SMALL_STATE(888)] = 30683, + [SMALL_STATE(889)] = 30766, + [SMALL_STATE(890)] = 30827, + [SMALL_STATE(891)] = 30908, + [SMALL_STATE(892)] = 30991, + [SMALL_STATE(893)] = 31074, + [SMALL_STATE(894)] = 31151, + [SMALL_STATE(895)] = 31234, + [SMALL_STATE(896)] = 31315, + [SMALL_STATE(897)] = 31398, + [SMALL_STATE(898)] = 31475, + [SMALL_STATE(899)] = 31524, + [SMALL_STATE(900)] = 31607, + [SMALL_STATE(901)] = 31662, + [SMALL_STATE(902)] = 31743, + [SMALL_STATE(903)] = 31792, + [SMALL_STATE(904)] = 31843, + [SMALL_STATE(905)] = 31926, + [SMALL_STATE(906)] = 32001, + [SMALL_STATE(907)] = 32082, + [SMALL_STATE(908)] = 32159, + [SMALL_STATE(909)] = 32214, + [SMALL_STATE(910)] = 32294, + [SMALL_STATE(911)] = 32372, + [SMALL_STATE(912)] = 32444, + [SMALL_STATE(913)] = 32524, + [SMALL_STATE(914)] = 32604, + [SMALL_STATE(915)] = 32684, + [SMALL_STATE(916)] = 32764, + [SMALL_STATE(917)] = 32844, + [SMALL_STATE(918)] = 32916, + [SMALL_STATE(919)] = 32996, + [SMALL_STATE(920)] = 33074, + [SMALL_STATE(921)] = 33146, + [SMALL_STATE(922)] = 33226, + [SMALL_STATE(923)] = 33306, + [SMALL_STATE(924)] = 33386, + [SMALL_STATE(925)] = 33464, + [SMALL_STATE(926)] = 33544, + [SMALL_STATE(927)] = 33624, + [SMALL_STATE(928)] = 33704, + [SMALL_STATE(929)] = 33782, + [SMALL_STATE(930)] = 33862, + [SMALL_STATE(931)] = 33934, + [SMALL_STATE(932)] = 34014, + [SMALL_STATE(933)] = 34094, + [SMALL_STATE(934)] = 34174, + [SMALL_STATE(935)] = 34254, + [SMALL_STATE(936)] = 34334, + [SMALL_STATE(937)] = 34406, + [SMALL_STATE(938)] = 34486, + [SMALL_STATE(939)] = 34566, + [SMALL_STATE(940)] = 34646, + [SMALL_STATE(941)] = 34726, + [SMALL_STATE(942)] = 34803, + [SMALL_STATE(943)] = 34848, + [SMALL_STATE(944)] = 34893, + [SMALL_STATE(945)] = 34938, + [SMALL_STATE(946)] = 35018, + [SMALL_STATE(947)] = 35098, + [SMALL_STATE(948)] = 35178, + [SMALL_STATE(949)] = 35258, + [SMALL_STATE(950)] = 35338, + [SMALL_STATE(951)] = 35381, + [SMALL_STATE(952)] = 35426, + [SMALL_STATE(953)] = 35469, + [SMALL_STATE(954)] = 35512, + [SMALL_STATE(955)] = 35577, + [SMALL_STATE(956)] = 35642, + [SMALL_STATE(957)] = 35707, + [SMALL_STATE(958)] = 35772, + [SMALL_STATE(959)] = 35837, + [SMALL_STATE(960)] = 35899, + [SMALL_STATE(961)] = 35961, + [SMALL_STATE(962)] = 36023, + [SMALL_STATE(963)] = 36082, + [SMALL_STATE(964)] = 36141, + [SMALL_STATE(965)] = 36177, + [SMALL_STATE(966)] = 36213, + [SMALL_STATE(967)] = 36249, + [SMALL_STATE(968)] = 36292, + [SMALL_STATE(969)] = 36322, + [SMALL_STATE(970)] = 36352, + [SMALL_STATE(971)] = 36382, + [SMALL_STATE(972)] = 36412, + [SMALL_STATE(973)] = 36442, + [SMALL_STATE(974)] = 36469, + [SMALL_STATE(975)] = 36498, + [SMALL_STATE(976)] = 36525, + [SMALL_STATE(977)] = 36552, + [SMALL_STATE(978)] = 36581, + [SMALL_STATE(979)] = 36610, + [SMALL_STATE(980)] = 36639, + [SMALL_STATE(981)] = 36665, + [SMALL_STATE(982)] = 36691, + [SMALL_STATE(983)] = 36717, + [SMALL_STATE(984)] = 36743, + [SMALL_STATE(985)] = 36769, + [SMALL_STATE(986)] = 36805, + [SMALL_STATE(987)] = 36839, + [SMALL_STATE(988)] = 36865, + [SMALL_STATE(989)] = 36891, + [SMALL_STATE(990)] = 36917, + [SMALL_STATE(991)] = 36943, + [SMALL_STATE(992)] = 36969, + [SMALL_STATE(993)] = 36995, + [SMALL_STATE(994)] = 37021, + [SMALL_STATE(995)] = 37057, + [SMALL_STATE(996)] = 37080, + [SMALL_STATE(997)] = 37103, + [SMALL_STATE(998)] = 37126, + [SMALL_STATE(999)] = 37149, + [SMALL_STATE(1000)] = 37172, + [SMALL_STATE(1001)] = 37199, + [SMALL_STATE(1002)] = 37232, + [SMALL_STATE(1003)] = 37255, + [SMALL_STATE(1004)] = 37278, + [SMALL_STATE(1005)] = 37301, + [SMALL_STATE(1006)] = 37324, + [SMALL_STATE(1007)] = 37347, + [SMALL_STATE(1008)] = 37370, + [SMALL_STATE(1009)] = 37395, + [SMALL_STATE(1010)] = 37418, + [SMALL_STATE(1011)] = 37441, + [SMALL_STATE(1012)] = 37464, + [SMALL_STATE(1013)] = 37487, + [SMALL_STATE(1014)] = 37510, + [SMALL_STATE(1015)] = 37533, + [SMALL_STATE(1016)] = 37556, + [SMALL_STATE(1017)] = 37579, + [SMALL_STATE(1018)] = 37602, + [SMALL_STATE(1019)] = 37625, + [SMALL_STATE(1020)] = 37648, + [SMALL_STATE(1021)] = 37671, + [SMALL_STATE(1022)] = 37694, + [SMALL_STATE(1023)] = 37717, + [SMALL_STATE(1024)] = 37740, + [SMALL_STATE(1025)] = 37763, + [SMALL_STATE(1026)] = 37786, + [SMALL_STATE(1027)] = 37809, + [SMALL_STATE(1028)] = 37832, + [SMALL_STATE(1029)] = 37855, + [SMALL_STATE(1030)] = 37878, + [SMALL_STATE(1031)] = 37901, + [SMALL_STATE(1032)] = 37924, + [SMALL_STATE(1033)] = 37947, + [SMALL_STATE(1034)] = 37970, + [SMALL_STATE(1035)] = 37997, + [SMALL_STATE(1036)] = 38020, + [SMALL_STATE(1037)] = 38043, + [SMALL_STATE(1038)] = 38066, + [SMALL_STATE(1039)] = 38089, + [SMALL_STATE(1040)] = 38112, + [SMALL_STATE(1041)] = 38135, + [SMALL_STATE(1042)] = 38158, + [SMALL_STATE(1043)] = 38181, + [SMALL_STATE(1044)] = 38204, + [SMALL_STATE(1045)] = 38227, + [SMALL_STATE(1046)] = 38250, + [SMALL_STATE(1047)] = 38273, + [SMALL_STATE(1048)] = 38296, + [SMALL_STATE(1049)] = 38319, + [SMALL_STATE(1050)] = 38342, + [SMALL_STATE(1051)] = 38365, + [SMALL_STATE(1052)] = 38388, + [SMALL_STATE(1053)] = 38411, + [SMALL_STATE(1054)] = 38434, + [SMALL_STATE(1055)] = 38457, + [SMALL_STATE(1056)] = 38480, + [SMALL_STATE(1057)] = 38503, + [SMALL_STATE(1058)] = 38526, + [SMALL_STATE(1059)] = 38549, + [SMALL_STATE(1060)] = 38572, + [SMALL_STATE(1061)] = 38595, + [SMALL_STATE(1062)] = 38618, + [SMALL_STATE(1063)] = 38641, + [SMALL_STATE(1064)] = 38664, + [SMALL_STATE(1065)] = 38687, + [SMALL_STATE(1066)] = 38710, + [SMALL_STATE(1067)] = 38733, + [SMALL_STATE(1068)] = 38756, + [SMALL_STATE(1069)] = 38779, + [SMALL_STATE(1070)] = 38802, + [SMALL_STATE(1071)] = 38825, + [SMALL_STATE(1072)] = 38848, + [SMALL_STATE(1073)] = 38871, + [SMALL_STATE(1074)] = 38894, + [SMALL_STATE(1075)] = 38917, + [SMALL_STATE(1076)] = 38940, + [SMALL_STATE(1077)] = 38963, + [SMALL_STATE(1078)] = 38986, + [SMALL_STATE(1079)] = 39009, + [SMALL_STATE(1080)] = 39032, + [SMALL_STATE(1081)] = 39055, + [SMALL_STATE(1082)] = 39078, + [SMALL_STATE(1083)] = 39101, + [SMALL_STATE(1084)] = 39124, + [SMALL_STATE(1085)] = 39147, + [SMALL_STATE(1086)] = 39170, + [SMALL_STATE(1087)] = 39193, + [SMALL_STATE(1088)] = 39216, + [SMALL_STATE(1089)] = 39243, + [SMALL_STATE(1090)] = 39266, + [SMALL_STATE(1091)] = 39289, + [SMALL_STATE(1092)] = 39314, + [SMALL_STATE(1093)] = 39337, + [SMALL_STATE(1094)] = 39360, + [SMALL_STATE(1095)] = 39383, + [SMALL_STATE(1096)] = 39406, + [SMALL_STATE(1097)] = 39429, + [SMALL_STATE(1098)] = 39452, + [SMALL_STATE(1099)] = 39475, + [SMALL_STATE(1100)] = 39498, + [SMALL_STATE(1101)] = 39521, + [SMALL_STATE(1102)] = 39544, + [SMALL_STATE(1103)] = 39567, + [SMALL_STATE(1104)] = 39590, + [SMALL_STATE(1105)] = 39613, + [SMALL_STATE(1106)] = 39636, + [SMALL_STATE(1107)] = 39659, + [SMALL_STATE(1108)] = 39682, + [SMALL_STATE(1109)] = 39705, + [SMALL_STATE(1110)] = 39728, + [SMALL_STATE(1111)] = 39751, + [SMALL_STATE(1112)] = 39774, + [SMALL_STATE(1113)] = 39797, + [SMALL_STATE(1114)] = 39820, + [SMALL_STATE(1115)] = 39843, + [SMALL_STATE(1116)] = 39866, + [SMALL_STATE(1117)] = 39889, + [SMALL_STATE(1118)] = 39912, + [SMALL_STATE(1119)] = 39935, + [SMALL_STATE(1120)] = 39958, + [SMALL_STATE(1121)] = 39981, + [SMALL_STATE(1122)] = 40004, + [SMALL_STATE(1123)] = 40027, + [SMALL_STATE(1124)] = 40050, + [SMALL_STATE(1125)] = 40073, + [SMALL_STATE(1126)] = 40096, + [SMALL_STATE(1127)] = 40119, + [SMALL_STATE(1128)] = 40142, + [SMALL_STATE(1129)] = 40165, + [SMALL_STATE(1130)] = 40188, + [SMALL_STATE(1131)] = 40213, + [SMALL_STATE(1132)] = 40236, + [SMALL_STATE(1133)] = 40259, + [SMALL_STATE(1134)] = 40282, + [SMALL_STATE(1135)] = 40305, + [SMALL_STATE(1136)] = 40328, + [SMALL_STATE(1137)] = 40351, + [SMALL_STATE(1138)] = 40374, + [SMALL_STATE(1139)] = 40397, + [SMALL_STATE(1140)] = 40420, + [SMALL_STATE(1141)] = 40443, + [SMALL_STATE(1142)] = 40466, + [SMALL_STATE(1143)] = 40489, + [SMALL_STATE(1144)] = 40512, + [SMALL_STATE(1145)] = 40535, + [SMALL_STATE(1146)] = 40558, + [SMALL_STATE(1147)] = 40581, + [SMALL_STATE(1148)] = 40604, + [SMALL_STATE(1149)] = 40627, + [SMALL_STATE(1150)] = 40650, + [SMALL_STATE(1151)] = 40673, + [SMALL_STATE(1152)] = 40696, + [SMALL_STATE(1153)] = 40719, + [SMALL_STATE(1154)] = 40742, + [SMALL_STATE(1155)] = 40765, + [SMALL_STATE(1156)] = 40788, + [SMALL_STATE(1157)] = 40815, + [SMALL_STATE(1158)] = 40840, + [SMALL_STATE(1159)] = 40865, + [SMALL_STATE(1160)] = 40888, + [SMALL_STATE(1161)] = 40915, + [SMALL_STATE(1162)] = 40938, + [SMALL_STATE(1163)] = 40961, + [SMALL_STATE(1164)] = 40984, + [SMALL_STATE(1165)] = 41009, + [SMALL_STATE(1166)] = 41032, + [SMALL_STATE(1167)] = 41055, + [SMALL_STATE(1168)] = 41078, + [SMALL_STATE(1169)] = 41101, + [SMALL_STATE(1170)] = 41124, + [SMALL_STATE(1171)] = 41157, + [SMALL_STATE(1172)] = 41188, + [SMALL_STATE(1173)] = 41213, + [SMALL_STATE(1174)] = 41236, + [SMALL_STATE(1175)] = 41259, + [SMALL_STATE(1176)] = 41283, + [SMALL_STATE(1177)] = 41311, + [SMALL_STATE(1178)] = 41335, + [SMALL_STATE(1179)] = 41359, + [SMALL_STATE(1180)] = 41383, + [SMALL_STATE(1181)] = 41407, + [SMALL_STATE(1182)] = 41431, + [SMALL_STATE(1183)] = 41455, + [SMALL_STATE(1184)] = 41479, + [SMALL_STATE(1185)] = 41503, + [SMALL_STATE(1186)] = 41527, + [SMALL_STATE(1187)] = 41551, + [SMALL_STATE(1188)] = 41575, + [SMALL_STATE(1189)] = 41599, + [SMALL_STATE(1190)] = 41623, + [SMALL_STATE(1191)] = 41647, + [SMALL_STATE(1192)] = 41671, + [SMALL_STATE(1193)] = 41695, + [SMALL_STATE(1194)] = 41719, + [SMALL_STATE(1195)] = 41743, + [SMALL_STATE(1196)] = 41767, + [SMALL_STATE(1197)] = 41810, + [SMALL_STATE(1198)] = 41833, + [SMALL_STATE(1199)] = 41874, + [SMALL_STATE(1200)] = 41897, + [SMALL_STATE(1201)] = 41922, + [SMALL_STATE(1202)] = 41963, + [SMALL_STATE(1203)] = 41987, + [SMALL_STATE(1204)] = 42011, + [SMALL_STATE(1205)] = 42035, + [SMALL_STATE(1206)] = 42059, + [SMALL_STATE(1207)] = 42083, + [SMALL_STATE(1208)] = 42107, + [SMALL_STATE(1209)] = 42131, + [SMALL_STATE(1210)] = 42155, + [SMALL_STATE(1211)] = 42179, + [SMALL_STATE(1212)] = 42203, + [SMALL_STATE(1213)] = 42227, + [SMALL_STATE(1214)] = 42251, + [SMALL_STATE(1215)] = 42273, + [SMALL_STATE(1216)] = 42315, + [SMALL_STATE(1217)] = 42336, + [SMALL_STATE(1218)] = 42357, + [SMALL_STATE(1219)] = 42378, + [SMALL_STATE(1220)] = 42399, + [SMALL_STATE(1221)] = 42420, + [SMALL_STATE(1222)] = 42441, + [SMALL_STATE(1223)] = 42462, + [SMALL_STATE(1224)] = 42483, + [SMALL_STATE(1225)] = 42504, + [SMALL_STATE(1226)] = 42525, + [SMALL_STATE(1227)] = 42546, + [SMALL_STATE(1228)] = 42567, + [SMALL_STATE(1229)] = 42588, + [SMALL_STATE(1230)] = 42609, + [SMALL_STATE(1231)] = 42630, + [SMALL_STATE(1232)] = 42651, + [SMALL_STATE(1233)] = 42672, + [SMALL_STATE(1234)] = 42693, + [SMALL_STATE(1235)] = 42714, + [SMALL_STATE(1236)] = 42735, + [SMALL_STATE(1237)] = 42756, + [SMALL_STATE(1238)] = 42777, + [SMALL_STATE(1239)] = 42798, + [SMALL_STATE(1240)] = 42819, + [SMALL_STATE(1241)] = 42840, + [SMALL_STATE(1242)] = 42861, + [SMALL_STATE(1243)] = 42882, + [SMALL_STATE(1244)] = 42903, + [SMALL_STATE(1245)] = 42924, + [SMALL_STATE(1246)] = 42945, + [SMALL_STATE(1247)] = 42966, + [SMALL_STATE(1248)] = 42987, + [SMALL_STATE(1249)] = 43018, + [SMALL_STATE(1250)] = 43046, + [SMALL_STATE(1251)] = 43070, + [SMALL_STATE(1252)] = 43092, + [SMALL_STATE(1253)] = 43114, + [SMALL_STATE(1254)] = 43136, + [SMALL_STATE(1255)] = 43158, + [SMALL_STATE(1256)] = 43182, + [SMALL_STATE(1257)] = 43210, + [SMALL_STATE(1258)] = 43248, + [SMALL_STATE(1259)] = 43276, + [SMALL_STATE(1260)] = 43300, + [SMALL_STATE(1261)] = 43324, + [SMALL_STATE(1262)] = 43348, + [SMALL_STATE(1263)] = 43372, + [SMALL_STATE(1264)] = 43392, + [SMALL_STATE(1265)] = 43416, + [SMALL_STATE(1266)] = 43454, + [SMALL_STATE(1267)] = 43478, + [SMALL_STATE(1268)] = 43511, + [SMALL_STATE(1269)] = 43540, + [SMALL_STATE(1270)] = 43569, + [SMALL_STATE(1271)] = 43586, + [SMALL_STATE(1272)] = 43603, + [SMALL_STATE(1273)] = 43620, + [SMALL_STATE(1274)] = 43649, + [SMALL_STATE(1275)] = 43678, + [SMALL_STATE(1276)] = 43703, + [SMALL_STATE(1277)] = 43730, + [SMALL_STATE(1278)] = 43759, + [SMALL_STATE(1279)] = 43784, + [SMALL_STATE(1280)] = 43813, + [SMALL_STATE(1281)] = 43845, + [SMALL_STATE(1282)] = 43877, + [SMALL_STATE(1283)] = 43905, + [SMALL_STATE(1284)] = 43937, + [SMALL_STATE(1285)] = 43969, + [SMALL_STATE(1286)] = 43999, + [SMALL_STATE(1287)] = 44025, + [SMALL_STATE(1288)] = 44053, + [SMALL_STATE(1289)] = 44079, + [SMALL_STATE(1290)] = 44105, + [SMALL_STATE(1291)] = 44131, + [SMALL_STATE(1292)] = 44159, + [SMALL_STATE(1293)] = 44189, + [SMALL_STATE(1294)] = 44219, + [SMALL_STATE(1295)] = 44249, + [SMALL_STATE(1296)] = 44279, + [SMALL_STATE(1297)] = 44305, + [SMALL_STATE(1298)] = 44335, + [SMALL_STATE(1299)] = 44361, + [SMALL_STATE(1300)] = 44386, + [SMALL_STATE(1301)] = 44415, + [SMALL_STATE(1302)] = 44442, + [SMALL_STATE(1303)] = 44469, + [SMALL_STATE(1304)] = 44496, + [SMALL_STATE(1305)] = 44525, + [SMALL_STATE(1306)] = 44552, + [SMALL_STATE(1307)] = 44579, + [SMALL_STATE(1308)] = 44606, + [SMALL_STATE(1309)] = 44633, + [SMALL_STATE(1310)] = 44660, + [SMALL_STATE(1311)] = 44687, + [SMALL_STATE(1312)] = 44714, + [SMALL_STATE(1313)] = 44741, + [SMALL_STATE(1314)] = 44764, + [SMALL_STATE(1315)] = 44789, + [SMALL_STATE(1316)] = 44814, + [SMALL_STATE(1317)] = 44841, + [SMALL_STATE(1318)] = 44868, + [SMALL_STATE(1319)] = 44895, + [SMALL_STATE(1320)] = 44920, + [SMALL_STATE(1321)] = 44947, + [SMALL_STATE(1322)] = 44972, + [SMALL_STATE(1323)] = 44999, + [SMALL_STATE(1324)] = 45028, + [SMALL_STATE(1325)] = 45051, + [SMALL_STATE(1326)] = 45074, + [SMALL_STATE(1327)] = 45097, + [SMALL_STATE(1328)] = 45126, + [SMALL_STATE(1329)] = 45153, + [SMALL_STATE(1330)] = 45175, + [SMALL_STATE(1331)] = 45201, + [SMALL_STATE(1332)] = 45225, + [SMALL_STATE(1333)] = 45249, + [SMALL_STATE(1334)] = 45263, + [SMALL_STATE(1335)] = 45277, + [SMALL_STATE(1336)] = 45291, + [SMALL_STATE(1337)] = 45305, + [SMALL_STATE(1338)] = 45329, + [SMALL_STATE(1339)] = 45353, + [SMALL_STATE(1340)] = 45377, + [SMALL_STATE(1341)] = 45393, + [SMALL_STATE(1342)] = 45417, + [SMALL_STATE(1343)] = 45433, + [SMALL_STATE(1344)] = 45449, + [SMALL_STATE(1345)] = 45475, + [SMALL_STATE(1346)] = 45501, + [SMALL_STATE(1347)] = 45525, + [SMALL_STATE(1348)] = 45549, + [SMALL_STATE(1349)] = 45565, + [SMALL_STATE(1350)] = 45591, + [SMALL_STATE(1351)] = 45615, + [SMALL_STATE(1352)] = 45639, + [SMALL_STATE(1353)] = 45663, + [SMALL_STATE(1354)] = 45687, + [SMALL_STATE(1355)] = 45711, + [SMALL_STATE(1356)] = 45735, + [SMALL_STATE(1357)] = 45759, + [SMALL_STATE(1358)] = 45783, + [SMALL_STATE(1359)] = 45807, + [SMALL_STATE(1360)] = 45827, + [SMALL_STATE(1361)] = 45841, + [SMALL_STATE(1362)] = 45864, + [SMALL_STATE(1363)] = 45887, + [SMALL_STATE(1364)] = 45904, + [SMALL_STATE(1365)] = 45921, + [SMALL_STATE(1366)] = 45944, + [SMALL_STATE(1367)] = 45967, + [SMALL_STATE(1368)] = 45986, + [SMALL_STATE(1369)] = 46003, + [SMALL_STATE(1370)] = 46020, + [SMALL_STATE(1371)] = 46041, + [SMALL_STATE(1372)] = 46060, + [SMALL_STATE(1373)] = 46077, + [SMALL_STATE(1374)] = 46094, + [SMALL_STATE(1375)] = 46117, + [SMALL_STATE(1376)] = 46132, + [SMALL_STATE(1377)] = 46155, + [SMALL_STATE(1378)] = 46178, + [SMALL_STATE(1379)] = 46201, + [SMALL_STATE(1380)] = 46220, + [SMALL_STATE(1381)] = 46237, + [SMALL_STATE(1382)] = 46260, + [SMALL_STATE(1383)] = 46283, + [SMALL_STATE(1384)] = 46304, + [SMALL_STATE(1385)] = 46327, + [SMALL_STATE(1386)] = 46350, + [SMALL_STATE(1387)] = 46369, + [SMALL_STATE(1388)] = 46392, + [SMALL_STATE(1389)] = 46415, + [SMALL_STATE(1390)] = 46438, + [SMALL_STATE(1391)] = 46461, + [SMALL_STATE(1392)] = 46484, + [SMALL_STATE(1393)] = 46507, + [SMALL_STATE(1394)] = 46530, + [SMALL_STATE(1395)] = 46553, + [SMALL_STATE(1396)] = 46576, + [SMALL_STATE(1397)] = 46599, + [SMALL_STATE(1398)] = 46622, + [SMALL_STATE(1399)] = 46645, + [SMALL_STATE(1400)] = 46664, + [SMALL_STATE(1401)] = 46687, + [SMALL_STATE(1402)] = 46706, + [SMALL_STATE(1403)] = 46729, + [SMALL_STATE(1404)] = 46752, + [SMALL_STATE(1405)] = 46775, + [SMALL_STATE(1406)] = 46798, + [SMALL_STATE(1407)] = 46821, + [SMALL_STATE(1408)] = 46844, + [SMALL_STATE(1409)] = 46867, + [SMALL_STATE(1410)] = 46890, + [SMALL_STATE(1411)] = 46913, + [SMALL_STATE(1412)] = 46936, + [SMALL_STATE(1413)] = 46959, + [SMALL_STATE(1414)] = 46982, + [SMALL_STATE(1415)] = 47005, + [SMALL_STATE(1416)] = 47028, + [SMALL_STATE(1417)] = 47051, + [SMALL_STATE(1418)] = 47072, + [SMALL_STATE(1419)] = 47093, + [SMALL_STATE(1420)] = 47116, + [SMALL_STATE(1421)] = 47137, + [SMALL_STATE(1422)] = 47152, + [SMALL_STATE(1423)] = 47171, + [SMALL_STATE(1424)] = 47188, + [SMALL_STATE(1425)] = 47211, + [SMALL_STATE(1426)] = 47234, + [SMALL_STATE(1427)] = 47251, + [SMALL_STATE(1428)] = 47270, + [SMALL_STATE(1429)] = 47293, + [SMALL_STATE(1430)] = 47316, + [SMALL_STATE(1431)] = 47333, + [SMALL_STATE(1432)] = 47356, + [SMALL_STATE(1433)] = 47373, + [SMALL_STATE(1434)] = 47392, + [SMALL_STATE(1435)] = 47409, + [SMALL_STATE(1436)] = 47426, + [SMALL_STATE(1437)] = 47443, + [SMALL_STATE(1438)] = 47460, + [SMALL_STATE(1439)] = 47483, + [SMALL_STATE(1440)] = 47506, + [SMALL_STATE(1441)] = 47520, + [SMALL_STATE(1442)] = 47540, + [SMALL_STATE(1443)] = 47556, + [SMALL_STATE(1444)] = 47576, + [SMALL_STATE(1445)] = 47594, + [SMALL_STATE(1446)] = 47610, + [SMALL_STATE(1447)] = 47626, + [SMALL_STATE(1448)] = 47644, + [SMALL_STATE(1449)] = 47658, + [SMALL_STATE(1450)] = 47678, + [SMALL_STATE(1451)] = 47694, + [SMALL_STATE(1452)] = 47710, + [SMALL_STATE(1453)] = 47728, + [SMALL_STATE(1454)] = 47744, + [SMALL_STATE(1455)] = 47764, + [SMALL_STATE(1456)] = 47780, + [SMALL_STATE(1457)] = 47796, + [SMALL_STATE(1458)] = 47816, + [SMALL_STATE(1459)] = 47832, + [SMALL_STATE(1460)] = 47850, + [SMALL_STATE(1461)] = 47870, + [SMALL_STATE(1462)] = 47890, + [SMALL_STATE(1463)] = 47910, + [SMALL_STATE(1464)] = 47926, + [SMALL_STATE(1465)] = 47942, + [SMALL_STATE(1466)] = 47962, + [SMALL_STATE(1467)] = 47980, + [SMALL_STATE(1468)] = 48000, + [SMALL_STATE(1469)] = 48020, + [SMALL_STATE(1470)] = 48036, + [SMALL_STATE(1471)] = 48052, + [SMALL_STATE(1472)] = 48072, + [SMALL_STATE(1473)] = 48088, + [SMALL_STATE(1474)] = 48104, + [SMALL_STATE(1475)] = 48120, + [SMALL_STATE(1476)] = 48136, + [SMALL_STATE(1477)] = 48152, + [SMALL_STATE(1478)] = 48168, + [SMALL_STATE(1479)] = 48186, + [SMALL_STATE(1480)] = 48206, + [SMALL_STATE(1481)] = 48223, + [SMALL_STATE(1482)] = 48240, + [SMALL_STATE(1483)] = 48257, + [SMALL_STATE(1484)] = 48274, + [SMALL_STATE(1485)] = 48287, + [SMALL_STATE(1486)] = 48304, + [SMALL_STATE(1487)] = 48319, + [SMALL_STATE(1488)] = 48336, + [SMALL_STATE(1489)] = 48353, + [SMALL_STATE(1490)] = 48370, + [SMALL_STATE(1491)] = 48385, + [SMALL_STATE(1492)] = 48400, + [SMALL_STATE(1493)] = 48417, + [SMALL_STATE(1494)] = 48432, + [SMALL_STATE(1495)] = 48449, + [SMALL_STATE(1496)] = 48466, + [SMALL_STATE(1497)] = 48481, + [SMALL_STATE(1498)] = 48498, + [SMALL_STATE(1499)] = 48513, + [SMALL_STATE(1500)] = 48528, + [SMALL_STATE(1501)] = 48545, + [SMALL_STATE(1502)] = 48558, + [SMALL_STATE(1503)] = 48573, + [SMALL_STATE(1504)] = 48590, + [SMALL_STATE(1505)] = 48605, + [SMALL_STATE(1506)] = 48622, + [SMALL_STATE(1507)] = 48639, + [SMALL_STATE(1508)] = 48654, + [SMALL_STATE(1509)] = 48671, + [SMALL_STATE(1510)] = 48688, + [SMALL_STATE(1511)] = 48705, + [SMALL_STATE(1512)] = 48718, + [SMALL_STATE(1513)] = 48735, + [SMALL_STATE(1514)] = 48748, + [SMALL_STATE(1515)] = 48765, + [SMALL_STATE(1516)] = 48778, + [SMALL_STATE(1517)] = 48793, + [SMALL_STATE(1518)] = 48810, + [SMALL_STATE(1519)] = 48823, + [SMALL_STATE(1520)] = 48840, + [SMALL_STATE(1521)] = 48857, + [SMALL_STATE(1522)] = 48872, + [SMALL_STATE(1523)] = 48889, + [SMALL_STATE(1524)] = 48904, + [SMALL_STATE(1525)] = 48921, + [SMALL_STATE(1526)] = 48936, + [SMALL_STATE(1527)] = 48951, + [SMALL_STATE(1528)] = 48968, + [SMALL_STATE(1529)] = 48983, + [SMALL_STATE(1530)] = 49000, + [SMALL_STATE(1531)] = 49017, + [SMALL_STATE(1532)] = 49034, + [SMALL_STATE(1533)] = 49049, + [SMALL_STATE(1534)] = 49066, + [SMALL_STATE(1535)] = 49081, + [SMALL_STATE(1536)] = 49098, + [SMALL_STATE(1537)] = 49111, + [SMALL_STATE(1538)] = 49124, + [SMALL_STATE(1539)] = 49141, + [SMALL_STATE(1540)] = 49156, + [SMALL_STATE(1541)] = 49171, + [SMALL_STATE(1542)] = 49188, + [SMALL_STATE(1543)] = 49205, + [SMALL_STATE(1544)] = 49218, + [SMALL_STATE(1545)] = 49233, + [SMALL_STATE(1546)] = 49250, + [SMALL_STATE(1547)] = 49263, + [SMALL_STATE(1548)] = 49280, + [SMALL_STATE(1549)] = 49293, + [SMALL_STATE(1550)] = 49306, + [SMALL_STATE(1551)] = 49323, + [SMALL_STATE(1552)] = 49340, + [SMALL_STATE(1553)] = 49357, + [SMALL_STATE(1554)] = 49374, + [SMALL_STATE(1555)] = 49391, + [SMALL_STATE(1556)] = 49406, + [SMALL_STATE(1557)] = 49419, + [SMALL_STATE(1558)] = 49436, + [SMALL_STATE(1559)] = 49451, + [SMALL_STATE(1560)] = 49465, + [SMALL_STATE(1561)] = 49477, + [SMALL_STATE(1562)] = 49491, + [SMALL_STATE(1563)] = 49501, + [SMALL_STATE(1564)] = 49513, + [SMALL_STATE(1565)] = 49527, + [SMALL_STATE(1566)] = 49541, + [SMALL_STATE(1567)] = 49555, + [SMALL_STATE(1568)] = 49569, + [SMALL_STATE(1569)] = 49583, + [SMALL_STATE(1570)] = 49597, + [SMALL_STATE(1571)] = 49609, + [SMALL_STATE(1572)] = 49623, + [SMALL_STATE(1573)] = 49637, + [SMALL_STATE(1574)] = 49651, + [SMALL_STATE(1575)] = 49665, + [SMALL_STATE(1576)] = 49679, + [SMALL_STATE(1577)] = 49693, + [SMALL_STATE(1578)] = 49707, + [SMALL_STATE(1579)] = 49721, + [SMALL_STATE(1580)] = 49733, + [SMALL_STATE(1581)] = 49743, + [SMALL_STATE(1582)] = 49757, + [SMALL_STATE(1583)] = 49771, + [SMALL_STATE(1584)] = 49785, + [SMALL_STATE(1585)] = 49799, + [SMALL_STATE(1586)] = 49811, + [SMALL_STATE(1587)] = 49825, + [SMALL_STATE(1588)] = 49839, + [SMALL_STATE(1589)] = 49851, + [SMALL_STATE(1590)] = 49865, + [SMALL_STATE(1591)] = 49879, + [SMALL_STATE(1592)] = 49891, + [SMALL_STATE(1593)] = 49905, + [SMALL_STATE(1594)] = 49919, + [SMALL_STATE(1595)] = 49933, + [SMALL_STATE(1596)] = 49947, + [SMALL_STATE(1597)] = 49961, + [SMALL_STATE(1598)] = 49975, + [SMALL_STATE(1599)] = 49989, + [SMALL_STATE(1600)] = 50003, + [SMALL_STATE(1601)] = 50017, + [SMALL_STATE(1602)] = 50031, + [SMALL_STATE(1603)] = 50045, + [SMALL_STATE(1604)] = 50057, + [SMALL_STATE(1605)] = 50069, + [SMALL_STATE(1606)] = 50083, + [SMALL_STATE(1607)] = 50095, + [SMALL_STATE(1608)] = 50109, + [SMALL_STATE(1609)] = 50123, + [SMALL_STATE(1610)] = 50137, + [SMALL_STATE(1611)] = 50151, + [SMALL_STATE(1612)] = 50161, + [SMALL_STATE(1613)] = 50175, + [SMALL_STATE(1614)] = 50189, + [SMALL_STATE(1615)] = 50203, + [SMALL_STATE(1616)] = 50217, + [SMALL_STATE(1617)] = 50227, + [SMALL_STATE(1618)] = 50241, + [SMALL_STATE(1619)] = 50253, + [SMALL_STATE(1620)] = 50267, + [SMALL_STATE(1621)] = 50281, + [SMALL_STATE(1622)] = 50295, + [SMALL_STATE(1623)] = 50307, + [SMALL_STATE(1624)] = 50321, + [SMALL_STATE(1625)] = 50335, + [SMALL_STATE(1626)] = 50347, + [SMALL_STATE(1627)] = 50361, + [SMALL_STATE(1628)] = 50375, + [SMALL_STATE(1629)] = 50389, + [SMALL_STATE(1630)] = 50403, + [SMALL_STATE(1631)] = 50417, + [SMALL_STATE(1632)] = 50429, + [SMALL_STATE(1633)] = 50441, + [SMALL_STATE(1634)] = 50455, + [SMALL_STATE(1635)] = 50465, + [SMALL_STATE(1636)] = 50479, + [SMALL_STATE(1637)] = 50493, + [SMALL_STATE(1638)] = 50507, + [SMALL_STATE(1639)] = 50517, + [SMALL_STATE(1640)] = 50531, + [SMALL_STATE(1641)] = 50545, + [SMALL_STATE(1642)] = 50559, + [SMALL_STATE(1643)] = 50573, + [SMALL_STATE(1644)] = 50587, + [SMALL_STATE(1645)] = 50601, + [SMALL_STATE(1646)] = 50615, + [SMALL_STATE(1647)] = 50625, + [SMALL_STATE(1648)] = 50639, + [SMALL_STATE(1649)] = 50653, + [SMALL_STATE(1650)] = 50667, + [SMALL_STATE(1651)] = 50677, + [SMALL_STATE(1652)] = 50691, + [SMALL_STATE(1653)] = 50705, + [SMALL_STATE(1654)] = 50719, + [SMALL_STATE(1655)] = 50733, + [SMALL_STATE(1656)] = 50747, + [SMALL_STATE(1657)] = 50761, + [SMALL_STATE(1658)] = 50775, + [SMALL_STATE(1659)] = 50785, + [SMALL_STATE(1660)] = 50799, + [SMALL_STATE(1661)] = 50811, + [SMALL_STATE(1662)] = 50821, + [SMALL_STATE(1663)] = 50831, + [SMALL_STATE(1664)] = 50845, + [SMALL_STATE(1665)] = 50859, + [SMALL_STATE(1666)] = 50873, + [SMALL_STATE(1667)] = 50887, + [SMALL_STATE(1668)] = 50901, + [SMALL_STATE(1669)] = 50915, + [SMALL_STATE(1670)] = 50927, + [SMALL_STATE(1671)] = 50941, + [SMALL_STATE(1672)] = 50955, + [SMALL_STATE(1673)] = 50965, + [SMALL_STATE(1674)] = 50977, + [SMALL_STATE(1675)] = 50991, + [SMALL_STATE(1676)] = 51001, + [SMALL_STATE(1677)] = 51011, + [SMALL_STATE(1678)] = 51025, + [SMALL_STATE(1679)] = 51039, + [SMALL_STATE(1680)] = 51053, + [SMALL_STATE(1681)] = 51067, + [SMALL_STATE(1682)] = 51081, + [SMALL_STATE(1683)] = 51095, + [SMALL_STATE(1684)] = 51109, + [SMALL_STATE(1685)] = 51123, + [SMALL_STATE(1686)] = 51133, + [SMALL_STATE(1687)] = 51147, + [SMALL_STATE(1688)] = 51161, + [SMALL_STATE(1689)] = 51175, + [SMALL_STATE(1690)] = 51185, + [SMALL_STATE(1691)] = 51199, + [SMALL_STATE(1692)] = 51213, + [SMALL_STATE(1693)] = 51227, + [SMALL_STATE(1694)] = 51241, + [SMALL_STATE(1695)] = 51255, + [SMALL_STATE(1696)] = 51265, + [SMALL_STATE(1697)] = 51279, + [SMALL_STATE(1698)] = 51293, + [SMALL_STATE(1699)] = 51307, + [SMALL_STATE(1700)] = 51321, + [SMALL_STATE(1701)] = 51333, + [SMALL_STATE(1702)] = 51347, + [SMALL_STATE(1703)] = 51361, + [SMALL_STATE(1704)] = 51375, + [SMALL_STATE(1705)] = 51389, + [SMALL_STATE(1706)] = 51403, + [SMALL_STATE(1707)] = 51417, + [SMALL_STATE(1708)] = 51429, + [SMALL_STATE(1709)] = 51443, + [SMALL_STATE(1710)] = 51457, + [SMALL_STATE(1711)] = 51471, + [SMALL_STATE(1712)] = 51485, + [SMALL_STATE(1713)] = 51499, + [SMALL_STATE(1714)] = 51513, + [SMALL_STATE(1715)] = 51527, + [SMALL_STATE(1716)] = 51541, + [SMALL_STATE(1717)] = 51555, + [SMALL_STATE(1718)] = 51569, + [SMALL_STATE(1719)] = 51583, + [SMALL_STATE(1720)] = 51597, + [SMALL_STATE(1721)] = 51609, + [SMALL_STATE(1722)] = 51623, + [SMALL_STATE(1723)] = 51637, + [SMALL_STATE(1724)] = 51649, + [SMALL_STATE(1725)] = 51659, + [SMALL_STATE(1726)] = 51669, + [SMALL_STATE(1727)] = 51683, + [SMALL_STATE(1728)] = 51695, + [SMALL_STATE(1729)] = 51709, + [SMALL_STATE(1730)] = 51723, + [SMALL_STATE(1731)] = 51735, + [SMALL_STATE(1732)] = 51745, + [SMALL_STATE(1733)] = 51759, + [SMALL_STATE(1734)] = 51773, + [SMALL_STATE(1735)] = 51787, + [SMALL_STATE(1736)] = 51801, + [SMALL_STATE(1737)] = 51815, + [SMALL_STATE(1738)] = 51827, + [SMALL_STATE(1739)] = 51841, + [SMALL_STATE(1740)] = 51855, + [SMALL_STATE(1741)] = 51869, + [SMALL_STATE(1742)] = 51883, + [SMALL_STATE(1743)] = 51897, + [SMALL_STATE(1744)] = 51911, + [SMALL_STATE(1745)] = 51925, + [SMALL_STATE(1746)] = 51937, + [SMALL_STATE(1747)] = 51951, + [SMALL_STATE(1748)] = 51963, + [SMALL_STATE(1749)] = 51977, + [SMALL_STATE(1750)] = 51989, + [SMALL_STATE(1751)] = 52001, + [SMALL_STATE(1752)] = 52015, + [SMALL_STATE(1753)] = 52029, + [SMALL_STATE(1754)] = 52043, + [SMALL_STATE(1755)] = 52057, + [SMALL_STATE(1756)] = 52071, + [SMALL_STATE(1757)] = 52081, + [SMALL_STATE(1758)] = 52093, + [SMALL_STATE(1759)] = 52103, + [SMALL_STATE(1760)] = 52117, + [SMALL_STATE(1761)] = 52131, + [SMALL_STATE(1762)] = 52145, + [SMALL_STATE(1763)] = 52159, + [SMALL_STATE(1764)] = 52173, + [SMALL_STATE(1765)] = 52187, + [SMALL_STATE(1766)] = 52201, + [SMALL_STATE(1767)] = 52215, + [SMALL_STATE(1768)] = 52229, + [SMALL_STATE(1769)] = 52241, + [SMALL_STATE(1770)] = 52255, + [SMALL_STATE(1771)] = 52269, + [SMALL_STATE(1772)] = 52283, + [SMALL_STATE(1773)] = 52297, + [SMALL_STATE(1774)] = 52309, + [SMALL_STATE(1775)] = 52323, + [SMALL_STATE(1776)] = 52337, + [SMALL_STATE(1777)] = 52351, + [SMALL_STATE(1778)] = 52365, + [SMALL_STATE(1779)] = 52379, + [SMALL_STATE(1780)] = 52393, + [SMALL_STATE(1781)] = 52405, + [SMALL_STATE(1782)] = 52419, + [SMALL_STATE(1783)] = 52433, + [SMALL_STATE(1784)] = 52445, + [SMALL_STATE(1785)] = 52459, + [SMALL_STATE(1786)] = 52473, + [SMALL_STATE(1787)] = 52485, + [SMALL_STATE(1788)] = 52499, + [SMALL_STATE(1789)] = 52513, + [SMALL_STATE(1790)] = 52527, + [SMALL_STATE(1791)] = 52537, + [SMALL_STATE(1792)] = 52551, + [SMALL_STATE(1793)] = 52563, + [SMALL_STATE(1794)] = 52577, + [SMALL_STATE(1795)] = 52591, + [SMALL_STATE(1796)] = 52605, + [SMALL_STATE(1797)] = 52619, + [SMALL_STATE(1798)] = 52633, + [SMALL_STATE(1799)] = 52647, + [SMALL_STATE(1800)] = 52661, + [SMALL_STATE(1801)] = 52675, + [SMALL_STATE(1802)] = 52689, + [SMALL_STATE(1803)] = 52703, + [SMALL_STATE(1804)] = 52717, + [SMALL_STATE(1805)] = 52731, + [SMALL_STATE(1806)] = 52742, + [SMALL_STATE(1807)] = 52751, + [SMALL_STATE(1808)] = 52762, + [SMALL_STATE(1809)] = 52773, + [SMALL_STATE(1810)] = 52784, + [SMALL_STATE(1811)] = 52795, + [SMALL_STATE(1812)] = 52806, + [SMALL_STATE(1813)] = 52817, + [SMALL_STATE(1814)] = 52828, + [SMALL_STATE(1815)] = 52839, + [SMALL_STATE(1816)] = 52850, + [SMALL_STATE(1817)] = 52861, + [SMALL_STATE(1818)] = 52872, + [SMALL_STATE(1819)] = 52883, + [SMALL_STATE(1820)] = 52894, + [SMALL_STATE(1821)] = 52905, + [SMALL_STATE(1822)] = 52914, + [SMALL_STATE(1823)] = 52925, + [SMALL_STATE(1824)] = 52936, + [SMALL_STATE(1825)] = 52947, + [SMALL_STATE(1826)] = 52958, + [SMALL_STATE(1827)] = 52969, + [SMALL_STATE(1828)] = 52978, + [SMALL_STATE(1829)] = 52989, + [SMALL_STATE(1830)] = 52998, + [SMALL_STATE(1831)] = 53009, + [SMALL_STATE(1832)] = 53020, + [SMALL_STATE(1833)] = 53031, + [SMALL_STATE(1834)] = 53042, + [SMALL_STATE(1835)] = 53053, + [SMALL_STATE(1836)] = 53064, + [SMALL_STATE(1837)] = 53075, + [SMALL_STATE(1838)] = 53086, + [SMALL_STATE(1839)] = 53097, + [SMALL_STATE(1840)] = 53108, + [SMALL_STATE(1841)] = 53119, + [SMALL_STATE(1842)] = 53130, + [SMALL_STATE(1843)] = 53139, + [SMALL_STATE(1844)] = 53150, + [SMALL_STATE(1845)] = 53161, + [SMALL_STATE(1846)] = 53172, + [SMALL_STATE(1847)] = 53183, + [SMALL_STATE(1848)] = 53194, + [SMALL_STATE(1849)] = 53205, + [SMALL_STATE(1850)] = 53216, + [SMALL_STATE(1851)] = 53227, + [SMALL_STATE(1852)] = 53238, + [SMALL_STATE(1853)] = 53249, + [SMALL_STATE(1854)] = 53260, + [SMALL_STATE(1855)] = 53271, + [SMALL_STATE(1856)] = 53280, + [SMALL_STATE(1857)] = 53291, + [SMALL_STATE(1858)] = 53300, + [SMALL_STATE(1859)] = 53311, + [SMALL_STATE(1860)] = 53322, + [SMALL_STATE(1861)] = 53333, + [SMALL_STATE(1862)] = 53344, + [SMALL_STATE(1863)] = 53355, + [SMALL_STATE(1864)] = 53366, + [SMALL_STATE(1865)] = 53375, + [SMALL_STATE(1866)] = 53384, + [SMALL_STATE(1867)] = 53393, + [SMALL_STATE(1868)] = 53402, + [SMALL_STATE(1869)] = 53411, + [SMALL_STATE(1870)] = 53420, + [SMALL_STATE(1871)] = 53429, + [SMALL_STATE(1872)] = 53438, + [SMALL_STATE(1873)] = 53449, + [SMALL_STATE(1874)] = 53458, + [SMALL_STATE(1875)] = 53469, + [SMALL_STATE(1876)] = 53480, + [SMALL_STATE(1877)] = 53489, + [SMALL_STATE(1878)] = 53500, + [SMALL_STATE(1879)] = 53511, + [SMALL_STATE(1880)] = 53520, + [SMALL_STATE(1881)] = 53529, + [SMALL_STATE(1882)] = 53540, + [SMALL_STATE(1883)] = 53553, + [SMALL_STATE(1884)] = 53564, + [SMALL_STATE(1885)] = 53575, + [SMALL_STATE(1886)] = 53584, + [SMALL_STATE(1887)] = 53595, + [SMALL_STATE(1888)] = 53606, + [SMALL_STATE(1889)] = 53615, + [SMALL_STATE(1890)] = 53626, + [SMALL_STATE(1891)] = 53637, + [SMALL_STATE(1892)] = 53646, + [SMALL_STATE(1893)] = 53657, + [SMALL_STATE(1894)] = 53668, + [SMALL_STATE(1895)] = 53677, + [SMALL_STATE(1896)] = 53686, + [SMALL_STATE(1897)] = 53695, + [SMALL_STATE(1898)] = 53704, + [SMALL_STATE(1899)] = 53713, + [SMALL_STATE(1900)] = 53724, + [SMALL_STATE(1901)] = 53735, + [SMALL_STATE(1902)] = 53746, + [SMALL_STATE(1903)] = 53757, + [SMALL_STATE(1904)] = 53768, + [SMALL_STATE(1905)] = 53777, + [SMALL_STATE(1906)] = 53788, + [SMALL_STATE(1907)] = 53799, + [SMALL_STATE(1908)] = 53808, + [SMALL_STATE(1909)] = 53817, + [SMALL_STATE(1910)] = 53828, + [SMALL_STATE(1911)] = 53839, + [SMALL_STATE(1912)] = 53850, + [SMALL_STATE(1913)] = 53859, + [SMALL_STATE(1914)] = 53870, + [SMALL_STATE(1915)] = 53881, + [SMALL_STATE(1916)] = 53892, + [SMALL_STATE(1917)] = 53903, + [SMALL_STATE(1918)] = 53914, + [SMALL_STATE(1919)] = 53925, + [SMALL_STATE(1920)] = 53934, + [SMALL_STATE(1921)] = 53945, + [SMALL_STATE(1922)] = 53954, + [SMALL_STATE(1923)] = 53965, + [SMALL_STATE(1924)] = 53974, + [SMALL_STATE(1925)] = 53985, + [SMALL_STATE(1926)] = 53996, + [SMALL_STATE(1927)] = 54007, + [SMALL_STATE(1928)] = 54018, + [SMALL_STATE(1929)] = 54027, + [SMALL_STATE(1930)] = 54038, + [SMALL_STATE(1931)] = 54049, + [SMALL_STATE(1932)] = 54060, + [SMALL_STATE(1933)] = 54071, + [SMALL_STATE(1934)] = 54082, + [SMALL_STATE(1935)] = 54093, + [SMALL_STATE(1936)] = 54104, + [SMALL_STATE(1937)] = 54115, + [SMALL_STATE(1938)] = 54126, + [SMALL_STATE(1939)] = 54137, + [SMALL_STATE(1940)] = 54148, + [SMALL_STATE(1941)] = 54157, + [SMALL_STATE(1942)] = 54168, + [SMALL_STATE(1943)] = 54179, + [SMALL_STATE(1944)] = 54190, + [SMALL_STATE(1945)] = 54199, + [SMALL_STATE(1946)] = 54208, + [SMALL_STATE(1947)] = 54219, + [SMALL_STATE(1948)] = 54228, + [SMALL_STATE(1949)] = 54239, + [SMALL_STATE(1950)] = 54248, + [SMALL_STATE(1951)] = 54259, + [SMALL_STATE(1952)] = 54270, + [SMALL_STATE(1953)] = 54281, + [SMALL_STATE(1954)] = 54290, + [SMALL_STATE(1955)] = 54301, + [SMALL_STATE(1956)] = 54310, + [SMALL_STATE(1957)] = 54321, + [SMALL_STATE(1958)] = 54332, + [SMALL_STATE(1959)] = 54343, + [SMALL_STATE(1960)] = 54352, + [SMALL_STATE(1961)] = 54363, + [SMALL_STATE(1962)] = 54374, + [SMALL_STATE(1963)] = 54385, + [SMALL_STATE(1964)] = 54396, + [SMALL_STATE(1965)] = 54407, + [SMALL_STATE(1966)] = 54418, + [SMALL_STATE(1967)] = 54427, + [SMALL_STATE(1968)] = 54438, + [SMALL_STATE(1969)] = 54449, + [SMALL_STATE(1970)] = 54460, + [SMALL_STATE(1971)] = 54471, + [SMALL_STATE(1972)] = 54482, + [SMALL_STATE(1973)] = 54491, + [SMALL_STATE(1974)] = 54500, + [SMALL_STATE(1975)] = 54511, + [SMALL_STATE(1976)] = 54522, + [SMALL_STATE(1977)] = 54533, + [SMALL_STATE(1978)] = 54542, + [SMALL_STATE(1979)] = 54553, + [SMALL_STATE(1980)] = 54564, + [SMALL_STATE(1981)] = 54575, + [SMALL_STATE(1982)] = 54584, + [SMALL_STATE(1983)] = 54593, + [SMALL_STATE(1984)] = 54604, + [SMALL_STATE(1985)] = 54615, + [SMALL_STATE(1986)] = 54626, + [SMALL_STATE(1987)] = 54637, + [SMALL_STATE(1988)] = 54648, + [SMALL_STATE(1989)] = 54659, + [SMALL_STATE(1990)] = 54667, + [SMALL_STATE(1991)] = 54675, + [SMALL_STATE(1992)] = 54683, + [SMALL_STATE(1993)] = 54691, + [SMALL_STATE(1994)] = 54699, + [SMALL_STATE(1995)] = 54707, + [SMALL_STATE(1996)] = 54715, + [SMALL_STATE(1997)] = 54723, + [SMALL_STATE(1998)] = 54731, + [SMALL_STATE(1999)] = 54739, + [SMALL_STATE(2000)] = 54747, + [SMALL_STATE(2001)] = 54755, + [SMALL_STATE(2002)] = 54763, + [SMALL_STATE(2003)] = 54771, + [SMALL_STATE(2004)] = 54779, + [SMALL_STATE(2005)] = 54787, + [SMALL_STATE(2006)] = 54795, + [SMALL_STATE(2007)] = 54803, + [SMALL_STATE(2008)] = 54811, + [SMALL_STATE(2009)] = 54819, + [SMALL_STATE(2010)] = 54827, + [SMALL_STATE(2011)] = 54835, + [SMALL_STATE(2012)] = 54843, + [SMALL_STATE(2013)] = 54851, + [SMALL_STATE(2014)] = 54859, + [SMALL_STATE(2015)] = 54867, + [SMALL_STATE(2016)] = 54875, + [SMALL_STATE(2017)] = 54883, + [SMALL_STATE(2018)] = 54891, + [SMALL_STATE(2019)] = 54899, + [SMALL_STATE(2020)] = 54907, + [SMALL_STATE(2021)] = 54915, + [SMALL_STATE(2022)] = 54923, + [SMALL_STATE(2023)] = 54931, + [SMALL_STATE(2024)] = 54939, + [SMALL_STATE(2025)] = 54947, + [SMALL_STATE(2026)] = 54955, + [SMALL_STATE(2027)] = 54963, + [SMALL_STATE(2028)] = 54971, + [SMALL_STATE(2029)] = 54979, + [SMALL_STATE(2030)] = 54987, + [SMALL_STATE(2031)] = 54995, + [SMALL_STATE(2032)] = 55003, + [SMALL_STATE(2033)] = 55011, + [SMALL_STATE(2034)] = 55019, + [SMALL_STATE(2035)] = 55027, + [SMALL_STATE(2036)] = 55035, + [SMALL_STATE(2037)] = 55043, + [SMALL_STATE(2038)] = 55051, + [SMALL_STATE(2039)] = 55059, + [SMALL_STATE(2040)] = 55067, + [SMALL_STATE(2041)] = 55075, + [SMALL_STATE(2042)] = 55083, + [SMALL_STATE(2043)] = 55091, + [SMALL_STATE(2044)] = 55099, + [SMALL_STATE(2045)] = 55107, + [SMALL_STATE(2046)] = 55115, + [SMALL_STATE(2047)] = 55123, + [SMALL_STATE(2048)] = 55131, + [SMALL_STATE(2049)] = 55139, + [SMALL_STATE(2050)] = 55147, + [SMALL_STATE(2051)] = 55155, + [SMALL_STATE(2052)] = 55163, + [SMALL_STATE(2053)] = 55171, + [SMALL_STATE(2054)] = 55179, + [SMALL_STATE(2055)] = 55187, + [SMALL_STATE(2056)] = 55195, + [SMALL_STATE(2057)] = 55203, + [SMALL_STATE(2058)] = 55211, + [SMALL_STATE(2059)] = 55219, + [SMALL_STATE(2060)] = 55227, + [SMALL_STATE(2061)] = 55235, + [SMALL_STATE(2062)] = 55243, + [SMALL_STATE(2063)] = 55251, + [SMALL_STATE(2064)] = 55259, + [SMALL_STATE(2065)] = 55267, + [SMALL_STATE(2066)] = 55275, + [SMALL_STATE(2067)] = 55283, + [SMALL_STATE(2068)] = 55291, + [SMALL_STATE(2069)] = 55299, + [SMALL_STATE(2070)] = 55307, + [SMALL_STATE(2071)] = 55315, + [SMALL_STATE(2072)] = 55323, + [SMALL_STATE(2073)] = 55331, + [SMALL_STATE(2074)] = 55339, + [SMALL_STATE(2075)] = 55347, + [SMALL_STATE(2076)] = 55355, + [SMALL_STATE(2077)] = 55363, + [SMALL_STATE(2078)] = 55371, + [SMALL_STATE(2079)] = 55379, + [SMALL_STATE(2080)] = 55387, + [SMALL_STATE(2081)] = 55395, + [SMALL_STATE(2082)] = 55403, + [SMALL_STATE(2083)] = 55411, + [SMALL_STATE(2084)] = 55419, + [SMALL_STATE(2085)] = 55427, + [SMALL_STATE(2086)] = 55435, + [SMALL_STATE(2087)] = 55443, + [SMALL_STATE(2088)] = 55451, + [SMALL_STATE(2089)] = 55459, + [SMALL_STATE(2090)] = 55467, + [SMALL_STATE(2091)] = 55475, + [SMALL_STATE(2092)] = 55483, + [SMALL_STATE(2093)] = 55491, + [SMALL_STATE(2094)] = 55499, + [SMALL_STATE(2095)] = 55507, + [SMALL_STATE(2096)] = 55515, + [SMALL_STATE(2097)] = 55523, + [SMALL_STATE(2098)] = 55531, + [SMALL_STATE(2099)] = 55539, + [SMALL_STATE(2100)] = 55547, + [SMALL_STATE(2101)] = 55555, + [SMALL_STATE(2102)] = 55563, + [SMALL_STATE(2103)] = 55571, + [SMALL_STATE(2104)] = 55579, + [SMALL_STATE(2105)] = 55587, + [SMALL_STATE(2106)] = 55595, + [SMALL_STATE(2107)] = 55603, + [SMALL_STATE(2108)] = 55611, + [SMALL_STATE(2109)] = 55619, + [SMALL_STATE(2110)] = 55627, + [SMALL_STATE(2111)] = 55635, + [SMALL_STATE(2112)] = 55643, + [SMALL_STATE(2113)] = 55651, + [SMALL_STATE(2114)] = 55659, + [SMALL_STATE(2115)] = 55667, + [SMALL_STATE(2116)] = 55675, + [SMALL_STATE(2117)] = 55683, + [SMALL_STATE(2118)] = 55691, + [SMALL_STATE(2119)] = 55699, + [SMALL_STATE(2120)] = 55707, + [SMALL_STATE(2121)] = 55715, + [SMALL_STATE(2122)] = 55723, + [SMALL_STATE(2123)] = 55731, + [SMALL_STATE(2124)] = 55739, + [SMALL_STATE(2125)] = 55747, + [SMALL_STATE(2126)] = 55755, + [SMALL_STATE(2127)] = 55763, + [SMALL_STATE(2128)] = 55771, + [SMALL_STATE(2129)] = 55779, + [SMALL_STATE(2130)] = 55787, + [SMALL_STATE(2131)] = 55795, + [SMALL_STATE(2132)] = 55803, + [SMALL_STATE(2133)] = 55811, + [SMALL_STATE(2134)] = 55819, + [SMALL_STATE(2135)] = 55827, + [SMALL_STATE(2136)] = 55835, + [SMALL_STATE(2137)] = 55843, + [SMALL_STATE(2138)] = 55851, + [SMALL_STATE(2139)] = 55859, + [SMALL_STATE(2140)] = 55867, + [SMALL_STATE(2141)] = 55875, + [SMALL_STATE(2142)] = 55883, + [SMALL_STATE(2143)] = 55891, + [SMALL_STATE(2144)] = 55899, + [SMALL_STATE(2145)] = 55907, + [SMALL_STATE(2146)] = 55915, + [SMALL_STATE(2147)] = 55923, + [SMALL_STATE(2148)] = 55931, + [SMALL_STATE(2149)] = 55939, + [SMALL_STATE(2150)] = 55947, + [SMALL_STATE(2151)] = 55955, + [SMALL_STATE(2152)] = 55963, + [SMALL_STATE(2153)] = 55971, + [SMALL_STATE(2154)] = 55979, + [SMALL_STATE(2155)] = 55987, + [SMALL_STATE(2156)] = 55995, + [SMALL_STATE(2157)] = 56003, + [SMALL_STATE(2158)] = 56011, + [SMALL_STATE(2159)] = 56019, + [SMALL_STATE(2160)] = 56027, + [SMALL_STATE(2161)] = 56035, + [SMALL_STATE(2162)] = 56043, + [SMALL_STATE(2163)] = 56051, + [SMALL_STATE(2164)] = 56059, + [SMALL_STATE(2165)] = 56067, + [SMALL_STATE(2166)] = 56075, + [SMALL_STATE(2167)] = 56083, + [SMALL_STATE(2168)] = 56091, + [SMALL_STATE(2169)] = 56099, + [SMALL_STATE(2170)] = 56107, + [SMALL_STATE(2171)] = 56115, + [SMALL_STATE(2172)] = 56123, + [SMALL_STATE(2173)] = 56131, + [SMALL_STATE(2174)] = 56139, + [SMALL_STATE(2175)] = 56147, + [SMALL_STATE(2176)] = 56155, + [SMALL_STATE(2177)] = 56163, + [SMALL_STATE(2178)] = 56171, + [SMALL_STATE(2179)] = 56179, + [SMALL_STATE(2180)] = 56187, + [SMALL_STATE(2181)] = 56195, + [SMALL_STATE(2182)] = 56203, + [SMALL_STATE(2183)] = 56211, + [SMALL_STATE(2184)] = 56219, + [SMALL_STATE(2185)] = 56227, + [SMALL_STATE(2186)] = 56235, + [SMALL_STATE(2187)] = 56243, + [SMALL_STATE(2188)] = 56251, + [SMALL_STATE(2189)] = 56259, + [SMALL_STATE(2190)] = 56267, + [SMALL_STATE(2191)] = 56275, + [SMALL_STATE(2192)] = 56283, + [SMALL_STATE(2193)] = 56291, + [SMALL_STATE(2194)] = 56299, + [SMALL_STATE(2195)] = 56307, + [SMALL_STATE(2196)] = 56315, + [SMALL_STATE(2197)] = 56323, + [SMALL_STATE(2198)] = 56331, + [SMALL_STATE(2199)] = 56339, + [SMALL_STATE(2200)] = 56347, + [SMALL_STATE(2201)] = 56355, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(620), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(619), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(44), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1920), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2197), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1674), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1805), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1379), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(632), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(783), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2154), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1844), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(465), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(523), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(443), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(149), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1251), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1764), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2149), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2146), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2145), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(910), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(75), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1858), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1859), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(522), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2133), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(94), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(425), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1864), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(685), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1490), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(670), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(676), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(676), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2198), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 2), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__expression_except_range, 1, .production_id = 2), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 60), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 60), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 28), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 28), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 3, .production_id = 112), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 3, .production_id = 112), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 93), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 93), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_item, 3, .production_id = 33), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_item, 3, .production_id = 33), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 4), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 4), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 2), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 2), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 122), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 122), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 183), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 183), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(631), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(620), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(619), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(44), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(65), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(11), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2197), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1881), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1883), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(632), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(671), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(451), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(63), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(156), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2109), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(69), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(168), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1977), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(522), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2133), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(94), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(425), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1864), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(685), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1490), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(670), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(676), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(676), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 20), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 20), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1, 0, 0), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 4), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 4), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 3, 0, 113), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 3, 0, 113), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 123), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 123), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block, 2, 0, 0), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block, 2, 0, 0), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 184), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 184), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 2), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 2), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 2), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 2), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 94), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 94), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 29), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 29), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 32), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 32), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_item, 3, 0, 34), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_item, 3, 0, 34), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 61), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 61), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2, 0, 0), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, 0, 0), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 94), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 94), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 144), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 144), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 199), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 199), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 3), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 3), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 54), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 54), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 184), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 184), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 163), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 163), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 143), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 143), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 142), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 142), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 141), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 141), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 102), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 102), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 139), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 139), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 23), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 23), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 137), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 137), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 187), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 187), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 136), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 136), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 134), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 134), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 98), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 98), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 3, .production_id = 14), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 3, .production_id = 14), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 2), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 2), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 182), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 182), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 160), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 160), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 52), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 52), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 3, .production_id = 7), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 3, .production_id = 7), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 148), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 148), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 149), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 149), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 52), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 52), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 7), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 7), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 159), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 159), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 52), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 52), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 52), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 52), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 151), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 151), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_item, 2, .production_id = 4), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_item, 2, .production_id = 4), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 3), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 3), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 129), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 129), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 4, .production_id = 49), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 4, .production_id = 49), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 127), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 127), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 152), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 152), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 89), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 89), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 116), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 116), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 179), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 179), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 153), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 153), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 154), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 154), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 178), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 178), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 119), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 119), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 155), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 155), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 5), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 5), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 156), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 156), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 79), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 79), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 119), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 119), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 203), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 203), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 156), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 156), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 175), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 175), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 156), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 156), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 151), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 151), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 4, .production_id = 48), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 4, .production_id = 48), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 120), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 120), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 79), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 79), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 4, .production_id = 48), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 4, .production_id = 48), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 117), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 117), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 116), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 116), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 48), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 48), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 188), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 188), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 79), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 79), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 202), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 202), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 160), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 160), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 201), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 201), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 80), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 80), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 5), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 5), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 79), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 79), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 81), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 81), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 161), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 161), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 27), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 27), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 172), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 172), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 171), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 171), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 110), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 110), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 162), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 162), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 88), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 88), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 8), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 8), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 170), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 170), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 195), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 195), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 108), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 108), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 88), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 88), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 52), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 52), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 200), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 200), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 199), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 199), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 198), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 198), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 190), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 190), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 197), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 197), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 4), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 4), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 191), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 191), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 85), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 85), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 169), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 169), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 86), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 86), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 196), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 196), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 94), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 94), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 88), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 88), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 105), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 105), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 164), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 164), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 128), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 128), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 165), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 165), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 101), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 101), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 195), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 99), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 99), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 98), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 98), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 138), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 138), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 168), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 168), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_item, 2, .production_id = 4), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_configurable_item, 2, .production_id = 4), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 2), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 2), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 136), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 136), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 186), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 186), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 194), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 194), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 192), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 192), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 89), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 89), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 90), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 90), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 91), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 91), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 180), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 180), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 193), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 193), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(966), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(975), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(968), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(427), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(428), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1866), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1174), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2107), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(522), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2095), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1226), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(463), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(442), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(455), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1225), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1906), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(454), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1198), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1514), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1183), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1677), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1677), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(412), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(480), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(431), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(432), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(433), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(412), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(481), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1519), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 145), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 145), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 95), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 95), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 159), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 159), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 4, 0, 49), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 4, 0, 49), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 117), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 117), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 118), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 118), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 119), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 119), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 120), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 120), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 119), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 119), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 120), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 120), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 119), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 119), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 120), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 120), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 4, 0, 50), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 4, 0, 50), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 3, 0, 0), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 3, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_item, 2, 0, 4), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_configurable_item, 2, 0, 4), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 5, 0, 0), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 5, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 52), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 52), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 53), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 53), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 90), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 90), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 128), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 128), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 129), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 129), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 130), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 130), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 99), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 99), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 135), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 135), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 137), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 137), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 138), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 138), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 139), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 139), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 103), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 103), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 142), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 142), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 143), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 143), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_item, 3, 0, 14), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_item, 3, 0, 14), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 144), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 144), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 2, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 2, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 3, 0, 7), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 3, 0, 7), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 53), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 53), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 149), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 149), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 150), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 150), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 152), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 152), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 153), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 153), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 117), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 117), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 154), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 154), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 155), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 155), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 156), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 156), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 157), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 157), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 120), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 120), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 157), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 157), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 158), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 158), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 157), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 157), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 160), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 160), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 161), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 161), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 162), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 162), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 163), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 163), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 54), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 54), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 55), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 55), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 165), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 165), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 129), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 129), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 166), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 166), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 137), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 137), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 169), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 169), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 139), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 139), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 171), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 171), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 172), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 172), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 173), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 173), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 152), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 152), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 176), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 176), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 177), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 177), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 178), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 178), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 120), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 120), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 179), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 179), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 181), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 181), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 182), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 182), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 161), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 161), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 183), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 183), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 7), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 7), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 164), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 164), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 185), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 185), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 187), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 187), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 188), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 188), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 189), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 189), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 14), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 14), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 191), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 191), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 192), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 192), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 177), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 177), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 193), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 193), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 194), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 194), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 181), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 181), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 195), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 195), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 196), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 196), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 197), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 197), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 198), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 198), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 191), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 191), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 199), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 199), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 200), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 200), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 201), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 201), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 196), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 196), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 202), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 202), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 203), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 203), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 200), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 200), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 204), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 204), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 67), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 67), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 68), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 68), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 24), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 24), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 69), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 69), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 70), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 70), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 14), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 14), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 52), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 52), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 53), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 53), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 52), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 52), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 50), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 50), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 53), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 53), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 4, 0, 49), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 4, 0, 49), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 24), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 24), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 49), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 49), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 82), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 82), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 28), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 28), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content_list, 4, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_content_list, 4, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 86), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 86), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 87), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 87), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 8), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 8), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 89), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 89), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 14), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 14), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 14), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 14), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 31), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 31), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 90), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 90), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 91), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 91), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 54), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 54), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 92), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 92), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 3, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 3, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 99), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 99), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 100), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 100), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 67), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 67), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 102), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 102), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 103), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 103), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 104), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 104), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 95), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 95), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 106), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 106), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_item, 2, 0, 4), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_item, 2, 0, 4), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_type, 2, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_type, 2, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 14), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 14), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 53), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 53), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 109), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 109), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 89), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 89), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 110), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 110), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 111), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 111), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 5, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 5, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(478), [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2107), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 4), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 26), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 26), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 18), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 18), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 16), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__expression_except_range, 1), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 8), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_instance_expression, 2, .production_id = 3), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage, 3), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage, 3), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 61), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 61), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 114), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 114), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 64), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 64), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 123), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 123), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 64), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 64), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 82), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 82), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 83), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 83), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_call_expression, 3, .production_id = 47), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_call_expression, 3, .production_id = 47), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 135), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 135), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 23), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 23), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 133), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 133), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 94), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 94), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 94), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 144), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 144), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 144), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 95), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 95), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 9), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 34), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 34), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 13), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 7), REDUCE(sym_scoped_type_identifier, 2, .production_id = 8), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 3, .production_id = 78), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unit_type, 2), REDUCE(sym_unit_expression, 2), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 115), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2155), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 4, .production_id = 125), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 94), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 3, .production_id = 34), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 150), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 111), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 34), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 144), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 94), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1098), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1552), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1496), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2023), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2024), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1843), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(520), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(456), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1251), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2029), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2030), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2189), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(931), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1976), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1857), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 107), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 107), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 6), REDUCE(sym__pattern, 1), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deref_pattern, 2), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deref_pattern, 2), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(506), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(509), - [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1026), - [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1535), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, .production_id = 113), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2042), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 3), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(801), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 124), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1528), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 1), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 1, .production_id = 32), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1540), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 84), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(459), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 58), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2), SHIFT_REPEAT(1325), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 7), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 87), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 72), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 92), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 78), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(563), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 50), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 96), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1429), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(164), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_content, 1), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(82), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(917), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2), SHIFT_REPEAT(960), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2), SHIFT_REPEAT(434), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), SHIFT_REPEAT(1535), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 105), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1313), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 126), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1342), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 130), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 131), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1337), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 132), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(477), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 85), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 23), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(439), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 147), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 147), SHIFT_REPEAT(498), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 71), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 86), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 166), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 167), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 174), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 64), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 185), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 174), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 4), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 146), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 173), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 173), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 174), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 189), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 64), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 189), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 5), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 146), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 23), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 64), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 75), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 1, .production_id = 76), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 77), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 23), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 3), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 4), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 2), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 145), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 5), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4738] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 4, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 22), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 22), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 6), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 6), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 23), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 23), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 7), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 16), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 16), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 15), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 37), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 37), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 36), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 6), REDUCE(sym__expression_except_range, 1, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, 0, 6), REDUCE(sym__expression_except_range, 1, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 36), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 37), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 38), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 38), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 39), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 45), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 45), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 46), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 46), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 47), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 17), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 17), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 18), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 18), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 21), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 21), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 25), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 25), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 15), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 16), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 7), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 8), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 39), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 47), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage, 3, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage, 3, 0, 0), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 65), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 65), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 65), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 65), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 115), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 115), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_instance_expression, 2, 0, 3), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_instance_expression, 2, 0, 3), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 134), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 134), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 136), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 136), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abi_call_expression, 3, 0, 48), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abi_call_expression, 3, 0, 48), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 124), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 124), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 96), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 96), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 101), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 101), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 84), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 84), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 105), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 105), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 42), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 42), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 24), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 24), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 145), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 145), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 145), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 95), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 95), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 95), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 43), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 43), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 9), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 9), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 35), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 35), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 44), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 44), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 34), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 36), REDUCE(sym_scoped_type_identifier, 3, 0, 37), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 36), REDUCE(sym_scoped_type_identifier, 3, 0, 37), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 7), REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 7), REDUCE(sym_scoped_type_identifier, 2, 0, 8), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 15), REDUCE(sym_scoped_type_identifier, 3, 0, 16), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 15), REDUCE(sym_scoped_type_identifier, 3, 0, 16), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 1), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 1), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 0), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__expression_except_range, 1, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_unit_expression, 2, 0, 0), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_unit_expression, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 3, 0, 79), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 63), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 63), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 95), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 63), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 63), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 63), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 63), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 3, 0, 35), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 112), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 35), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 151), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 145), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_content, 4, 0, 126), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2158), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 116), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 95), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2027), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 108), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 108), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 6), REDUCE(sym__pattern, 1, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 0), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 59), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 59), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 59), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, 0, 59), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 59), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 59), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 59), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, 0, 59), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 59), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 59), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 59), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, 0, 59), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deref_pattern, 2, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deref_pattern, 2, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 59), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 59), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 59), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, 0, 59), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 67), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 59), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 59), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 63), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(184), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1158), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, 0, 114), SHIFT_REPEAT(1525), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 2, 0, 114), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 125), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1486), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 3, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameter, 1, 0, 33), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 85), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 1, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 79), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 186), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2, 0, 0), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_item_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 131), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 30), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 132), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 133), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 24), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 97), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 148), SHIFT_REPEAT(501), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 148), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 51), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 2, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 106), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 7), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 87), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 64), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 72), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 93), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 127), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 73), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 74), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 75), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(1354), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 86), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 98), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_content, 1, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 167), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 168), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 88), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_parameters_repeat1, 2, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 65), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 64), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_storage_content_list_repeat1, 2, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 175), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 5), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 65), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 174), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 147), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 175), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 76), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_content_repeat1, 4, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 3), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_repeat1, 1, 0, 77), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 78), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 174), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 175), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 190), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 190), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 24), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 65), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 24), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 147), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4568] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 2, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 146), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 3, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 5, 0, 0), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_parameters, 4, 0, 0), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__string_content = 0, + ts_external_token_raw_string_literal = 1, + ts_external_token_float_literal = 2, + ts_external_token_block_comment = 3, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_raw_string_literal] = sym_raw_string_literal, + [ts_external_token_float_literal] = sym_float_literal, + [ts_external_token_block_comment] = sym_block_comment, +}; + +static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__string_content] = true, + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [2] = { + [ts_external_token_raw_string_literal] = true, + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, + [3] = { + [ts_external_token_block_comment] = true, + }, + [4] = { + [ts_external_token__string_content] = true, + [ts_external_token_block_comment] = true, + }, + [5] = { + [ts_external_token_float_literal] = true, + [ts_external_token_block_comment] = true, + }, }; #ifdef __cplusplus @@ -107596,11 +103303,15 @@ bool tree_sitter_sway_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_sway_external_scanner_serialize(void *, char *); void tree_sitter_sway_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_sway(void) { +TS_PUBLIC const TSLanguage *tree_sitter_sway(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1abdd12 --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 0000000..15a3b23 --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..799f599 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -48,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 { @@ -87,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -126,13 +131,38 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +207,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +217,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +225,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..1f0be69 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,36 @@ +{ + "grammars": [ + { + "name": "sway", + "camelcase": "Sway", + "scope": "source.sway", + "path": ".", + "file-types": [ + "sw" + ], + "injection-regex": "sway" + } + ], + "metadata": { + "version": "1.0.0", + "license": "Apache-2.0", + "description": "Sway grammar for tree-sitter", + "authors": [ + { + "name": "Fuel Labs", + "email": "contact@fuel.sh" + } + ], + "links": { + "repository": "https://github.com/FuelLabs/tree-sitter-sway" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +}