From d0535a4d241fe461d1f86885f7aaeb71064c86ba Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 2 Sep 2024 05:03:13 -0400 Subject: [PATCH] build: update bindings (again) --- .editorconfig | 9 +- .eslintrc.js | 20 - .gitattributes | 4 - .github/workflows/fuzz.yml | 21 + .github/workflows/lint.yml | 26 + .gitignore | 3 +- .npmignore | 17 - Cargo.lock | 89 + Cargo.toml | 4 +- Makefile | 40 +- Package.swift | 83 +- binding.gyp | 15 +- bindings/node/binding.cc | 2 +- .../python/tree_sitter_python/__init__.py | 33 +- .../python/tree_sitter_python/__init__.pyi | 7 +- bindings/rust/build.rs | 2 +- go.sum | 34 + package-lock.json | 199 +- package.json | 58 +- pyproject.toml | 4 +- setup.py | 19 +- src/parser.c | 103906 +++++++-------- test/corpus/a.txt | 10 + test/corpus/errors.txt | 1 + test/corpus/literals.txt | 1 + types/dsl.d.ts | 379 - 26 files changed, 52422 insertions(+), 52564 deletions(-) delete mode 100644 .eslintrc.js create mode 100644 .github/workflows/fuzz.yml create mode 100644 .github/workflows/lint.yml delete mode 100644 .npmignore create mode 100644 Cargo.lock create mode 100644 go.sum create mode 100644 test/corpus/a.txt delete mode 100644 types/dsl.d.ts diff --git a/.editorconfig b/.editorconfig index 0463d528..f363cc55 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,8 +2,6 @@ root = true [*] charset = utf-8 -insert_final_newline = true -trim_trailing_whitespace = true [*.{json,toml,yml,gyp}] indent_style = space @@ -13,11 +11,11 @@ indent_size = 2 indent_style = space indent_size = 2 -[*.rs] +[*.{c,cc,h}] indent_style = space indent_size = 4 -[*.{c,cc,h}] +[*.rs] indent_style = space indent_size = 4 @@ -36,3 +34,6 @@ indent_size = 8 [Makefile] indent_style = tab indent_size = 8 + +[parser.c] +indent_size = 2 diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index b2e707a9..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - 'env': { - 'commonjs': true, - 'es2021': true, - }, - 'extends': 'google', - 'overrides': [ - ], - 'parserOptions': { - 'ecmaVersion': 'latest', - 'sourceType': 'module', - }, - 'rules': { - 'indent': ['error', 2, {'SwitchCase': 1}], - 'max-len': [ - 'error', - {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, - ], - }, -}; diff --git a/.gitattributes b/.gitattributes index 1ed44d00..4cb10583 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,5 @@ * text=auto eol=lf -examples/crlf-line-endings.py eol=crlf -examples/python2-grammar-crlf.py eol=crlf -examples/python3-grammar-crlf.py eol=crlf - src/*.json linguist-generated src/parser.c linguist-generated src/tree_sitter/* linguist-generated diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 00000000..347a9ccd --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,21 @@ +name: Fuzz Parser + +on: + push: + branches: [master] + paths: + - src/scanner.c + pull_request: + paths: + - src/scanner.c + +jobs: + fuzz: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Run fuzzer + uses: tree-sitter/fuzz-action@v4 + with: + tree-sitter-version: v0.22.2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..96f1a4df --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,26 @@ +name: Lint + +on: + push: + branches: [master] + paths: + - grammar.js + pull_request: + paths: + - grammar.js + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + cache: npm + node-version: ${{vars.NODE_VERSION}} + - name: Install modules + run: npm ci --legacy-peer-deps + - name: Run ESLint + run: npm run lint diff --git a/.gitignore b/.gitignore index 27fc43f7..2fd9daca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ # Rust artifacts -Cargo.lock target/ # Node artifacts @@ -10,9 +9,9 @@ node_modules/ # Swift artifacts .build/ +Package.resolved # Go artifacts -go.sum _obj/ # Python artifacts diff --git a/.npmignore b/.npmignore deleted file mode 100644 index ac723165..00000000 --- a/.npmignore +++ /dev/null @@ -1,17 +0,0 @@ -bindings/c -bindings/go -bindings/python -bindings/rust -bindings/swift -Cargo.toml -Makefile -examples -pyproject.toml -setup.py -test -.editorconfig -.github -.gitignore -.gitattributes -.gitmodules -.npmignore diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..ab7f59c1 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,89 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" +dependencies = [ + "shlex", +] + +[[package]] +name = "memchr" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" + +[[package]] +name = "regex" +version = "1.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "tree-sitter" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff" +dependencies = [ + "cc", + "regex", + "regex-syntax", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-language" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57" + +[[package]] +name = "tree-sitter-python" +version = "0.23.0" +dependencies = [ + "cc", + "tree-sitter", + "tree-sitter-language", +] diff --git a/Cargo.toml b/Cargo.toml index a27db24a..a2ff126a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ path = "bindings/rust/lib.rs" tree-sitter-language = "0.1.0" [build-dependencies] -cc = "1.0.89" +cc = "1.1.15" [dev-dependencies] -tree-sitter = "0.23.0" +tree-sitter = "0.23" diff --git a/Makefile b/Makefile index 7a8185d8..a3a5b340 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,7 @@ +ifeq ($(OS),Windows_NT) +$(error Windows is not supported) +endif + VERSION := 0.23.0 LANGUAGE_NAME := tree-sitter-python @@ -17,44 +21,44 @@ endif TS ?= tree-sitter -# ABI versioning -SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) -SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) - # install directory layout PREFIX ?= /usr/local INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig -# object files -OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) # flags -ARFLAGS := rcs +ARFLAGS ?= rcs override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(shell sed -n 's/#define LANGUAGE_VERSION //p' $(PARSER)) + # OS-specific bits -ifeq ($(OS),Windows_NT) - $(error "Windows is not supported") -else ifeq ($(shell uname),Darwin) +ifeq ($(shell uname),Darwin) SOEXT = dylib - SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib - SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, ifneq ($(ADDITIONAL_LIBS),) LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks else SOEXT = so - SOEXTVER_MAJOR = so.$(SONAME_MAJOR) - SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) + SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) LINKSHARED := $(LINKSHARED)-shared -Wl, ifneq ($(ADDITIONAL_LIBS),) LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) endif - LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) endif ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig @@ -81,8 +85,8 @@ $(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in -e 's|=$(PREFIX)|=$${prefix}|' \ -e 's|@PREFIX@|$(PREFIX)|' $< > $@ -$(SRC_DIR)/parser.c: grammar.js - $(TS) generate --no-bindings +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate --no-bindings $^ install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' diff --git a/Package.swift b/Package.swift index 6cd9539a..1b8638d4 100644 --- a/Package.swift +++ b/Package.swift @@ -3,45 +3,58 @@ import PackageDescription let package = Package( name: "TreeSitterPython", - platforms: [.macOS(.v10_13), .iOS(.v11)], products: [ .library(name: "TreeSitterPython", targets: ["TreeSitterPython"]), ], - dependencies: [], + dependencies: [ + .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + ], targets: [ - .target(name: "TreeSitterPython", - path: ".", - exclude: [ - "Cargo.toml", - "Makefile", - "binding.gyp", - "bindings/c", - "bindings/go", - "bindings/node", - "bindings/python", - "bindings/rust", - "examples", - "grammar.js", - "package.json", - "package-lock.json", - "pyproject.toml", - "setup.py", - "test", - "types", - ".editorconfig", - ".github", - ".gitignore", - ".gitattributes", - ], - sources: [ - "src/parser.c", - "src/scanner.c", - ], - resources: [ - .copy("queries") - ], - publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) + .target( + name: "TreeSitterPython", + dependencies: [], + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + "src/scanner.c", + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")] + ), + .testTarget( + name: "TreeSitterPythonTests", + dependencies: [ + "SwiftTreeSitter", + "TreeSitterPython", + ], + path: "bindings/swift/TreeSitterPythonTests" + ) ], cLanguageStandard: .c11 ) diff --git a/binding.gyp b/binding.gyp index 3724f732..c0d39b62 100644 --- a/binding.gyp +++ b/binding.gyp @@ -11,10 +11,19 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - "src/scanner.c", + # NOTE: if your language has an external scanner, add it here. ], - "cflags_c": [ - "-std=c11", + "conditions": [ + ["OS!='win'", { + "cflags_c": [ + "-std=c11", + ], + }, { # OS == "win" + "cflags_c": [ + "/std:c11", + "/utf-8", + ], + }], ], } ] diff --git a/bindings/node/binding.cc b/bindings/node/binding.cc index e6536ac6..3080abf5 100644 --- a/bindings/node/binding.cc +++ b/bindings/node/binding.cc @@ -6,7 +6,7 @@ extern "C" TSLanguage *tree_sitter_python(); // "tree-sitter", "language" hashed with BLAKE2 const napi_type_tag LANGUAGE_TYPE_TAG = { - 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 }; Napi::Object Init(Napi::Env env, Napi::Object exports) { diff --git a/bindings/python/tree_sitter_python/__init__.py b/bindings/python/tree_sitter_python/__init__.py index 3c892c31..8c6bbeb6 100644 --- a/bindings/python/tree_sitter_python/__init__.py +++ b/bindings/python/tree_sitter_python/__init__.py @@ -1,3 +1,34 @@ -"Python grammar for tree-sitter" +"""Python 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): + if name == "HIGHLIGHTS_QUERY": + return _get_query("HIGHLIGHTS_QUERY", "highlights.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", + "TAGS_QUERY", +] + + +def __dir__(): + return sorted(__all__ + [ + "__all__", "__builtins__", "__cached__", "__doc__", "__file__", + "__loader__", "__name__", "__package__", "__path__", "__spec__", + ]) diff --git a/bindings/python/tree_sitter_python/__init__.pyi b/bindings/python/tree_sitter_python/__init__.pyi index 5416666f..0130edfa 100644 --- a/bindings/python/tree_sitter_python/__init__.pyi +++ b/bindings/python/tree_sitter_python/__init__.pyi @@ -1 +1,6 @@ -def language() -> int: ... +from typing import Final + +HIGHLIGHTS_QUERY: Final[str] +TAGS_QUERY: Final[str] + +def language() -> object: ... diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 8740dc39..4a5ca896 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -2,7 +2,7 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(src_dir); + c_config.include(src_dir).flag_if_supported("-Wno-unused"); #[cfg(target_env = "msvc")] c_config.flag("-utf-8"); diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..817e6fdc --- /dev/null +++ b/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/mattn/go-pointer v0.0.1 h1:n+XhsuGeVO6MEAp7xyEukFINEa+Quek5psIR/ylA6o0= +github.com/mattn/go-pointer v0.0.1/go.mod h1:2zXcozF6qYGgmsG+SeTZz3oAbFLdD3OWqnUbNvJZAlc= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/tree-sitter/go-tree-sitter v0.23.1 h1:HCfaE19sKfG7q190xfM1loUZf6wEHa4TDqDEW46s9Lg= +github.com/tree-sitter/go-tree-sitter v0.23.1/go.mod h1:EvIVhMvvPNvhu9x+ddSPxSnUEU5AnsSwi1LMqXIVE3A= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb h1:A8425heRM8mylnv4H58FPUiH+aYivyitre0PzxrfmWs= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb/go.mod h1:dOF6gtQiF9UwNh995T5OphYmtIypkjsp3ap7r9AN/iA= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148 h1:AfFPZwtwGN01BW1jDdqBVqscTwetvMpydqYZz57RSlc= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148/go.mod h1:Bh6U3viD57rFXRYIQ+kmiYtr+1Bx0AceypDLJJSyi9s= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33 h1:TwqSV3qLp3tKSqirGLRHnjFk9Tc2oy57LIl+FQ4GjI4= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33/go.mod h1:CvCKCt3v04Ufos1zZnNCelBDeCGRpPucaN8QczoUsN4= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012 h1:Xvxck3tE5FW7F7bTS97iNM2ADMyCMJztVqn5HYKdJGo= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012/go.mod h1:T40D0O1cPvUU/+AmiXVXy1cncYQT6wem4Z0g4SfAYvY= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0 h1:c46K6uh5Dz00zJeU9BfjXdb8I+E4RkUdfnWJpQADXFo= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0/go.mod h1:hcNt/kOJHcIcuMvouE7LJcYdeFUFbVpBJ6d4wmOA+tU= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495 h1:jrt4qbJVEFs4H93/ITxygHc6u0TGqAkkate7TQ4wFSA= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495/go.mod h1:oyaR7fLnRV0hT9z6qwE9GkaeTom/hTDwK3H2idcOJFc= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5 h1:om4X9AVg3asL8gxNJDcz4e/Wp+VpQj1PY3uJXKr6EOg= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5/go.mod h1:nNqgPoV/h9uYWk6kYEFdEAhNVOacpfpRW5SFmdaP4tU= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5 h1:pfV3G3k7NCKqKk8THBmyuh2zA33lgYHS3GVrzRR8ry4= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5/go.mod h1:GbMKRjLfk0H+PI7nLi1Sx5lHf5wCpLz9al8tQYSxpEk= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1 h1:ZXZMDwE+IhUtGug4Brv6NjJWUU3rfkZBKpemf6RY8/g= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1/go.mod h1:UKCLuYnJ312Mei+3cyTmGOHzn0YAnaPRECgJmHtzrqs= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d h1:fcYCvoXdcP1uRQYXqJHRy6Hec+uKScQdKVtMwK9JeCI= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d/go.mod h1:T1nShQ4v5AJtozZ8YyAS4uzUtDAJj/iv4YfwXSbUHzg= +github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447 h1:o9alBu1J/WjrcTKEthYtXmdkDc5OVXD+PqlvnEZ0Lzc= +github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447/go.mod h1:1Oh95COkkTn6Ezp0vcMbvfhRP5gLeqqljR0BYnBzWvc= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/package-lock.json b/package-lock.json index 0fa50f04..df64d108 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,14 +10,14 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^7.1.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "prebuildify": "^6.0.0", - "tree-sitter-cli": "^0.21.0" + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.23.0" }, "peerDependencies": { "tree-sitter": "^0.21.0" @@ -28,15 +28,6 @@ } } }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", @@ -53,9 +44,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -97,6 +88,7 @@ "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^2.0.2", @@ -121,9 +113,10 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, "node_modules/@nodelib/fs.scandir": { @@ -168,9 +161,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -375,9 +368,9 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -543,9 +536,9 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" @@ -584,15 +577,6 @@ "node": ">=0.10.0" } }, - "node_modules/execspawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", - "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", - "dev": true, - "dependencies": { - "util-extend": "^1.0.1" - } - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -612,9 +596,9 @@ "dev": true }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -649,12 +633,13 @@ } }, "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { @@ -662,9 +647,9 @@ } }, "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, "node_modules/fs-constants": { @@ -683,6 +668,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -762,9 +748,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" @@ -799,6 +785,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -859,6 +846,12 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -871,6 +864,15 @@ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", @@ -905,18 +907,6 @@ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -957,9 +947,9 @@ "dev": true }, "node_modules/node-abi": { - "version": "3.56.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.56.0.tgz", - "integrity": "sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==", + "version": "3.67.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", + "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -969,17 +959,17 @@ } }, "node_modules/node-addon-api": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", - "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.1.0.tgz", + "integrity": "sha512-yBY+qqWSv3dWKGODD6OGE6GnTX7Q2r+4+DfpqxHSHh8x0B4EKP9+wVGLS6U/AM1vxSNNmUEuIV5EGhYwPpfOwQ==", "engines": { - "node": "^16 || ^18 || >= 20" + "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", - "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -1008,17 +998,17 @@ } }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -1094,12 +1084,11 @@ } }, "node_modules/prebuildify": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", - "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", "dev": true, "dependencies": { - "execspawn": "^1.0.1", "minimist": "^1.2.5", "mkdirp-classic": "^0.5.3", "node-abi": "^3.3.0", @@ -1196,6 +1185,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -1251,13 +1241,10 @@ ] }, "node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -1366,24 +1353,27 @@ "dev": true }, "node_modules/tree-sitter": { - "version": "0.21.0", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.0.tgz", - "integrity": "sha512-WDhpLxQdW7wsmmnBsf4NGqnEKs+Kxljk/CfbJJxgzZiinfA1gAWnhi/GirQjClw+woXhYsNq930BlskFulMMBQ==", + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", "hasInstallScript": true, "peer": true, "dependencies": { - "node-addon-api": "^7.1.0", + "node-addon-api": "^8.0.0", "node-gyp-build": "^4.8.0" } }, "node_modules/tree-sitter-cli": { - "version": "0.21.0", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.21.0.tgz", - "integrity": "sha512-wA7wT5724fNQW82XDH6zT6ZcYonjrAKLCHHuhLsPcAKULrhp3rNuMvlgBdB5FUBvmjHNhtTZF/qpHenMoRJPBw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.23.0.tgz", + "integrity": "sha512-/DdQaPCCOrOYGp9FxGdhFUnHIrjhfbYatQXgNIcmaAOpPunpnDj2vsO/H+svsfQLaFsQ1C+BjgPhpbV28zka1w==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/type-check": { @@ -1425,12 +1415,6 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", - "dev": true - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -1446,18 +1430,21 @@ "node": ">= 8" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/package.json b/package.json index 9140ef01..3b0dd871 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "description": "Python grammar for tree-sitter", "repository": "github:tree-sitter/tree-sitter-python", "license": "MIT", - "author": "Max Brunsfeld", + "author": "Max Brunsfeld ", "contributors": [ - "Amaan Qureshi" + "Amaan Qureshi " ], "main": "bindings/node", "types": "bindings/node", @@ -25,20 +25,20 @@ "python" ], "dependencies": { - "node-addon-api": "^7.1.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.21.0", - "prebuildify": "^6.0.0" + "tree-sitter-cli": "^0.23.0", + "prebuildify": "^6.0.1" }, "peerDependencies": { "tree-sitter": "^0.21.0" }, "peerDependenciesMeta": { - "tree_sitter": { + "tree-sitter": { "optional": true } }, @@ -61,5 +61,47 @@ "highlights": "queries/highlights.scm", "tags": "queries/tags.scm" } - ] + ], + "eslintConfig": { + "env": { + "commonjs": true, + "es2021": true + }, + "extends": "google", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "arrow-parens": "off", + "camel-case": "off", + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], + "max-len": [ + "error", + { + "code": 160, + "ignoreComments": true, + "ignoreUrls": true, + "ignoreStrings": true + } + ], + "spaced-comment": [ + "warn", + "always", + { + "line": { + "markers": [ + "/" + ] + } + } + ] + } + } } diff --git a/pyproject.toml b/pyproject.toml index 1d492032..1310bb51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ authors = [ { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.8" +requires-python = ">=3.9" license.text = "MIT" readme = "README.md" @@ -29,5 +29,5 @@ Homepage = "https://github.com/tree-sitter/tree-sitter-python" core = ["tree-sitter~=0.21"] [tool.cibuildwheel] -build = "cp38-*" +build = "cp39-*" build-frontend = "build" diff --git a/setup.py b/setup.py index 65b70b47..80dc51c2 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp38", "abi3" + python, abi = "cp39", "abi3" return python, abi, platform @@ -38,12 +38,17 @@ def get_tag(self): "src/parser.c", "src/scanner.c", ], - extra_compile_args=( - ["-std=c11"] if system() != 'Windows' else [] - ), + extra_compile_args=[ + "-std=c11", + "-fvisibility=hidden", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], py_limited_api=True, @@ -53,5 +58,5 @@ def get_tag(self): "build": Build, "bdist_wheel": BdistWheel }, - zip_safe=False, + zip_safe=False ) diff --git a/src/parser.c b/src/parser.c index 3c7692af..1f98bb34 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2776,78 +2776,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 10, - [11] = 10, + [11] = 11, [12] = 12, [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 8, - [18] = 13, + [16] = 2, + [17] = 17, + [18] = 18, [19] = 19, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 7, - [25] = 3, + [24] = 24, + [25] = 25, [26] = 26, - [27] = 22, + [27] = 27, [28] = 28, [29] = 29, [30] = 30, - [31] = 21, - [32] = 23, + [31] = 31, + [32] = 32, [33] = 33, - [34] = 9, - [35] = 35, - [36] = 36, - [37] = 16, - [38] = 28, - [39] = 39, - [40] = 39, - [41] = 41, - [42] = 42, - [43] = 33, - [44] = 44, - [45] = 44, - [46] = 15, - [47] = 36, - [48] = 29, - [49] = 42, - [50] = 12, - [51] = 2, + [34] = 30, + [35] = 3, + [36] = 4, + [37] = 5, + [38] = 6, + [39] = 7, + [40] = 8, + [41] = 9, + [42] = 10, + [43] = 11, + [44] = 12, + [45] = 13, + [46] = 14, + [47] = 15, + [48] = 48, + [49] = 17, + [50] = 18, + [51] = 19, [52] = 20, - [53] = 53, - [54] = 54, - [55] = 41, - [56] = 14, - [57] = 19, - [58] = 4, + [53] = 21, + [54] = 22, + [55] = 24, + [56] = 25, + [57] = 28, + [58] = 29, [59] = 59, - [60] = 26, - [61] = 6, + [60] = 48, + [61] = 59, [62] = 62, - [63] = 63, + [63] = 62, [64] = 64, - [65] = 63, - [66] = 63, - [67] = 64, - [68] = 63, - [69] = 63, - [70] = 63, - [71] = 63, - [72] = 63, + [65] = 65, + [66] = 62, + [67] = 65, + [68] = 62, + [69] = 62, + [70] = 62, + [71] = 62, + [72] = 62, [73] = 73, [74] = 73, [75] = 75, [76] = 76, [77] = 75, - [78] = 78, + [78] = 76, [79] = 79, - [80] = 76, + [80] = 80, [81] = 79, - [82] = 78, + [82] = 80, [83] = 83, [84] = 83, [85] = 85, @@ -2855,69 +2855,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 87, [88] = 88, [89] = 89, - [90] = 87, + [90] = 90, [91] = 91, [92] = 92, [93] = 93, - [94] = 89, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, - [98] = 98, - [99] = 99, + [98] = 88, + [99] = 93, [100] = 100, [101] = 101, - [102] = 93, + [102] = 96, [103] = 103, [104] = 104, [105] = 105, - [106] = 88, - [107] = 107, + [106] = 106, + [107] = 101, [108] = 108, [109] = 109, - [110] = 100, + [110] = 97, [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 112, + [112] = 90, + [113] = 100, + [114] = 109, + [115] = 91, [116] = 116, - [117] = 117, - [118] = 103, - [119] = 101, - [120] = 120, - [121] = 117, - [122] = 107, - [123] = 97, - [124] = 105, - [125] = 125, - [126] = 114, - [127] = 109, - [128] = 108, - [129] = 129, - [130] = 96, - [131] = 113, - [132] = 99, - [133] = 111, - [134] = 91, - [135] = 95, - [136] = 104, + [117] = 92, + [118] = 118, + [119] = 119, + [120] = 106, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 122, + [125] = 94, + [126] = 118, + [127] = 104, + [128] = 128, + [129] = 105, + [130] = 95, + [131] = 123, + [132] = 103, + [133] = 121, + [134] = 134, + [135] = 108, + [136] = 89, [137] = 137, - [138] = 138, - [139] = 138, - [140] = 138, - [141] = 138, + [138] = 137, + [139] = 137, + [140] = 140, + [141] = 140, [142] = 137, [143] = 137, - [144] = 138, - [145] = 138, - [146] = 137, - [147] = 138, + [144] = 140, + [145] = 137, + [146] = 140, + [147] = 140, [148] = 137, - [149] = 137, - [150] = 137, + [149] = 140, + [150] = 140, [151] = 137, - [152] = 138, + [152] = 140, [153] = 153, [154] = 154, [155] = 154, @@ -2928,323 +2928,323 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [160] = 154, [161] = 156, [162] = 156, - [163] = 157, - [164] = 164, - [165] = 157, - [166] = 166, - [167] = 158, - [168] = 157, - [169] = 156, - [170] = 154, - [171] = 156, + [163] = 156, + [164] = 157, + [165] = 158, + [166] = 157, + [167] = 157, + [168] = 168, + [169] = 169, + [170] = 157, + [171] = 158, [172] = 156, - [173] = 158, - [174] = 164, - [175] = 166, - [176] = 157, - [177] = 158, - [178] = 178, - [179] = 157, - [180] = 158, - [181] = 157, - [182] = 164, - [183] = 154, + [173] = 157, + [174] = 158, + [175] = 154, + [176] = 176, + [177] = 156, + [178] = 154, + [179] = 168, + [180] = 168, + [181] = 169, + [182] = 158, + [183] = 157, [184] = 158, [185] = 158, [186] = 158, [187] = 156, - [188] = 178, + [188] = 176, [189] = 189, [190] = 190, - [191] = 190, - [192] = 189, - [193] = 193, - [194] = 193, + [191] = 189, + [192] = 192, + [193] = 190, + [194] = 194, [195] = 189, - [196] = 190, + [196] = 192, [197] = 190, [198] = 198, - [199] = 189, - [200] = 200, - [201] = 201, - [202] = 193, - [203] = 190, - [204] = 189, + [199] = 199, + [200] = 189, + [201] = 189, + [202] = 192, + [203] = 189, + [204] = 192, [205] = 189, - [206] = 189, - [207] = 193, - [208] = 189, - [209] = 189, - [210] = 193, - [211] = 190, - [212] = 198, - [213] = 189, - [214] = 193, - [215] = 190, - [216] = 190, - [217] = 193, - [218] = 189, - [219] = 193, - [220] = 193, - [221] = 221, + [206] = 192, + [207] = 190, + [208] = 190, + [209] = 209, + [210] = 209, + [211] = 189, + [212] = 192, + [213] = 190, + [214] = 190, + [215] = 192, + [216] = 192, + [217] = 189, + [218] = 192, + [219] = 192, + [220] = 192, + [221] = 190, [222] = 222, [223] = 223, [224] = 224, - [225] = 224, - [226] = 226, + [225] = 225, + [226] = 225, [227] = 224, - [228] = 228, - [229] = 226, - [230] = 224, - [231] = 226, - [232] = 226, - [233] = 228, + [228] = 225, + [229] = 225, + [230] = 230, + [231] = 224, + [232] = 224, + [233] = 230, [234] = 234, [235] = 235, [236] = 236, - [237] = 234, - [238] = 234, + [237] = 237, + [238] = 238, [239] = 239, [240] = 240, - [241] = 240, + [241] = 241, [242] = 242, - [243] = 235, - [244] = 235, - [245] = 235, + [243] = 243, + [244] = 240, + [245] = 243, [246] = 246, [247] = 247, - [248] = 223, - [249] = 235, + [248] = 248, + [249] = 240, [250] = 250, - [251] = 251, - [252] = 235, - [253] = 240, - [254] = 235, - [255] = 255, - [256] = 236, + [251] = 248, + [252] = 252, + [253] = 222, + [254] = 223, + [255] = 250, + [256] = 248, [257] = 240, - [258] = 258, - [259] = 242, - [260] = 236, - [261] = 250, - [262] = 262, - [263] = 263, - [264] = 246, - [265] = 222, - [266] = 236, - [267] = 267, - [268] = 239, - [269] = 269, - [270] = 235, - [271] = 234, + [258] = 243, + [259] = 259, + [260] = 248, + [261] = 248, + [262] = 248, + [263] = 248, + [264] = 239, + [265] = 239, + [266] = 239, + [267] = 248, + [268] = 236, + [269] = 237, + [270] = 242, + [271] = 243, [272] = 272, [273] = 273, - [274] = 272, + [274] = 274, [275] = 275, [276] = 276, - [277] = 277, - [278] = 276, - [279] = 279, - [280] = 275, - [281] = 281, - [282] = 273, - [283] = 276, - [284] = 277, - [285] = 279, - [286] = 276, - [287] = 273, - [288] = 272, - [289] = 277, - [290] = 272, - [291] = 273, - [292] = 279, + [277] = 273, + [278] = 278, + [279] = 275, + [280] = 280, + [281] = 274, + [282] = 272, + [283] = 272, + [284] = 278, + [285] = 276, + [286] = 273, + [287] = 275, + [288] = 280, + [289] = 274, + [290] = 278, + [291] = 272, + [292] = 278, [293] = 276, - [294] = 279, - [295] = 277, - [296] = 273, - [297] = 273, - [298] = 272, - [299] = 272, - [300] = 281, - [301] = 273, - [302] = 277, - [303] = 276, - [304] = 276, - [305] = 275, - [306] = 277, - [307] = 281, - [308] = 275, - [309] = 272, - [310] = 281, - [311] = 273, - [312] = 275, + [294] = 273, + [295] = 275, + [296] = 280, + [297] = 272, + [298] = 278, + [299] = 276, + [300] = 273, + [301] = 275, + [302] = 280, + [303] = 274, + [304] = 272, + [305] = 278, + [306] = 276, + [307] = 273, + [308] = 280, + [309] = 275, + [310] = 280, + [311] = 272, + [312] = 278, [313] = 276, - [314] = 279, - [315] = 277, - [316] = 275, - [317] = 281, - [318] = 277, - [319] = 275, - [320] = 279, - [321] = 281, - [322] = 275, - [323] = 281, - [324] = 272, - [325] = 281, + [314] = 273, + [315] = 275, + [316] = 280, + [317] = 272, + [318] = 278, + [319] = 276, + [320] = 273, + [321] = 275, + [322] = 280, + [323] = 274, + [324] = 276, + [325] = 274, [326] = 326, - [327] = 326, + [327] = 327, [328] = 328, [329] = 329, - [330] = 178, + [330] = 327, [331] = 331, [332] = 332, - [333] = 331, - [334] = 329, - [335] = 335, - [336] = 331, - [337] = 332, - [338] = 335, - [339] = 339, - [340] = 326, - [341] = 339, - [342] = 335, - [343] = 332, - [344] = 344, - [345] = 345, - [346] = 339, - [347] = 329, + [333] = 332, + [334] = 334, + [335] = 326, + [336] = 329, + [337] = 329, + [338] = 332, + [339] = 326, + [340] = 334, + [341] = 341, + [342] = 342, + [343] = 327, + [344] = 176, + [345] = 334, + [346] = 341, + [347] = 341, [348] = 348, - [349] = 255, + [349] = 349, [350] = 350, - [351] = 351, - [352] = 350, - [353] = 351, - [354] = 350, - [355] = 351, + [351] = 350, + [352] = 352, + [353] = 352, + [354] = 252, + [355] = 352, [356] = 348, - [357] = 255, - [358] = 350, - [359] = 351, - [360] = 350, + [357] = 350, + [358] = 352, + [359] = 352, + [360] = 252, [361] = 350, - [362] = 362, - [363] = 350, - [364] = 348, - [365] = 351, - [366] = 351, - [367] = 351, + [362] = 352, + [363] = 252, + [364] = 350, + [365] = 350, + [366] = 352, + [367] = 350, [368] = 350, - [369] = 255, - [370] = 351, + [369] = 348, + [370] = 352, [371] = 371, - [372] = 371, + [372] = 372, [373] = 373, - [374] = 374, - [375] = 374, - [376] = 373, + [374] = 373, + [375] = 373, + [376] = 376, [377] = 371, - [378] = 328, - [379] = 374, - [380] = 373, + [378] = 376, + [379] = 371, + [380] = 328, [381] = 381, - [382] = 382, - [383] = 344, - [384] = 374, - [385] = 156, - [386] = 374, - [387] = 373, - [388] = 374, - [389] = 374, - [390] = 371, - [391] = 371, - [392] = 392, - [393] = 374, + [382] = 376, + [383] = 342, + [384] = 373, + [385] = 376, + [386] = 371, + [387] = 371, + [388] = 371, + [389] = 156, + [390] = 373, + [391] = 373, + [392] = 373, + [393] = 376, [394] = 371, [395] = 373, - [396] = 371, - [397] = 374, - [398] = 398, - [399] = 374, - [400] = 373, + [396] = 376, + [397] = 371, + [398] = 373, + [399] = 376, + [400] = 371, [401] = 401, - [402] = 373, - [403] = 371, - [404] = 371, - [405] = 371, - [406] = 373, - [407] = 373, - [408] = 373, + [402] = 376, + [403] = 403, + [404] = 404, + [405] = 373, + [406] = 376, + [407] = 371, + [408] = 376, [409] = 409, - [410] = 409, + [410] = 410, [411] = 411, [412] = 412, - [413] = 413, - [414] = 409, + [413] = 328, + [414] = 414, [415] = 415, [416] = 416, - [417] = 417, + [417] = 156, [418] = 418, - [419] = 416, - [420] = 344, - [421] = 409, - [422] = 422, - [423] = 423, + [419] = 419, + [420] = 418, + [421] = 421, + [422] = 176, + [423] = 176, [424] = 424, - [425] = 401, - [426] = 426, - [427] = 423, - [428] = 156, - [429] = 178, - [430] = 418, - [431] = 178, - [432] = 415, - [433] = 422, - [434] = 409, - [435] = 435, - [436] = 409, - [437] = 437, + [425] = 425, + [426] = 421, + [427] = 328, + [428] = 428, + [429] = 409, + [430] = 411, + [431] = 431, + [432] = 342, + [433] = 433, + [434] = 434, + [435] = 433, + [436] = 436, + [437] = 411, [438] = 438, - [439] = 409, - [440] = 418, + [439] = 404, + [440] = 409, [441] = 441, - [442] = 442, - [443] = 412, - [444] = 328, - [445] = 412, - [446] = 328, - [447] = 447, + [442] = 342, + [443] = 409, + [444] = 444, + [445] = 409, + [446] = 176, + [447] = 409, [448] = 409, - [449] = 449, + [449] = 409, [450] = 409, - [451] = 344, - [452] = 409, - [453] = 415, - [454] = 454, - [455] = 411, - [456] = 456, - [457] = 457, - [458] = 423, - [459] = 422, - [460] = 178, + [451] = 409, + [452] = 433, + [453] = 441, + [454] = 431, + [455] = 416, + [456] = 441, + [457] = 418, + [458] = 421, + [459] = 459, + [460] = 460, [461] = 461, [462] = 462, [463] = 463, - [464] = 461, - [465] = 463, - [466] = 466, - [467] = 467, + [464] = 464, + [465] = 342, + [466] = 328, + [467] = 463, [468] = 468, [469] = 469, - [470] = 466, - [471] = 462, - [472] = 467, - [473] = 473, - [474] = 474, - [475] = 474, - [476] = 344, + [470] = 470, + [471] = 471, + [472] = 464, + [473] = 470, + [474] = 462, + [475] = 475, + [476] = 461, [477] = 468, - [478] = 473, - [479] = 328, + [478] = 475, + [479] = 469, [480] = 480, [481] = 481, [482] = 482, @@ -3254,159 +3254,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [486] = 486, [487] = 487, [488] = 488, - [489] = 486, - [490] = 480, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 484, - [498] = 483, - [499] = 483, + [489] = 480, + [490] = 488, + [491] = 481, + [492] = 482, + [493] = 483, + [494] = 484, + [495] = 487, + [496] = 480, + [497] = 497, + [498] = 488, + [499] = 481, [500] = 482, - [501] = 482, - [502] = 493, - [503] = 494, - [504] = 487, - [505] = 505, + [501] = 483, + [502] = 484, + [503] = 487, + [504] = 480, + [505] = 488, [506] = 506, - [507] = 506, - [508] = 486, - [509] = 487, + [507] = 488, + [508] = 481, + [509] = 482, [510] = 483, - [511] = 482, - [512] = 485, - [513] = 487, + [511] = 484, + [512] = 487, + [513] = 480, [514] = 514, - [515] = 506, - [516] = 482, - [517] = 493, - [518] = 506, - [519] = 483, - [520] = 494, - [521] = 486, - [522] = 506, - [523] = 487, - [524] = 514, + [515] = 488, + [516] = 481, + [517] = 482, + [518] = 483, + [519] = 484, + [520] = 487, + [521] = 480, + [522] = 481, + [523] = 482, + [524] = 524, [525] = 525, [526] = 526, [527] = 527, - [528] = 494, - [529] = 494, - [530] = 485, - [531] = 484, - [532] = 486, - [533] = 495, - [534] = 485, + [528] = 525, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 483, + [534] = 534, [535] = 535, - [536] = 493, - [537] = 493, - [538] = 506, - [539] = 487, - [540] = 482, - [541] = 485, - [542] = 483, - [543] = 486, - [544] = 494, - [545] = 506, - [546] = 493, - [547] = 547, - [548] = 487, - [549] = 483, - [550] = 547, - [551] = 482, - [552] = 482, - [553] = 483, - [554] = 486, - [555] = 485, + [536] = 536, + [537] = 537, + [538] = 484, + [539] = 539, + [540] = 529, + [541] = 497, + [542] = 530, + [543] = 487, + [544] = 514, + [545] = 527, + [546] = 546, + [547] = 497, + [548] = 532, + [549] = 488, + [550] = 525, + [551] = 526, + [552] = 546, + [553] = 532, + [554] = 554, + [555] = 487, [556] = 556, - [557] = 494, - [558] = 506, - [559] = 487, - [560] = 493, - [561] = 495, - [562] = 480, + [557] = 557, + [558] = 546, + [559] = 497, + [560] = 525, + [561] = 526, + [562] = 562, [563] = 563, - [564] = 480, - [565] = 565, - [566] = 485, - [567] = 493, + [564] = 481, + [565] = 532, + [566] = 566, + [567] = 567, [568] = 568, - [569] = 569, - [570] = 568, - [571] = 571, - [572] = 568, - [573] = 485, - [574] = 568, - [575] = 480, - [576] = 494, - [577] = 568, - [578] = 481, - [579] = 579, - [580] = 580, - [581] = 580, - [582] = 582, - [583] = 525, - [584] = 584, - [585] = 571, - [586] = 556, - [587] = 565, - [588] = 480, - [589] = 495, - [590] = 563, - [591] = 526, + [569] = 482, + [570] = 570, + [571] = 525, + [572] = 526, + [573] = 483, + [574] = 484, + [575] = 488, + [576] = 546, + [577] = 481, + [578] = 482, + [579] = 483, + [580] = 484, + [581] = 525, + [582] = 526, + [583] = 497, + [584] = 480, + [585] = 585, + [586] = 586, + [587] = 487, + [588] = 525, + [589] = 526, + [590] = 562, + [591] = 563, [592] = 480, - [593] = 593, - [594] = 514, - [595] = 568, - [596] = 484, - [597] = 514, - [598] = 593, - [599] = 484, - [600] = 492, - [601] = 601, - [602] = 602, - [603] = 584, - [604] = 604, - [605] = 486, - [606] = 480, - [607] = 607, - [608] = 601, + [593] = 525, + [594] = 485, + [595] = 486, + [596] = 570, + [597] = 570, + [598] = 570, + [599] = 570, + [600] = 570, + [601] = 570, + [602] = 570, + [603] = 568, + [604] = 535, + [605] = 557, + [606] = 606, + [607] = 536, + [608] = 606, [609] = 609, [610] = 610, - [611] = 610, + [611] = 611, [612] = 612, - [613] = 613, - [614] = 614, + [613] = 612, + [614] = 610, [615] = 615, [616] = 616, [617] = 617, - [618] = 617, - [619] = 615, - [620] = 616, - [621] = 612, - [622] = 613, + [618] = 615, + [619] = 616, + [620] = 611, + [621] = 617, + [622] = 622, [623] = 623, - [624] = 624, + [624] = 622, [625] = 623, - [626] = 614, + [626] = 626, [627] = 627, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 632, - [633] = 633, - [634] = 630, - [635] = 635, - [636] = 632, - [637] = 628, - [638] = 633, + [632] = 630, + [633] = 631, + [634] = 634, + [635] = 634, + [636] = 636, + [637] = 637, + [638] = 638, [639] = 639, - [640] = 640, - [641] = 635, + [640] = 629, + [641] = 628, [642] = 642, [643] = 643, [644] = 644, @@ -3416,55 +3416,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [648] = 648, [649] = 649, [650] = 648, - [651] = 223, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 648, - [657] = 657, - [658] = 658, - [659] = 658, - [660] = 660, - [661] = 222, - [662] = 658, - [663] = 660, - [664] = 652, - [665] = 657, + [656] = 223, + [657] = 649, + [658] = 652, + [659] = 653, + [660] = 655, + [661] = 652, + [662] = 653, + [663] = 654, + [664] = 654, + [665] = 665, [666] = 666, - [667] = 667, - [668] = 660, - [669] = 648, - [670] = 660, - [671] = 660, - [672] = 657, - [673] = 649, - [674] = 674, - [675] = 652, - [676] = 676, - [677] = 652, - [678] = 666, - [679] = 657, - [680] = 652, - [681] = 648, - [682] = 667, - [683] = 652, - [684] = 658, - [685] = 685, - [686] = 685, - [687] = 687, - [688] = 657, - [689] = 687, - [690] = 674, - [691] = 653, - [692] = 676, - [693] = 658, - [694] = 654, - [695] = 660, - [696] = 657, - [697] = 655, - [698] = 648, - [699] = 658, + [667] = 649, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 655, + [672] = 672, + [673] = 655, + [674] = 651, + [675] = 675, + [676] = 675, + [677] = 677, + [678] = 652, + [679] = 653, + [680] = 654, + [681] = 665, + [682] = 666, + [683] = 649, + [684] = 649, + [685] = 668, + [686] = 670, + [687] = 672, + [688] = 677, + [689] = 649, + [690] = 222, + [691] = 655, + [692] = 653, + [693] = 652, + [694] = 653, + [695] = 654, + [696] = 652, + [697] = 654, + [698] = 669, + [699] = 655, [700] = 700, [701] = 701, [702] = 702, @@ -3475,24 +3475,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [707] = 707, [708] = 708, [709] = 709, - [710] = 710, - [711] = 702, - [712] = 709, - [713] = 708, - [714] = 706, - [715] = 704, - [716] = 700, - [717] = 703, - [718] = 705, - [719] = 701, - [720] = 707, - [721] = 710, + [710] = 709, + [711] = 708, + [712] = 712, + [713] = 700, + [714] = 707, + [715] = 712, + [716] = 701, + [717] = 706, + [718] = 704, + [719] = 703, + [720] = 705, + [721] = 702, [722] = 722, - [723] = 722, - [724] = 724, - [725] = 724, - [726] = 726, - [727] = 726, + [723] = 723, + [724] = 722, + [725] = 725, + [726] = 725, + [727] = 723, [728] = 728, [729] = 729, [730] = 730, @@ -3513,110 +3513,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [745] = 745, [746] = 746, [747] = 747, - [748] = 747, - [749] = 746, - [750] = 222, + [748] = 748, + [749] = 749, + [750] = 750, [751] = 751, [752] = 752, [753] = 753, - [754] = 745, - [755] = 729, + [754] = 754, + [755] = 755, [756] = 756, [757] = 757, - [758] = 744, + [758] = 758, [759] = 759, [760] = 760, [761] = 761, [762] = 762, [763] = 763, [764] = 764, - [765] = 739, + [765] = 765, [766] = 766, [767] = 767, [768] = 768, - [769] = 769, - [770] = 770, + [769] = 763, + [770] = 764, [771] = 771, - [772] = 772, - [773] = 773, - [774] = 756, + [772] = 728, + [773] = 761, + [774] = 774, [775] = 775, - [776] = 760, + [776] = 776, [777] = 777, - [778] = 778, - [779] = 742, + [778] = 731, + [779] = 779, [780] = 780, - [781] = 741, - [782] = 770, - [783] = 783, - [784] = 762, - [785] = 761, - [786] = 223, - [787] = 787, - [788] = 757, - [789] = 764, - [790] = 753, + [781] = 781, + [782] = 736, + [783] = 739, + [784] = 741, + [785] = 785, + [786] = 786, + [787] = 765, + [788] = 766, + [789] = 752, + [790] = 762, [791] = 791, - [792] = 751, + [792] = 754, [793] = 793, - [794] = 794, - [795] = 777, - [796] = 773, - [797] = 772, - [798] = 771, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 775, - [803] = 783, - [804] = 767, + [794] = 742, + [795] = 795, + [796] = 780, + [797] = 797, + [798] = 223, + [799] = 767, + [800] = 775, + [801] = 774, + [802] = 776, + [803] = 785, + [804] = 804, [805] = 805, - [806] = 793, - [807] = 799, - [808] = 743, - [809] = 800, - [810] = 805, - [811] = 801, - [812] = 812, + [806] = 791, + [807] = 793, + [808] = 786, + [809] = 809, + [810] = 810, + [811] = 804, + [812] = 771, [813] = 813, - [814] = 733, - [815] = 815, - [816] = 816, - [817] = 740, - [818] = 738, - [819] = 763, - [820] = 812, - [821] = 734, - [822] = 731, - [823] = 813, - [824] = 752, - [825] = 825, - [826] = 737, - [827] = 815, + [814] = 730, + [815] = 757, + [816] = 805, + [817] = 795, + [818] = 729, + [819] = 737, + [820] = 755, + [821] = 779, + [822] = 809, + [823] = 810, + [824] = 797, + [825] = 732, + [826] = 733, + [827] = 734, [828] = 735, - [829] = 736, - [830] = 730, - [831] = 831, - [832] = 832, - [833] = 831, - [834] = 832, - [835] = 816, - [836] = 825, - [837] = 759, - [838] = 732, - [839] = 768, - [840] = 778, - [841] = 801, - [842] = 780, - [843] = 728, - [844] = 844, - [845] = 775, - [846] = 844, - [847] = 766, - [848] = 787, - [849] = 791, - [850] = 794, - [851] = 769, + [829] = 738, + [830] = 740, + [831] = 744, + [832] = 745, + [833] = 746, + [834] = 747, + [835] = 748, + [836] = 749, + [837] = 750, + [838] = 751, + [839] = 753, + [840] = 813, + [841] = 756, + [842] = 777, + [843] = 758, + [844] = 781, + [845] = 768, + [846] = 759, + [847] = 760, + [848] = 781, + [849] = 768, + [850] = 743, + [851] = 222, [852] = 852, [853] = 852, [854] = 852, @@ -3626,630 +3626,630 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [858] = 858, [859] = 858, [860] = 860, - [861] = 861, - [862] = 861, - [863] = 861, - [864] = 861, - [865] = 861, - [866] = 861, - [867] = 861, - [868] = 861, + [861] = 860, + [862] = 860, + [863] = 860, + [864] = 860, + [865] = 865, + [866] = 860, + [867] = 860, + [868] = 860, [869] = 869, [870] = 870, [871] = 871, - [872] = 869, - [873] = 870, - [874] = 869, + [872] = 872, + [873] = 869, + [874] = 874, [875] = 875, - [876] = 870, - [877] = 877, - [878] = 878, + [876] = 876, + [877] = 875, + [878] = 876, [879] = 879, [880] = 880, - [881] = 881, - [882] = 882, - [883] = 875, + [881] = 870, + [882] = 871, + [883] = 883, [884] = 871, - [885] = 869, - [886] = 869, - [887] = 869, - [888] = 871, + [885] = 880, + [886] = 886, + [887] = 887, + [888] = 872, [889] = 869, - [890] = 869, - [891] = 891, - [892] = 869, + [890] = 874, + [891] = 876, + [892] = 880, [893] = 875, [894] = 870, - [895] = 869, - [896] = 875, - [897] = 870, - [898] = 877, - [899] = 878, - [900] = 879, - [901] = 880, - [902] = 881, - [903] = 882, - [904] = 860, - [905] = 877, - [906] = 878, - [907] = 879, - [908] = 871, - [909] = 882, - [910] = 880, - [911] = 881, - [912] = 882, - [913] = 871, - [914] = 879, - [915] = 881, - [916] = 880, + [895] = 879, + [896] = 871, + [897] = 887, + [898] = 869, + [899] = 872, + [900] = 887, + [901] = 869, + [902] = 880, + [903] = 875, + [904] = 874, + [905] = 879, + [906] = 870, + [907] = 874, + [908] = 875, + [909] = 865, + [910] = 879, + [911] = 872, + [912] = 865, + [913] = 886, + [914] = 871, + [915] = 875, + [916] = 883, [917] = 879, - [918] = 878, - [919] = 878, - [920] = 869, - [921] = 877, - [922] = 870, - [923] = 875, - [924] = 875, - [925] = 891, - [926] = 880, - [927] = 871, - [928] = 882, - [929] = 881, - [930] = 878, - [931] = 881, - [932] = 882, - [933] = 879, - [934] = 881, - [935] = 880, - [936] = 880, - [937] = 881, - [938] = 879, - [939] = 878, - [940] = 877, - [941] = 870, - [942] = 882, - [943] = 875, - [944] = 870, - [945] = 880, - [946] = 860, - [947] = 891, - [948] = 877, - [949] = 869, + [918] = 870, + [919] = 887, + [920] = 875, + [921] = 887, + [922] = 871, + [923] = 872, + [924] = 874, + [925] = 871, + [926] = 875, + [927] = 876, + [928] = 869, + [929] = 875, + [930] = 874, + [931] = 887, + [932] = 872, + [933] = 880, + [934] = 879, + [935] = 876, + [936] = 879, + [937] = 880, + [938] = 887, + [939] = 872, + [940] = 869, + [941] = 869, + [942] = 874, + [943] = 883, + [944] = 876, + [945] = 875, + [946] = 880, + [947] = 870, + [948] = 879, + [949] = 876, [950] = 871, - [951] = 891, - [952] = 952, - [953] = 869, - [954] = 952, - [955] = 877, - [956] = 878, - [957] = 871, - [958] = 891, - [959] = 879, + [951] = 874, + [952] = 876, + [953] = 870, + [954] = 883, + [955] = 880, + [956] = 870, + [957] = 872, + [958] = 875, + [959] = 875, [960] = 875, - [961] = 877, - [962] = 882, - [963] = 860, - [964] = 860, - [965] = 860, - [966] = 966, - [967] = 967, - [968] = 860, + [961] = 887, + [962] = 883, + [963] = 865, + [964] = 964, + [965] = 865, + [966] = 865, + [967] = 865, + [968] = 968, [969] = 969, - [970] = 860, - [971] = 971, - [972] = 972, - [973] = 966, + [970] = 865, + [971] = 969, + [972] = 968, + [973] = 973, [974] = 974, - [975] = 975, - [976] = 976, + [975] = 969, + [976] = 865, [977] = 977, - [978] = 978, - [979] = 860, - [980] = 969, - [981] = 967, - [982] = 967, - [983] = 966, - [984] = 984, + [978] = 964, + [979] = 968, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 964, [985] = 985, - [986] = 969, + [986] = 986, [987] = 987, - [988] = 966, - [989] = 987, - [990] = 977, - [991] = 860, - [992] = 646, - [993] = 978, - [994] = 644, - [995] = 966, - [996] = 984, - [997] = 974, - [998] = 975, - [999] = 627, - [1000] = 976, - [1001] = 985, - [1002] = 639, - [1003] = 967, - [1004] = 1004, - [1005] = 643, - [1006] = 1006, - [1007] = 969, - [1008] = 1008, + [988] = 981, + [989] = 983, + [990] = 985, + [991] = 865, + [992] = 637, + [993] = 964, + [994] = 985, + [995] = 964, + [996] = 969, + [997] = 997, + [998] = 977, + [999] = 973, + [1000] = 982, + [1001] = 964, + [1002] = 987, + [1003] = 986, + [1004] = 968, + [1005] = 642, + [1006] = 968, + [1007] = 980, + [1008] = 865, [1009] = 1009, - [1010] = 640, - [1011] = 966, - [1012] = 969, - [1013] = 985, - [1014] = 976, - [1015] = 975, - [1016] = 974, - [1017] = 984, - [1018] = 972, - [1019] = 977, - [1020] = 978, - [1021] = 647, - [1022] = 967, - [1023] = 860, - [1024] = 969, - [1025] = 967, - [1026] = 966, + [1010] = 969, + [1011] = 987, + [1012] = 986, + [1013] = 980, + [1014] = 974, + [1015] = 969, + [1016] = 645, + [1017] = 983, + [1018] = 643, + [1019] = 627, + [1020] = 964, + [1021] = 973, + [1022] = 968, + [1023] = 1023, + [1024] = 982, + [1025] = 974, + [1026] = 981, [1027] = 1027, - [1028] = 860, - [1029] = 972, - [1030] = 987, - [1031] = 969, - [1032] = 971, - [1033] = 967, - [1034] = 971, - [1035] = 647, - [1036] = 987, - [1037] = 984, - [1038] = 974, - [1039] = 975, - [1040] = 1009, - [1041] = 1008, - [1042] = 1006, - [1043] = 976, - [1044] = 985, - [1045] = 645, - [1046] = 1046, - [1047] = 1047, - [1048] = 642, - [1049] = 612, - [1050] = 1004, - [1051] = 615, + [1028] = 969, + [1029] = 968, + [1030] = 865, + [1031] = 977, + [1032] = 647, + [1033] = 644, + [1034] = 1034, + [1035] = 1035, + [1036] = 986, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 612, + [1045] = 639, + [1046] = 646, + [1047] = 1034, + [1048] = 1023, + [1049] = 1009, + [1050] = 983, + [1051] = 981, [1052] = 1052, [1053] = 1053, - [1054] = 966, - [1055] = 1055, - [1056] = 1056, - [1057] = 640, - [1058] = 643, - [1059] = 1059, - [1060] = 1060, - [1061] = 639, - [1062] = 627, - [1063] = 1063, - [1064] = 1009, - [1065] = 644, - [1066] = 646, - [1067] = 1008, - [1068] = 1006, - [1069] = 967, - [1070] = 1070, - [1071] = 1071, - [1072] = 977, + [1054] = 1054, + [1055] = 627, + [1056] = 973, + [1057] = 974, + [1058] = 977, + [1059] = 980, + [1060] = 985, + [1061] = 982, + [1062] = 987, + [1063] = 986, + [1064] = 644, + [1065] = 637, + [1066] = 645, + [1067] = 647, + [1068] = 642, + [1069] = 643, + [1070] = 626, + [1071] = 638, + [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 978, - [1076] = 1027, - [1077] = 624, + [1075] = 983, + [1076] = 981, + [1077] = 1077, [1078] = 1078, - [1079] = 985, - [1080] = 976, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 972, - [1085] = 1085, - [1086] = 975, - [1087] = 974, - [1088] = 978, - [1089] = 984, - [1090] = 977, - [1091] = 972, - [1092] = 984, - [1093] = 974, - [1094] = 975, - [1095] = 971, - [1096] = 971, - [1097] = 1097, - [1098] = 976, - [1099] = 972, - [1100] = 1100, - [1101] = 1101, - [1102] = 977, - [1103] = 978, - [1104] = 1104, - [1105] = 1027, - [1106] = 629, - [1107] = 987, - [1108] = 985, - [1109] = 976, - [1110] = 1100, - [1111] = 971, - [1112] = 975, - [1113] = 974, - [1114] = 984, - [1115] = 972, - [1116] = 977, - [1117] = 978, + [1079] = 1079, + [1080] = 973, + [1081] = 974, + [1082] = 977, + [1083] = 980, + [1084] = 985, + [1085] = 982, + [1086] = 987, + [1087] = 986, + [1088] = 997, + [1089] = 1089, + [1090] = 1027, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 997, + [1095] = 983, + [1096] = 981, + [1097] = 1027, + [1098] = 973, + [1099] = 974, + [1100] = 977, + [1101] = 980, + [1102] = 985, + [1103] = 982, + [1104] = 987, + [1105] = 986, + [1106] = 1106, + [1107] = 969, + [1108] = 1034, + [1109] = 1023, + [1110] = 1009, + [1111] = 964, + [1112] = 968, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, [1118] = 1118, - [1119] = 969, - [1120] = 1120, - [1121] = 987, - [1122] = 1122, + [1119] = 1119, + [1120] = 1073, + [1121] = 983, + [1122] = 981, [1123] = 1123, - [1124] = 985, - [1125] = 987, - [1126] = 971, - [1127] = 1004, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1056, - [1136] = 1071, - [1137] = 1104, - [1138] = 624, - [1139] = 1120, - [1140] = 1004, - [1141] = 1097, - [1142] = 1046, - [1143] = 1123, - [1144] = 615, - [1145] = 612, - [1146] = 640, - [1147] = 1053, - [1148] = 1070, - [1149] = 1134, - [1150] = 1006, - [1151] = 1009, - [1152] = 1008, - [1153] = 1006, - [1154] = 1008, - [1155] = 1009, - [1156] = 647, - [1157] = 646, - [1158] = 644, - [1159] = 1132, - [1160] = 1131, - [1161] = 1073, - [1162] = 1053, - [1163] = 1074, - [1164] = 1082, - [1165] = 1085, - [1166] = 1101, - [1167] = 1081, - [1168] = 1122, - [1169] = 1133, - [1170] = 1083, - [1171] = 1130, - [1172] = 1129, - [1173] = 632, - [1174] = 643, - [1175] = 639, - [1176] = 627, - [1177] = 644, - [1178] = 646, - [1179] = 635, - [1180] = 1047, - [1181] = 1004, - [1182] = 629, - [1183] = 1118, - [1184] = 1133, - [1185] = 627, - [1186] = 639, - [1187] = 643, - [1188] = 1004, - [1189] = 630, - [1190] = 971, - [1191] = 1122, - [1192] = 1081, - [1193] = 642, - [1194] = 624, - [1195] = 987, - [1196] = 1063, - [1197] = 645, - [1198] = 1006, - [1199] = 1055, - [1200] = 1009, - [1201] = 1008, - [1202] = 1004, - [1203] = 1009, - [1204] = 1008, - [1205] = 1006, - [1206] = 629, - [1207] = 1027, - [1208] = 1130, - [1209] = 1071, - [1210] = 1097, - [1211] = 633, - [1212] = 1118, - [1213] = 1055, - [1214] = 1104, - [1215] = 1120, - [1216] = 1056, - [1217] = 1123, - [1218] = 1063, - [1219] = 1047, - [1220] = 1100, - [1221] = 640, - [1222] = 1046, - [1223] = 647, - [1224] = 1070, - [1225] = 1134, - [1226] = 1060, - [1227] = 1132, - [1228] = 1059, - [1229] = 978, - [1230] = 977, - [1231] = 972, - [1232] = 984, - [1233] = 1129, - [1234] = 974, - [1235] = 975, - [1236] = 976, - [1237] = 985, - [1238] = 1027, - [1239] = 1083, - [1240] = 642, - [1241] = 645, - [1242] = 1100, - [1243] = 629, - [1244] = 1101, - [1245] = 1131, - [1246] = 1085, - [1247] = 612, - [1248] = 615, - [1249] = 1082, - [1250] = 1073, - [1251] = 1060, - [1252] = 1074, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 973, + [1128] = 974, + [1129] = 977, + [1130] = 980, + [1131] = 985, + [1132] = 982, + [1133] = 987, + [1134] = 617, + [1135] = 1078, + [1136] = 1126, + [1137] = 626, + [1138] = 1035, + [1139] = 628, + [1140] = 629, + [1141] = 997, + [1142] = 631, + [1143] = 639, + [1144] = 646, + [1145] = 1034, + [1146] = 1023, + [1147] = 1009, + [1148] = 634, + [1149] = 1117, + [1150] = 1118, + [1151] = 1123, + [1152] = 1043, + [1153] = 1027, + [1154] = 1072, + [1155] = 1079, + [1156] = 1092, + [1157] = 1093, + [1158] = 1106, + [1159] = 1113, + [1160] = 1124, + [1161] = 1037, + [1162] = 1038, + [1163] = 1039, + [1164] = 1040, + [1165] = 1041, + [1166] = 1042, + [1167] = 1074, + [1168] = 1077, + [1169] = 1078, + [1170] = 1089, + [1171] = 1091, + [1172] = 1035, + [1173] = 638, + [1174] = 1034, + [1175] = 1023, + [1176] = 1009, + [1177] = 1117, + [1178] = 1118, + [1179] = 1123, + [1180] = 997, + [1181] = 1043, + [1182] = 1072, + [1183] = 1079, + [1184] = 1092, + [1185] = 1093, + [1186] = 1106, + [1187] = 612, + [1188] = 1113, + [1189] = 1124, + [1190] = 1037, + [1191] = 1038, + [1192] = 1039, + [1193] = 1040, + [1194] = 1041, + [1195] = 1042, + [1196] = 1074, + [1197] = 1077, + [1198] = 644, + [1199] = 1125, + [1200] = 645, + [1201] = 1089, + [1202] = 1091, + [1203] = 1119, + [1204] = 627, + [1205] = 1052, + [1206] = 644, + [1207] = 637, + [1208] = 645, + [1209] = 647, + [1210] = 642, + [1211] = 643, + [1212] = 997, + [1213] = 638, + [1214] = 1119, + [1215] = 642, + [1216] = 1073, + [1217] = 983, + [1218] = 981, + [1219] = 1073, + [1220] = 1027, + [1221] = 1125, + [1222] = 1126, + [1223] = 973, + [1224] = 974, + [1225] = 977, + [1226] = 980, + [1227] = 985, + [1228] = 982, + [1229] = 987, + [1230] = 986, + [1231] = 639, + [1232] = 646, + [1233] = 638, + [1234] = 1053, + [1235] = 1054, + [1236] = 643, + [1237] = 626, + [1238] = 997, + [1239] = 612, + [1240] = 617, + [1241] = 1034, + [1242] = 1023, + [1243] = 1009, + [1244] = 1034, + [1245] = 1027, + [1246] = 1052, + [1247] = 1053, + [1248] = 1054, + [1249] = 1023, + [1250] = 1009, + [1251] = 627, + [1252] = 647, [1253] = 1027, - [1254] = 1059, - [1255] = 1027, - [1256] = 1134, - [1257] = 1101, - [1258] = 1063, - [1259] = 631, - [1260] = 1132, - [1261] = 1059, - [1262] = 1047, - [1263] = 1060, - [1264] = 1118, - [1265] = 1129, - [1266] = 1131, - [1267] = 629, - [1268] = 1123, - [1269] = 1118, - [1270] = 1070, - [1271] = 1083, - [1272] = 1120, - [1273] = 1101, - [1274] = 1104, - [1275] = 647, - [1276] = 1073, - [1277] = 1128, - [1278] = 1078, - [1279] = 1052, - [1280] = 1085, - [1281] = 1082, - [1282] = 1074, - [1283] = 629, - [1284] = 1053, - [1285] = 640, - [1286] = 1097, - [1287] = 643, - [1288] = 639, - [1289] = 627, - [1290] = 644, - [1291] = 646, - [1292] = 644, - [1293] = 1055, - [1294] = 1053, - [1295] = 1071, - [1296] = 1097, - [1297] = 646, - [1298] = 633, - [1299] = 642, - [1300] = 1060, - [1301] = 629, - [1302] = 630, - [1303] = 645, - [1304] = 629, - [1305] = 635, - [1306] = 632, - [1307] = 1118, - [1308] = 627, - [1309] = 639, - [1310] = 643, - [1311] = 1104, - [1312] = 1120, - [1313] = 1073, - [1314] = 1123, - [1315] = 1027, - [1316] = 1074, - [1317] = 629, - [1318] = 645, - [1319] = 642, - [1320] = 1131, - [1321] = 1132, - [1322] = 1134, - [1323] = 1070, - [1324] = 1071, - [1325] = 1004, - [1326] = 1326, - [1327] = 1046, - [1328] = 1047, - [1329] = 640, - [1330] = 646, - [1331] = 644, - [1332] = 1047, - [1333] = 1046, - [1334] = 1123, - [1335] = 627, - [1336] = 1120, - [1337] = 1104, - [1338] = 639, - [1339] = 1130, - [1340] = 643, - [1341] = 1059, - [1342] = 1342, - [1343] = 1070, - [1344] = 640, - [1345] = 1134, - [1346] = 1132, - [1347] = 1131, - [1348] = 1082, - [1349] = 1085, - [1350] = 1097, - [1351] = 1071, - [1352] = 1101, - [1353] = 1083, - [1354] = 1073, - [1355] = 1129, - [1356] = 1053, - [1357] = 647, - [1358] = 1060, - [1359] = 1059, - [1360] = 647, - [1361] = 1063, - [1362] = 1056, - [1363] = 1055, - [1364] = 633, - [1365] = 1074, - [1366] = 1082, - [1367] = 1085, - [1368] = 629, - [1369] = 645, - [1370] = 642, - [1371] = 631, - [1372] = 630, - [1373] = 1059, - [1374] = 1060, - [1375] = 1101, - [1376] = 1083, - [1377] = 635, - [1378] = 632, - [1379] = 1129, - [1380] = 1130, - [1381] = 1130, - [1382] = 642, - [1383] = 1056, - [1384] = 645, - [1385] = 1071, - [1386] = 1097, - [1387] = 1006, - [1388] = 1104, - [1389] = 1120, - [1390] = 1123, - [1391] = 1047, - [1392] = 1008, - [1393] = 1046, - [1394] = 1070, - [1395] = 1134, - [1396] = 1009, - [1397] = 1132, - [1398] = 1055, - [1399] = 1056, - [1400] = 1063, - [1401] = 1056, - [1402] = 1055, - [1403] = 633, - [1404] = 1130, - [1405] = 1063, - [1406] = 1131, - [1407] = 1129, - [1408] = 1073, - [1409] = 632, - [1410] = 1083, - [1411] = 635, - [1412] = 1046, - [1413] = 1118, - [1414] = 1053, - [1415] = 630, - [1416] = 1085, - [1417] = 1074, - [1418] = 1082, - [1419] = 1134, - [1420] = 629, - [1421] = 1060, - [1422] = 1081, - [1423] = 1122, - [1424] = 1133, - [1425] = 1081, - [1426] = 631, - [1427] = 1122, - [1428] = 1133, - [1429] = 1074, - [1430] = 1082, - [1431] = 1070, - [1432] = 1085, - [1433] = 1101, - [1434] = 1083, - [1435] = 1053, - [1436] = 631, - [1437] = 1073, - [1438] = 1129, - [1439] = 1131, - [1440] = 1132, - [1441] = 1059, - [1442] = 1123, - [1443] = 639, - [1444] = 1047, - [1445] = 646, - [1446] = 644, - [1447] = 1118, - [1448] = 1130, - [1449] = 627, - [1450] = 1046, - [1451] = 643, - [1452] = 640, - [1453] = 1063, - [1454] = 1056, - [1455] = 647, - [1456] = 642, - [1457] = 1071, - [1458] = 645, - [1459] = 1097, - [1460] = 1104, - [1461] = 1055, - [1462] = 1120, - [1463] = 1133, - [1464] = 1122, - [1465] = 1081, - [1466] = 644, - [1467] = 632, - [1468] = 635, - [1469] = 630, - [1470] = 1326, - [1471] = 1342, - [1472] = 633, - [1473] = 647, - [1474] = 640, - [1475] = 643, - [1476] = 639, - [1477] = 627, - [1478] = 646, - [1479] = 642, - [1480] = 645, - [1481] = 629, + [1254] = 617, + [1255] = 637, + [1256] = 1123, + [1257] = 638, + [1258] = 1119, + [1259] = 1126, + [1260] = 1125, + [1261] = 636, + [1262] = 1092, + [1263] = 1093, + [1264] = 1106, + [1265] = 1126, + [1266] = 627, + [1267] = 1113, + [1268] = 1035, + [1269] = 1072, + [1270] = 1035, + [1271] = 638, + [1272] = 639, + [1273] = 646, + [1274] = 1034, + [1275] = 1023, + [1276] = 1009, + [1277] = 1117, + [1278] = 1118, + [1279] = 1125, + [1280] = 1123, + [1281] = 1124, + [1282] = 1043, + [1283] = 1037, + [1284] = 1072, + [1285] = 1079, + [1286] = 1092, + [1287] = 1093, + [1288] = 1106, + [1289] = 1126, + [1290] = 1113, + [1291] = 1038, + [1292] = 1039, + [1293] = 1040, + [1294] = 1041, + [1295] = 1042, + [1296] = 1089, + [1297] = 1074, + [1298] = 1077, + [1299] = 1124, + [1300] = 1037, + [1301] = 1038, + [1302] = 1039, + [1303] = 1040, + [1304] = 1041, + [1305] = 1042, + [1306] = 1092, + [1307] = 1074, + [1308] = 1077, + [1309] = 1078, + [1310] = 1093, + [1311] = 627, + [1312] = 1106, + [1313] = 1089, + [1314] = 1091, + [1315] = 1043, + [1316] = 1113, + [1317] = 1078, + [1318] = 1124, + [1319] = 1037, + [1320] = 1038, + [1321] = 1091, + [1322] = 1039, + [1323] = 1040, + [1324] = 644, + [1325] = 1041, + [1326] = 1042, + [1327] = 1089, + [1328] = 644, + [1329] = 637, + [1330] = 645, + [1331] = 627, + [1332] = 647, + [1333] = 1074, + [1334] = 1077, + [1335] = 642, + [1336] = 643, + [1337] = 1078, + [1338] = 1077, + [1339] = 639, + [1340] = 1091, + [1341] = 644, + [1342] = 1119, + [1343] = 645, + [1344] = 647, + [1345] = 642, + [1346] = 643, + [1347] = 997, + [1348] = 639, + [1349] = 646, + [1350] = 638, + [1351] = 1027, + [1352] = 628, + [1353] = 629, + [1354] = 631, + [1355] = 646, + [1356] = 637, + [1357] = 638, + [1358] = 634, + [1359] = 638, + [1360] = 1119, + [1361] = 1117, + [1362] = 1118, + [1363] = 645, + [1364] = 647, + [1365] = 1035, + [1366] = 1089, + [1367] = 1035, + [1368] = 1368, + [1369] = 628, + [1370] = 629, + [1371] = 1371, + [1372] = 631, + [1373] = 1091, + [1374] = 642, + [1375] = 639, + [1376] = 646, + [1377] = 638, + [1378] = 628, + [1379] = 643, + [1380] = 1079, + [1381] = 629, + [1382] = 634, + [1383] = 1117, + [1384] = 1118, + [1385] = 631, + [1386] = 1123, + [1387] = 1123, + [1388] = 1119, + [1389] = 1043, + [1390] = 1078, + [1391] = 1072, + [1392] = 1079, + [1393] = 636, + [1394] = 1092, + [1395] = 1093, + [1396] = 1106, + [1397] = 1125, + [1398] = 1113, + [1399] = 1114, + [1400] = 1115, + [1401] = 1116, + [1402] = 1126, + [1403] = 1043, + [1404] = 634, + [1405] = 1117, + [1406] = 1118, + [1407] = 1072, + [1408] = 1079, + [1409] = 1074, + [1410] = 1124, + [1411] = 1037, + [1412] = 1038, + [1413] = 1039, + [1414] = 1040, + [1415] = 1041, + [1416] = 1042, + [1417] = 1125, + [1418] = 637, + [1419] = 1053, + [1420] = 636, + [1421] = 1093, + [1422] = 1106, + [1423] = 636, + [1424] = 1113, + [1425] = 627, + [1426] = 644, + [1427] = 637, + [1428] = 645, + [1429] = 647, + [1430] = 1052, + [1431] = 642, + [1432] = 643, + [1433] = 1052, + [1434] = 1053, + [1435] = 1054, + [1436] = 1054, + [1437] = 1119, + [1438] = 1053, + [1439] = 1092, + [1440] = 1117, + [1441] = 1118, + [1442] = 1035, + [1443] = 1123, + [1444] = 1125, + [1445] = 638, + [1446] = 1126, + [1447] = 1043, + [1448] = 1124, + [1449] = 1037, + [1450] = 1038, + [1451] = 1039, + [1452] = 1040, + [1453] = 1041, + [1454] = 1042, + [1455] = 639, + [1456] = 1074, + [1457] = 1077, + [1458] = 1078, + [1459] = 646, + [1460] = 1072, + [1461] = 1079, + [1462] = 1089, + [1463] = 1091, + [1464] = 1052, + [1465] = 1054, + [1466] = 634, + [1467] = 627, + [1468] = 644, + [1469] = 637, + [1470] = 645, + [1471] = 647, + [1472] = 642, + [1473] = 643, + [1474] = 639, + [1475] = 646, + [1476] = 638, + [1477] = 638, + [1478] = 638, + [1479] = 638, + [1480] = 631, + [1481] = 628, [1482] = 629, - [1483] = 629, - [1484] = 629, + [1483] = 1371, + [1484] = 1368, [1485] = 1485, [1486] = 1486, [1487] = 1487, @@ -4258,1308 +4258,1308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1491, - [1494] = 1490, - [1495] = 1495, - [1496] = 1495, - [1497] = 1487, - [1498] = 1498, - [1499] = 1498, - [1500] = 1500, - [1501] = 1487, - [1502] = 1500, - [1503] = 1492, - [1504] = 1489, - [1505] = 1489, - [1506] = 1491, - [1507] = 1495, - [1508] = 1488, - [1509] = 1490, - [1510] = 1500, - [1511] = 1498, + [1493] = 1493, + [1494] = 1494, + [1495] = 1487, + [1496] = 1489, + [1497] = 1493, + [1498] = 1492, + [1499] = 1499, + [1500] = 1488, + [1501] = 1490, + [1502] = 1491, + [1503] = 1499, + [1504] = 1494, + [1505] = 1487, + [1506] = 1489, + [1507] = 1493, + [1508] = 1490, + [1509] = 1499, + [1510] = 1488, + [1511] = 1490, [1512] = 1491, [1513] = 1492, - [1514] = 1498, - [1515] = 1500, - [1516] = 1488, - [1517] = 1488, - [1518] = 1490, - [1519] = 1495, - [1520] = 1492, - [1521] = 1489, - [1522] = 1487, + [1514] = 1494, + [1515] = 1491, + [1516] = 1489, + [1517] = 1493, + [1518] = 1494, + [1519] = 1499, + [1520] = 1488, + [1521] = 1487, + [1522] = 1492, [1523] = 1523, - [1524] = 1524, - [1525] = 1523, + [1524] = 1523, + [1525] = 1525, [1526] = 1523, [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1529, + [1530] = 1530, [1531] = 1531, - [1532] = 1531, + [1532] = 1528, [1533] = 1533, [1534] = 1529, - [1535] = 1533, - [1536] = 1531, - [1537] = 1537, - [1538] = 1528, - [1539] = 1531, - [1540] = 1529, - [1541] = 1528, - [1542] = 1533, - [1543] = 1533, - [1544] = 1537, - [1545] = 1537, - [1546] = 1528, - [1547] = 1537, + [1535] = 1531, + [1536] = 1530, + [1537] = 1531, + [1538] = 1530, + [1539] = 1528, + [1540] = 1530, + [1541] = 1533, + [1542] = 1529, + [1543] = 1529, + [1544] = 1533, + [1545] = 1528, + [1546] = 1531, + [1547] = 1533, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1549, - [1552] = 1550, - [1553] = 1553, + [1552] = 1549, + [1553] = 1550, [1554] = 1554, - [1555] = 1549, + [1555] = 1555, [1556] = 1550, [1557] = 1550, [1558] = 1549, - [1559] = 1553, + [1559] = 1555, [1560] = 1554, - [1561] = 1553, + [1561] = 1555, [1562] = 1554, [1563] = 1554, [1564] = 1554, - [1565] = 1553, - [1566] = 1553, - [1567] = 1554, - [1568] = 1553, - [1569] = 1554, - [1570] = 1554, - [1571] = 1571, - [1572] = 633, - [1573] = 630, - [1574] = 635, - [1575] = 1326, - [1576] = 1342, - [1577] = 632, - [1578] = 1578, - [1579] = 1553, - [1580] = 1553, - [1581] = 642, - [1582] = 645, - [1583] = 1583, - [1584] = 629, + [1565] = 1555, + [1566] = 1555, + [1567] = 1555, + [1568] = 1554, + [1569] = 1569, + [1570] = 1368, + [1571] = 1555, + [1572] = 1555, + [1573] = 1573, + [1574] = 634, + [1575] = 1554, + [1576] = 629, + [1577] = 1371, + [1578] = 628, + [1579] = 1554, + [1580] = 631, + [1581] = 646, + [1582] = 639, + [1583] = 638, + [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 635, - [1590] = 632, - [1591] = 1342, - [1592] = 645, - [1593] = 642, - [1594] = 1594, - [1595] = 1594, - [1596] = 629, - [1597] = 1587, - [1598] = 1586, - [1599] = 1585, - [1600] = 1326, - [1601] = 1342, - [1602] = 1602, - [1603] = 630, - [1604] = 1594, - [1605] = 633, - [1606] = 1594, - [1607] = 1326, - [1608] = 633, - [1609] = 632, - [1610] = 630, - [1611] = 1594, - [1612] = 635, - [1613] = 635, - [1614] = 632, - [1615] = 630, - [1616] = 633, - [1617] = 1594, - [1618] = 1618, - [1619] = 1594, - [1620] = 1620, - [1621] = 1594, - [1622] = 1342, - [1623] = 1326, - [1624] = 1624, - [1625] = 1594, - [1626] = 1594, - [1627] = 1588, + [1589] = 1589, + [1590] = 628, + [1591] = 1589, + [1592] = 1592, + [1593] = 631, + [1594] = 1368, + [1595] = 1371, + [1596] = 628, + [1597] = 629, + [1598] = 629, + [1599] = 631, + [1600] = 634, + [1601] = 1368, + [1602] = 1371, + [1603] = 628, + [1604] = 1604, + [1605] = 1586, + [1606] = 631, + [1607] = 638, + [1608] = 639, + [1609] = 646, + [1610] = 1610, + [1611] = 1585, + [1612] = 1589, + [1613] = 629, + [1614] = 1589, + [1615] = 1589, + [1616] = 1589, + [1617] = 1589, + [1618] = 1589, + [1619] = 1589, + [1620] = 1589, + [1621] = 634, + [1622] = 634, + [1623] = 1371, + [1624] = 1368, + [1625] = 1588, + [1626] = 1626, + [1627] = 1604, [1628] = 1628, - [1629] = 1620, - [1630] = 1628, + [1629] = 1628, + [1630] = 1630, [1631] = 1628, - [1632] = 1628, + [1632] = 1632, [1633] = 1633, - [1634] = 1624, - [1635] = 1635, - [1636] = 1583, - [1637] = 1637, - [1638] = 1633, - [1639] = 1635, - [1640] = 1633, - [1641] = 1628, - [1642] = 1628, - [1643] = 1618, - [1644] = 1602, + [1634] = 1632, + [1635] = 1628, + [1636] = 1633, + [1637] = 1628, + [1638] = 1628, + [1639] = 1610, + [1640] = 1592, + [1641] = 1587, + [1642] = 1626, + [1643] = 1628, + [1644] = 1584, [1645] = 1628, - [1646] = 1628, + [1646] = 1633, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1649, - [1651] = 1651, - [1652] = 1648, + [1650] = 1650, + [1651] = 1649, + [1652] = 1650, [1653] = 1653, [1654] = 1653, [1655] = 1655, - [1656] = 1656, - [1657] = 1656, - [1658] = 1656, + [1656] = 1655, + [1657] = 1657, + [1658] = 1658, [1659] = 1659, [1660] = 1660, - [1661] = 1656, + [1661] = 1661, [1662] = 1662, - [1663] = 1656, - [1664] = 1656, + [1663] = 1655, + [1664] = 1664, [1665] = 1665, - [1666] = 1656, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1656, + [1666] = 1666, + [1667] = 1655, + [1668] = 1655, + [1669] = 1655, + [1670] = 1655, + [1671] = 1655, [1672] = 1672, [1673] = 1673, - [1674] = 1674, - [1675] = 1674, - [1676] = 1672, - [1677] = 1674, - [1678] = 1673, - [1679] = 1673, - [1680] = 1674, - [1681] = 1672, - [1682] = 1673, - [1683] = 1674, - [1684] = 1673, - [1685] = 1685, - [1686] = 1672, - [1687] = 1687, - [1688] = 1672, - [1689] = 1689, - [1690] = 1672, - [1691] = 1689, - [1692] = 1685, - [1693] = 1673, - [1694] = 1689, - [1695] = 1685, - [1696] = 1674, - [1697] = 1689, - [1698] = 1698, + [1674] = 1672, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1672, + [1679] = 1675, + [1680] = 1676, + [1681] = 1676, + [1682] = 1677, + [1683] = 1675, + [1684] = 1672, + [1685] = 1675, + [1686] = 1676, + [1687] = 1677, + [1688] = 1676, + [1689] = 1672, + [1690] = 1675, + [1691] = 1676, + [1692] = 1677, + [1693] = 1677, + [1694] = 1694, + [1695] = 1672, + [1696] = 1675, + [1697] = 1676, + [1698] = 1677, [1699] = 1672, - [1700] = 1685, - [1701] = 1673, - [1702] = 1673, - [1703] = 1685, - [1704] = 1685, - [1705] = 1689, - [1706] = 1674, - [1707] = 1685, - [1708] = 1673, - [1709] = 1674, - [1710] = 1710, - [1711] = 1689, - [1712] = 1674, - [1713] = 1685, - [1714] = 1672, - [1715] = 1689, - [1716] = 1689, - [1717] = 1670, - [1718] = 1668, - [1719] = 1669, - [1720] = 1659, - [1721] = 1668, + [1700] = 1675, + [1701] = 1676, + [1702] = 1677, + [1703] = 1672, + [1704] = 1675, + [1705] = 1673, + [1706] = 1706, + [1707] = 1673, + [1708] = 1677, + [1709] = 1673, + [1710] = 1672, + [1711] = 1673, + [1712] = 1673, + [1713] = 1673, + [1714] = 1673, + [1715] = 1675, + [1716] = 1716, + [1717] = 1666, + [1718] = 1657, + [1719] = 1658, + [1720] = 1660, + [1721] = 1661, [1722] = 1660, - [1723] = 1659, - [1724] = 1669, - [1725] = 1667, - [1726] = 1726, - [1727] = 1662, - [1728] = 1728, - [1729] = 1665, - [1730] = 1662, - [1731] = 1731, - [1732] = 1670, - [1733] = 1665, - [1734] = 1667, - [1735] = 1655, - [1736] = 1655, - [1737] = 1726, - [1738] = 1660, - [1739] = 1667, - [1740] = 1668, - [1741] = 1662, - [1742] = 1665, - [1743] = 1670, - [1744] = 1655, - [1745] = 1662, - [1746] = 1660, - [1747] = 1665, + [1723] = 1666, + [1724] = 1724, + [1725] = 1665, + [1726] = 1662, + [1727] = 1657, + [1728] = 1661, + [1729] = 1664, + [1730] = 1658, + [1731] = 1659, + [1732] = 1732, + [1733] = 1664, + [1734] = 1662, + [1735] = 1659, + [1736] = 1665, + [1737] = 1737, + [1738] = 1724, + [1739] = 1661, + [1740] = 1661, + [1741] = 1665, + [1742] = 1657, + [1743] = 1658, + [1744] = 1659, + [1745] = 1664, + [1746] = 1746, + [1747] = 1747, [1748] = 1748, - [1749] = 1749, - [1750] = 1670, - [1751] = 1669, - [1752] = 1726, - [1753] = 1668, - [1754] = 1754, - [1755] = 1660, - [1756] = 1667, - [1757] = 1726, - [1758] = 1655, - [1759] = 1670, - [1760] = 1665, - [1761] = 1662, - [1762] = 1659, - [1763] = 1660, - [1764] = 1655, - [1765] = 1765, - [1766] = 1668, - [1767] = 1659, - [1768] = 1659, + [1749] = 1660, + [1750] = 1662, + [1751] = 1666, + [1752] = 1665, + [1753] = 1657, + [1754] = 1658, + [1755] = 1664, + [1756] = 1664, + [1757] = 1757, + [1758] = 1660, + [1759] = 1662, + [1760] = 1661, + [1761] = 1724, + [1762] = 1762, + [1763] = 1665, + [1764] = 1657, + [1765] = 1658, + [1766] = 1659, + [1767] = 1666, + [1768] = 1724, [1769] = 1769, - [1770] = 1667, - [1771] = 1669, - [1772] = 1772, - [1773] = 1773, - [1774] = 1669, + [1770] = 1770, + [1771] = 1666, + [1772] = 1660, + [1773] = 1662, + [1774] = 1659, [1775] = 1775, - [1776] = 1659, - [1777] = 1667, - [1778] = 1655, - [1779] = 1779, + [1776] = 1776, + [1777] = 1662, + [1778] = 1778, + [1779] = 1664, [1780] = 1780, - [1781] = 1754, + [1781] = 1781, [1782] = 1782, - [1783] = 1660, - [1784] = 1728, - [1785] = 1785, - [1786] = 1669, - [1787] = 1769, + [1783] = 1783, + [1784] = 1784, + [1785] = 1664, + [1786] = 1748, + [1787] = 1660, [1788] = 1788, [1789] = 1789, - [1790] = 1668, - [1791] = 1660, - [1792] = 1780, - [1793] = 1779, - [1794] = 1769, - [1795] = 1769, - [1796] = 1659, - [1797] = 1779, - [1798] = 1798, - [1799] = 1668, - [1800] = 1779, - [1801] = 1788, - [1802] = 1785, - [1803] = 1788, - [1804] = 1789, - [1805] = 1780, - [1806] = 1779, - [1807] = 1807, - [1808] = 1808, - [1809] = 1779, - [1810] = 1670, - [1811] = 1811, - [1812] = 1779, - [1813] = 1813, - [1814] = 1779, - [1815] = 1655, - [1816] = 1816, - [1817] = 1665, - [1818] = 1670, - [1819] = 1665, - [1820] = 1667, - [1821] = 1662, - [1822] = 1662, - [1823] = 1789, - [1824] = 1779, - [1825] = 1825, - [1826] = 1782, - [1827] = 1827, + [1790] = 1784, + [1791] = 1791, + [1792] = 1792, + [1793] = 1666, + [1794] = 1794, + [1795] = 1784, + [1796] = 1791, + [1797] = 1784, + [1798] = 1661, + [1799] = 1788, + [1800] = 1784, + [1801] = 1801, + [1802] = 1783, + [1803] = 1784, + [1804] = 1801, + [1805] = 1762, + [1806] = 1666, + [1807] = 1657, + [1808] = 1658, + [1809] = 1659, + [1810] = 1784, + [1811] = 1748, + [1812] = 1812, + [1813] = 1662, + [1814] = 1784, + [1815] = 1815, + [1816] = 1661, + [1817] = 1784, + [1818] = 1818, + [1819] = 1819, + [1820] = 1784, + [1821] = 1665, + [1822] = 1776, + [1823] = 1657, + [1824] = 1783, + [1825] = 1658, + [1826] = 1659, + [1827] = 1794, [1828] = 1828, - [1829] = 1669, - [1830] = 1830, - [1831] = 1831, - [1832] = 1832, - [1833] = 1807, - [1834] = 1779, + [1829] = 1732, + [1830] = 1801, + [1831] = 1794, + [1832] = 1660, + [1833] = 1748, + [1834] = 1665, [1835] = 1835, - [1836] = 1835, - [1837] = 1835, - [1838] = 1838, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, - [1842] = 1842, - [1843] = 1748, + [1836] = 1836, + [1837] = 1732, + [1838] = 1757, + [1839] = 1835, + [1840] = 1757, + [1841] = 1770, + [1842] = 1818, + [1843] = 1843, [1844] = 1844, - [1845] = 1845, - [1846] = 1830, - [1847] = 1728, - [1848] = 1773, - [1849] = 1849, + [1845] = 1836, + [1846] = 1846, + [1847] = 1818, + [1848] = 1732, + [1849] = 1770, [1850] = 1850, - [1851] = 1851, - [1852] = 1765, - [1853] = 1850, - [1854] = 1835, - [1855] = 1841, - [1856] = 1842, + [1851] = 1843, + [1852] = 1852, + [1853] = 1853, + [1854] = 1747, + [1855] = 1836, + [1856] = 1856, [1857] = 1857, - [1858] = 1835, - [1859] = 1859, + [1858] = 1818, + [1859] = 1836, [1860] = 1860, [1861] = 1861, - [1862] = 1748, - [1863] = 1863, - [1864] = 1765, - [1865] = 1748, - [1866] = 1866, - [1867] = 1835, - [1868] = 1839, - [1869] = 1857, - [1870] = 1835, - [1871] = 1851, - [1872] = 1842, - [1873] = 1765, - [1874] = 1841, - [1875] = 1728, - [1876] = 1876, - [1877] = 1830, - [1878] = 1850, - [1879] = 1839, - [1880] = 1830, - [1881] = 1863, - [1882] = 1773, - [1883] = 1835, - [1884] = 1773, + [1862] = 1836, + [1863] = 1857, + [1864] = 1770, + [1865] = 1843, + [1866] = 1836, + [1867] = 1867, + [1868] = 1856, + [1869] = 1869, + [1870] = 1747, + [1871] = 1757, + [1872] = 1861, + [1873] = 1873, + [1874] = 1861, + [1875] = 1867, + [1876] = 1747, + [1877] = 1877, + [1878] = 1836, + [1879] = 1879, + [1880] = 1852, + [1881] = 1881, + [1882] = 1852, + [1883] = 1867, + [1884] = 1836, [1885] = 1885, [1886] = 1886, [1887] = 1887, [1888] = 1888, - [1889] = 1808, + [1889] = 1889, [1890] = 1890, - [1891] = 1891, + [1891] = 1887, [1892] = 1892, [1893] = 1893, [1894] = 1894, - [1895] = 1895, + [1895] = 1819, [1896] = 1896, - [1897] = 1897, - [1898] = 1898, + [1897] = 1892, + [1898] = 1757, [1899] = 1899, [1900] = 1900, - [1901] = 1901, + [1901] = 1900, [1902] = 1902, - [1903] = 1903, - [1904] = 1754, + [1903] = 1846, + [1904] = 1904, [1905] = 1905, - [1906] = 1906, - [1907] = 1907, + [1906] = 1747, + [1907] = 1769, [1908] = 1908, - [1909] = 1894, - [1910] = 1583, - [1911] = 1902, - [1912] = 1885, - [1913] = 1754, + [1909] = 1909, + [1910] = 1910, + [1911] = 1762, + [1912] = 1912, + [1913] = 1913, [1914] = 1914, - [1915] = 1901, + [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 1907, + [1918] = 1889, [1919] = 1919, - [1920] = 1920, - [1921] = 1906, - [1922] = 1588, - [1923] = 1923, - [1924] = 1773, - [1925] = 1844, + [1920] = 1869, + [1921] = 1921, + [1922] = 1904, + [1923] = 1819, + [1924] = 1924, + [1925] = 1890, [1926] = 1926, [1927] = 1927, - [1928] = 1906, - [1929] = 1929, - [1930] = 1908, + [1928] = 1928, + [1929] = 1769, + [1930] = 1930, [1931] = 1931, - [1932] = 1825, - [1933] = 1933, + [1932] = 1896, + [1933] = 1584, [1934] = 1934, - [1935] = 1825, - [1936] = 1772, - [1937] = 1772, - [1938] = 1890, - [1939] = 1939, - [1940] = 1923, - [1941] = 1754, + [1935] = 1935, + [1936] = 1902, + [1937] = 1846, + [1938] = 1938, + [1939] = 1869, + [1940] = 1940, + [1941] = 1941, [1942] = 1942, [1943] = 1943, - [1944] = 1907, - [1945] = 1945, - [1946] = 1923, - [1947] = 1886, - [1948] = 1765, - [1949] = 1949, - [1950] = 1844, - [1951] = 1898, + [1944] = 1902, + [1945] = 1894, + [1946] = 1770, + [1947] = 1947, + [1948] = 1948, + [1949] = 1762, + [1950] = 1950, + [1951] = 1587, [1952] = 1952, - [1953] = 1953, - [1954] = 1899, - [1955] = 1897, - [1956] = 1956, + [1953] = 1846, + [1954] = 1954, + [1955] = 1887, + [1956] = 1762, [1957] = 1957, - [1958] = 1886, - [1959] = 1927, + [1958] = 1904, + [1959] = 1959, [1960] = 1960, - [1961] = 1961, - [1962] = 1943, + [1961] = 1928, + [1962] = 1900, [1963] = 1888, - [1964] = 1916, - [1965] = 1890, - [1966] = 1866, - [1967] = 1892, - [1968] = 1923, - [1969] = 1969, - [1970] = 1772, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 1917, - [1975] = 1825, - [1976] = 1866, - [1977] = 1901, - [1978] = 1916, + [1964] = 1928, + [1965] = 1769, + [1966] = 1896, + [1967] = 1947, + [1968] = 1869, + [1969] = 1905, + [1970] = 1970, + [1971] = 1952, + [1972] = 1957, + [1973] = 1905, + [1974] = 1960, + [1975] = 1975, + [1976] = 1976, + [1977] = 1935, + [1978] = 1792, [1979] = 1979, - [1980] = 1844, - [1981] = 1939, - [1982] = 1866, - [1983] = 1983, - [1984] = 1927, - [1985] = 1748, - [1986] = 1896, - [1987] = 1939, - [1988] = 1957, - [1989] = 1989, - [1990] = 1943, - [1991] = 1902, - [1992] = 1618, - [1993] = 1898, + [1980] = 1935, + [1981] = 1981, + [1982] = 1919, + [1983] = 1819, + [1984] = 1948, + [1985] = 1904, + [1986] = 1899, + [1987] = 1930, + [1988] = 1899, + [1989] = 1888, + [1990] = 1950, + [1991] = 1950, + [1992] = 1992, + [1993] = 1913, [1994] = 1994, [1995] = 1960, - [1996] = 1971, - [1997] = 1896, + [1996] = 1996, + [1997] = 1997, [1998] = 1998, - [1999] = 1897, - [2000] = 1952, - [2001] = 1901, - [2002] = 1939, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, [2003] = 2003, - [2004] = 2004, - [2005] = 1841, - [2006] = 1960, - [2007] = 1825, - [2008] = 1971, - [2009] = 2009, + [2004] = 1893, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 1997, [2010] = 2010, - [2011] = 1899, - [2012] = 1934, - [2013] = 2013, + [2011] = 1992, + [2012] = 2012, + [2013] = 1992, [2014] = 2014, - [2015] = 1994, - [2016] = 1899, - [2017] = 2017, - [2018] = 2018, + [2015] = 1917, + [2016] = 1894, + [2017] = 1889, + [2018] = 1890, [2019] = 2019, - [2020] = 1934, - [2021] = 1994, - [2022] = 1933, - [2023] = 1890, - [2024] = 2024, - [2025] = 1994, - [2026] = 1920, + [2020] = 2020, + [2021] = 2021, + [2022] = 1942, + [2023] = 2023, + [2024] = 1943, + [2025] = 2025, + [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 1994, - [2030] = 1919, - [2031] = 1892, - [2032] = 2018, - [2033] = 2033, - [2034] = 2027, - [2035] = 1903, + [2029] = 2029, + [2030] = 2030, + [2031] = 1604, + [2032] = 1889, + [2033] = 1890, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, [2037] = 2037, [2038] = 2038, - [2039] = 1933, - [2040] = 1888, - [2041] = 1961, + [2039] = 2039, + [2040] = 2040, + [2041] = 1626, [2042] = 2042, [2043] = 2043, - [2044] = 2043, + [2044] = 2044, [2045] = 2045, - [2046] = 2046, - [2047] = 2010, - [2048] = 1994, - [2049] = 2049, + [2046] = 1610, + [2047] = 1819, + [2048] = 2020, + [2049] = 1992, [2050] = 2050, - [2051] = 1920, - [2052] = 1919, - [2053] = 2053, - [2054] = 1620, + [2051] = 2051, + [2052] = 1592, + [2053] = 1981, + [2054] = 2054, [2055] = 2055, [2056] = 2056, - [2057] = 2042, - [2058] = 2036, - [2059] = 2059, - [2060] = 1624, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2027, - [2065] = 1896, - [2066] = 2061, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 1994, - [2072] = 1897, - [2073] = 2073, - [2074] = 2018, - [2075] = 1994, - [2076] = 1602, + [2057] = 2057, + [2058] = 2058, + [2059] = 1952, + [2060] = 1957, + [2061] = 1960, + [2062] = 2035, + [2063] = 1992, + [2064] = 1852, + [2065] = 2065, + [2066] = 2035, + [2067] = 1908, + [2068] = 1913, + [2069] = 1950, + [2070] = 1992, + [2071] = 2054, + [2072] = 1959, + [2073] = 1893, + [2074] = 1942, + [2075] = 1943, + [2076] = 1992, [2077] = 2077, - [2078] = 2078, + [2078] = 1952, [2079] = 2079, - [2080] = 1898, - [2081] = 2055, - [2082] = 2082, - [2083] = 1933, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2042, - [2088] = 2038, - [2089] = 2089, - [2090] = 1888, + [2080] = 1908, + [2081] = 1913, + [2082] = 1896, + [2083] = 2083, + [2084] = 1992, + [2085] = 1957, + [2086] = 1959, + [2087] = 1888, + [2088] = 2088, + [2089] = 1959, + [2090] = 1996, [2091] = 2091, - [2092] = 2092, - [2093] = 2038, - [2094] = 1934, - [2095] = 2070, - [2096] = 2037, - [2097] = 2038, - [2098] = 1960, - [2099] = 2099, - [2100] = 1919, - [2101] = 2101, - [2102] = 1998, - [2103] = 2103, - [2104] = 1920, - [2105] = 1892, - [2106] = 1971, - [2107] = 2107, + [2092] = 1886, + [2093] = 1998, + [2094] = 2091, + [2095] = 2014, + [2096] = 2019, + [2097] = 1908, + [2098] = 1893, + [2099] = 2000, + [2100] = 2088, + [2101] = 2079, + [2102] = 1942, + [2103] = 1943, + [2104] = 2020, + [2105] = 1998, + [2106] = 1996, + [2107] = 1894, [2108] = 2108, - [2109] = 2109, - [2110] = 2078, - [2111] = 2103, - [2112] = 2112, + [2109] = 2035, + [2110] = 2021, + [2111] = 2111, + [2112] = 2039, [2113] = 2113, [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2115, + [2115] = 2040, + [2116] = 2042, + [2117] = 2117, [2118] = 2118, [2119] = 2119, - [2120] = 2120, - [2121] = 2121, + [2120] = 2003, + [2121] = 2043, [2122] = 2122, [2123] = 2123, - [2124] = 2124, + [2124] = 2045, [2125] = 2125, - [2126] = 2126, - [2127] = 2127, + [2126] = 2008, + [2127] = 2108, [2128] = 2128, - [2129] = 2114, + [2129] = 2051, [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2133, + [2131] = 2002, + [2132] = 2055, + [2133] = 2057, [2134] = 2134, [2135] = 2135, [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2063, - [2142] = 2142, - [2143] = 2132, - [2144] = 2134, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2142, + [2137] = 2002, + [2138] = 2003, + [2139] = 2006, + [2140] = 2005, + [2141] = 2007, + [2142] = 2008, + [2143] = 2010, + [2144] = 2010, + [2145] = 2021, + [2146] = 2123, + [2147] = 2021, + [2148] = 2023, + [2149] = 2149, [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 2082, - [2157] = 2151, - [2158] = 2158, - [2159] = 2150, - [2160] = 2148, - [2161] = 2003, - [2162] = 2004, - [2163] = 2059, - [2164] = 2103, - [2165] = 1998, - [2166] = 2101, - [2167] = 2099, - [2168] = 2089, - [2169] = 2049, - [2170] = 2014, - [2171] = 2109, - [2172] = 2108, - [2173] = 2107, - [2174] = 2078, - [2175] = 2077, - [2176] = 2148, - [2177] = 2150, - [2178] = 2013, - [2179] = 2073, - [2180] = 2017, - [2181] = 2062, - [2182] = 2151, - [2183] = 2056, - [2184] = 2053, - [2185] = 2050, - [2186] = 2045, - [2187] = 2019, - [2188] = 2033, - [2189] = 2028, - [2190] = 2024, - [2191] = 2019, - [2192] = 2017, - [2193] = 2024, - [2194] = 2013, - [2195] = 2028, - [2196] = 2033, - [2197] = 2099, - [2198] = 2150, - [2199] = 2101, - [2200] = 2148, - [2201] = 2151, - [2202] = 2103, - [2203] = 2050, - [2204] = 2053, - [2205] = 2056, - [2206] = 2062, - [2207] = 2073, - [2208] = 2089, - [2209] = 2049, - [2210] = 2014, - [2211] = 2109, - [2212] = 2077, - [2213] = 2108, - [2214] = 2107, - [2215] = 2077, - [2216] = 2073, - [2217] = 2062, - [2218] = 2056, - [2219] = 2053, - [2220] = 2050, - [2221] = 2045, - [2222] = 2078, - [2223] = 2107, - [2224] = 2108, - [2225] = 2033, - [2226] = 2028, - [2227] = 2024, - [2228] = 2109, - [2229] = 2045, - [2230] = 2019, - [2231] = 2017, - [2232] = 2049, - [2233] = 2013, - [2234] = 2089, - [2235] = 2014, - [2236] = 2099, - [2237] = 2101, - [2238] = 1998, - [2239] = 2239, + [2151] = 2025, + [2152] = 2026, + [2153] = 2027, + [2154] = 2028, + [2155] = 2029, + [2156] = 2030, + [2157] = 2038, + [2158] = 2039, + [2159] = 2040, + [2160] = 2042, + [2161] = 2043, + [2162] = 2045, + [2163] = 2023, + [2164] = 2164, + [2165] = 2025, + [2166] = 2026, + [2167] = 2077, + [2168] = 2027, + [2169] = 2028, + [2170] = 2051, + [2171] = 2054, + [2172] = 2055, + [2173] = 2051, + [2174] = 2054, + [2175] = 2055, + [2176] = 2057, + [2177] = 2057, + [2178] = 2178, + [2179] = 2179, + [2180] = 2029, + [2181] = 2030, + [2182] = 2182, + [2183] = 2118, + [2184] = 2119, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2118, + [2189] = 2189, + [2190] = 2190, + [2191] = 2118, + [2192] = 2123, + [2193] = 2050, + [2194] = 2056, + [2195] = 2119, + [2196] = 2002, + [2197] = 2197, + [2198] = 2119, + [2199] = 2003, + [2200] = 2006, + [2201] = 2007, + [2202] = 2202, + [2203] = 2182, + [2204] = 2008, + [2205] = 2205, + [2206] = 2206, + [2207] = 2010, + [2208] = 2208, + [2209] = 2006, + [2210] = 2007, + [2211] = 2125, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2023, + [2216] = 2025, + [2217] = 2217, + [2218] = 2218, + [2219] = 2026, + [2220] = 2027, + [2221] = 2028, + [2222] = 2029, + [2223] = 2164, + [2224] = 2030, + [2225] = 2225, + [2226] = 2038, + [2227] = 2039, + [2228] = 2040, + [2229] = 2042, + [2230] = 2043, + [2231] = 2045, + [2232] = 2232, + [2233] = 2117, + [2234] = 2234, + [2235] = 2038, + [2236] = 2234, + [2237] = 2123, + [2238] = 2238, + [2239] = 1886, [2240] = 2240, [2241] = 2241, [2242] = 2242, [2243] = 2243, [2244] = 2244, - [2245] = 2146, + [2245] = 2245, [2246] = 2246, - [2247] = 2247, - [2248] = 2248, + [2247] = 2244, + [2248] = 2246, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2252, - [2253] = 2253, + [2252] = 2250, + [2253] = 2251, [2254] = 2254, - [2255] = 2242, + [2255] = 2255, [2256] = 2256, - [2257] = 2249, + [2257] = 2202, [2258] = 2258, - [2259] = 2258, - [2260] = 1588, - [2261] = 2261, - [2262] = 2244, - [2263] = 1952, - [2264] = 2158, - [2265] = 2265, - [2266] = 2239, - [2267] = 1583, + [2259] = 649, + [2260] = 2260, + [2261] = 2238, + [2262] = 2262, + [2263] = 2263, + [2264] = 2242, + [2265] = 1926, + [2266] = 2266, + [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 1961, - [2272] = 2249, + [2271] = 2245, + [2272] = 2272, [2273] = 2273, [2274] = 2274, - [2275] = 2247, - [2276] = 2274, + [2275] = 2275, + [2276] = 2255, [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2251, - [2283] = 2278, - [2284] = 2244, - [2285] = 2285, - [2286] = 2243, - [2287] = 2152, - [2288] = 2153, - [2289] = 2154, + [2278] = 1934, + [2279] = 2267, + [2280] = 654, + [2281] = 1975, + [2282] = 2282, + [2283] = 2250, + [2284] = 2284, + [2285] = 1587, + [2286] = 2286, + [2287] = 2241, + [2288] = 1938, + [2289] = 2267, [2290] = 2290, - [2291] = 2253, + [2291] = 2291, [2292] = 2292, - [2293] = 1027, - [2294] = 2294, - [2295] = 1961, - [2296] = 1952, - [2297] = 1969, - [2298] = 1004, - [2299] = 2299, - [2300] = 2300, - [2301] = 2154, - [2302] = 2302, - [2303] = 2153, - [2304] = 2254, - [2305] = 2152, + [2293] = 2293, + [2294] = 2260, + [2295] = 2128, + [2296] = 2190, + [2297] = 2251, + [2298] = 2242, + [2299] = 2260, + [2300] = 997, + [2301] = 2282, + [2302] = 2187, + [2303] = 2242, + [2304] = 2304, + [2305] = 2267, [2306] = 2306, - [2307] = 2307, - [2308] = 2273, - [2309] = 2309, - [2310] = 2310, - [2311] = 2309, - [2312] = 2306, - [2313] = 2307, - [2314] = 2299, - [2315] = 2153, - [2316] = 2316, - [2317] = 2277, - [2318] = 2300, - [2319] = 1961, - [2320] = 1952, - [2321] = 2146, - [2322] = 2290, - [2323] = 1972, - [2324] = 2146, - [2325] = 1905, - [2326] = 1891, - [2327] = 1887, - [2328] = 2328, - [2329] = 2329, - [2330] = 1949, - [2331] = 1956, - [2332] = 2280, - [2333] = 657, - [2334] = 2243, - [2335] = 2281, - [2336] = 2336, - [2337] = 2279, - [2338] = 2338, + [2307] = 2267, + [2308] = 2268, + [2309] = 2284, + [2310] = 2268, + [2311] = 2254, + [2312] = 1604, + [2313] = 2245, + [2314] = 2314, + [2315] = 2315, + [2316] = 2273, + [2317] = 2274, + [2318] = 1917, + [2319] = 2245, + [2320] = 2277, + [2321] = 2292, + [2322] = 2286, + [2323] = 2273, + [2324] = 2282, + [2325] = 2274, + [2326] = 2284, + [2327] = 2241, + [2328] = 2286, + [2329] = 2241, + [2330] = 2277, + [2331] = 2331, + [2332] = 2332, + [2333] = 1917, + [2334] = 2268, + [2335] = 2282, + [2336] = 2273, + [2337] = 2337, + [2338] = 2284, [2339] = 2339, - [2340] = 2251, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 2248, + [2340] = 2340, + [2341] = 2260, + [2342] = 2286, + [2343] = 2241, + [2344] = 2242, [2345] = 2345, - [2346] = 2241, - [2347] = 2347, - [2348] = 2348, - [2349] = 2338, - [2350] = 2244, - [2351] = 2281, - [2352] = 2280, - [2353] = 2269, - [2354] = 2258, - [2355] = 2249, - [2356] = 2356, - [2357] = 2281, - [2358] = 2280, - [2359] = 2269, + [2346] = 1584, + [2347] = 2267, + [2348] = 2254, + [2349] = 2202, + [2350] = 2268, + [2351] = 2304, + [2352] = 2245, + [2353] = 2242, + [2354] = 2273, + [2355] = 2274, + [2356] = 2149, + [2357] = 2345, + [2358] = 2277, + [2359] = 2359, [2360] = 2360, - [2361] = 2265, - [2362] = 2239, - [2363] = 2258, - [2364] = 2269, - [2365] = 2365, - [2366] = 2135, - [2367] = 2281, - [2368] = 2280, - [2369] = 2265, - [2370] = 2239, - [2371] = 2133, - [2372] = 2372, - [2373] = 2269, - [2374] = 1929, - [2375] = 1583, - [2376] = 2278, - [2377] = 658, - [2378] = 2356, - [2379] = 2240, - [2380] = 2274, - [2381] = 2274, - [2382] = 2278, - [2383] = 2316, - [2384] = 2280, - [2385] = 2281, - [2386] = 1624, - [2387] = 2285, + [2361] = 2282, + [2362] = 2284, + [2363] = 2363, + [2364] = 2286, + [2365] = 2241, + [2366] = 2366, + [2367] = 2187, + [2368] = 2368, + [2369] = 2369, + [2370] = 2274, + [2371] = 655, + [2372] = 2360, + [2373] = 1587, + [2374] = 2260, + [2375] = 2214, + [2376] = 2260, + [2377] = 2242, + [2378] = 2345, + [2379] = 2314, + [2380] = 2267, + [2381] = 2315, + [2382] = 2340, + [2383] = 2284, + [2384] = 2360, + [2385] = 2385, + [2386] = 2245, + [2387] = 2387, [2388] = 2273, - [2389] = 2124, - [2390] = 2123, - [2391] = 2247, - [2392] = 652, - [2393] = 2393, - [2394] = 2265, - [2395] = 2269, + [2389] = 2274, + [2390] = 2390, + [2391] = 2277, + [2392] = 2368, + [2393] = 2243, + [2394] = 2282, + [2395] = 2284, [2396] = 2396, - [2397] = 2239, - [2398] = 2345, - [2399] = 2265, - [2400] = 2300, - [2401] = 2270, - [2402] = 2258, - [2403] = 2268, - [2404] = 2249, - [2405] = 2244, - [2406] = 2307, - [2407] = 2248, - [2408] = 2309, - [2409] = 2279, - [2410] = 2250, - [2411] = 2306, - [2412] = 2412, - [2413] = 2299, - [2414] = 2251, - [2415] = 2243, - [2416] = 2112, - [2417] = 2417, - [2418] = 2253, - [2419] = 2343, - [2420] = 2290, - [2421] = 2421, - [2422] = 660, + [2397] = 2286, + [2398] = 2241, + [2399] = 2399, + [2400] = 2400, + [2401] = 2387, + [2402] = 2244, + [2403] = 2403, + [2404] = 2246, + [2405] = 1027, + [2406] = 2250, + [2407] = 2407, + [2408] = 2277, + [2409] = 2286, + [2410] = 2241, + [2411] = 2114, + [2412] = 1924, + [2413] = 2251, + [2414] = 2277, + [2415] = 2286, + [2416] = 2241, + [2417] = 2135, + [2418] = 2244, + [2419] = 2150, + [2420] = 2420, + [2421] = 2245, + [2422] = 2255, [2423] = 2423, - [2424] = 2281, - [2425] = 2280, - [2426] = 2339, - [2427] = 2278, - [2428] = 2274, - [2429] = 2429, - [2430] = 2243, - [2431] = 2269, - [2432] = 2269, - [2433] = 2290, - [2434] = 2239, - [2435] = 2435, - [2436] = 2251, - [2437] = 2265, + [2424] = 1587, + [2425] = 1886, + [2426] = 2426, + [2427] = 2266, + [2428] = 2266, + [2429] = 2272, + [2430] = 2270, + [2431] = 2268, + [2432] = 2202, + [2433] = 2403, + [2434] = 2314, + [2435] = 2315, + [2436] = 2260, + [2437] = 2437, [2438] = 2438, - [2439] = 2258, - [2440] = 2336, - [2441] = 2249, - [2442] = 2285, - [2443] = 2274, - [2444] = 2244, - [2445] = 2243, - [2446] = 2244, - [2447] = 2278, - [2448] = 2280, - [2449] = 2249, - [2450] = 2251, - [2451] = 2281, - [2452] = 2452, - [2453] = 2243, - [2454] = 2341, - [2455] = 2329, - [2456] = 2258, - [2457] = 2365, - [2458] = 2277, - [2459] = 1583, - [2460] = 2251, - [2461] = 2328, - [2462] = 2265, - [2463] = 2239, - [2464] = 2299, - [2465] = 2306, - [2466] = 2269, - [2467] = 2281, - [2468] = 2309, - [2469] = 2307, - [2470] = 2292, - [2471] = 2274, - [2472] = 2280, - [2473] = 2278, - [2474] = 2278, - [2475] = 2280, - [2476] = 2281, - [2477] = 2274, - [2478] = 2300, - [2479] = 2479, - [2480] = 2342, - [2481] = 2269, - [2482] = 648, - [2483] = 2294, - [2484] = 2484, - [2485] = 2285, - [2486] = 2302, - [2487] = 2417, - [2488] = 2310, - [2489] = 2243, - [2490] = 2239, - [2491] = 2265, - [2492] = 2254, - [2493] = 2258, - [2494] = 2251, - [2495] = 2249, - [2496] = 2496, - [2497] = 2244, - [2498] = 2498, + [2439] = 2255, + [2440] = 2440, + [2441] = 2262, + [2442] = 2293, + [2443] = 2242, + [2444] = 2238, + [2445] = 2187, + [2446] = 2214, + [2447] = 2273, + [2448] = 2274, + [2449] = 2437, + [2450] = 2270, + [2451] = 2403, + [2452] = 2260, + [2453] = 2453, + [2454] = 2267, + [2455] = 2277, + [2456] = 2366, + [2457] = 2457, + [2458] = 2458, + [2459] = 2243, + [2460] = 2268, + [2461] = 2277, + [2462] = 2245, + [2463] = 2286, + [2464] = 2291, + [2465] = 2273, + [2466] = 2274, + [2467] = 2243, + [2468] = 2275, + [2469] = 2277, + [2470] = 2470, + [2471] = 2331, + [2472] = 2282, + [2473] = 2284, + [2474] = 2286, + [2475] = 2241, + [2476] = 652, + [2477] = 1886, + [2478] = 1917, + [2479] = 2282, + [2480] = 2360, + [2481] = 2390, + [2482] = 2457, + [2483] = 2399, + [2484] = 2440, + [2485] = 2485, + [2486] = 2258, + [2487] = 2458, + [2488] = 653, + [2489] = 2489, + [2490] = 1940, + [2491] = 1976, + [2492] = 1885, + [2493] = 2290, + [2494] = 2470, + [2495] = 2485, + [2496] = 2246, + [2497] = 2332, + [2498] = 2268, [2499] = 2499, [2500] = 2500, [2501] = 2501, - [2502] = 2502, + [2502] = 2001, [2503] = 2503, - [2504] = 2504, + [2504] = 2501, [2505] = 2505, [2506] = 2506, [2507] = 2507, [2508] = 2508, [2509] = 2509, - [2510] = 2510, + [2510] = 2501, [2511] = 2511, [2512] = 2512, [2513] = 2513, - [2514] = 2514, - [2515] = 2515, + [2514] = 1610, + [2515] = 1626, [2516] = 2516, [2517] = 2517, [2518] = 2518, [2519] = 2519, [2520] = 2520, - [2521] = 648, - [2522] = 1620, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, [2524] = 2524, - [2525] = 2396, + [2525] = 652, [2526] = 2526, [2527] = 2527, - [2528] = 2085, - [2529] = 1624, - [2530] = 2085, + [2528] = 1610, + [2529] = 2529, + [2530] = 2530, [2531] = 2531, - [2532] = 1602, - [2533] = 2533, + [2532] = 2532, + [2533] = 2529, [2534] = 2534, - [2535] = 1618, - [2536] = 2516, - [2537] = 2518, - [2538] = 2526, - [2539] = 2531, - [2540] = 2531, - [2541] = 2527, - [2542] = 2526, + [2535] = 2535, + [2536] = 2536, + [2537] = 2537, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2505, [2543] = 2543, - [2544] = 658, + [2544] = 2522, [2545] = 2545, - [2546] = 2546, - [2547] = 2547, - [2548] = 2548, - [2549] = 2510, - [2550] = 2550, - [2551] = 2509, - [2552] = 2547, - [2553] = 2517, - [2554] = 2519, - [2555] = 660, - [2556] = 2556, - [2557] = 2557, - [2558] = 2558, - [2559] = 2393, - [2560] = 657, - [2561] = 2372, - [2562] = 1618, - [2563] = 1620, - [2564] = 2546, + [2546] = 2501, + [2547] = 2538, + [2548] = 1604, + [2549] = 2549, + [2550] = 2539, + [2551] = 2499, + [2552] = 2339, + [2553] = 2553, + [2554] = 2554, + [2555] = 2001, + [2556] = 2505, + [2557] = 2506, + [2558] = 2509, + [2559] = 2506, + [2560] = 2509, + [2561] = 2561, + [2562] = 653, + [2563] = 2536, + [2564] = 2561, [2565] = 2565, - [2566] = 2516, - [2567] = 2085, - [2568] = 2518, + [2566] = 2538, + [2567] = 2520, + [2568] = 2539, [2569] = 2569, - [2570] = 2519, + [2570] = 1592, [2571] = 2571, - [2572] = 2531, - [2573] = 2520, - [2574] = 2574, - [2575] = 2524, + [2572] = 649, + [2573] = 1592, + [2574] = 654, + [2575] = 2575, [2576] = 2576, - [2577] = 2543, + [2577] = 2537, [2578] = 2578, [2579] = 2579, - [2580] = 2580, - [2581] = 2518, + [2580] = 2489, + [2581] = 2581, [2582] = 2582, - [2583] = 2583, + [2583] = 2554, [2584] = 2584, - [2585] = 2548, + [2585] = 2585, [2586] = 2586, - [2587] = 2510, - [2588] = 2588, - [2589] = 2526, - [2590] = 652, - [2591] = 2507, - [2592] = 2545, - [2593] = 2593, - [2594] = 2594, + [2587] = 2538, + [2588] = 2522, + [2589] = 2589, + [2590] = 2539, + [2591] = 2512, + [2592] = 1626, + [2593] = 2549, + [2594] = 2565, [2595] = 2595, - [2596] = 1602, - [2597] = 2516, - [2598] = 2517, - [2599] = 2599, + [2596] = 2001, + [2597] = 2522, + [2598] = 655, + [2599] = 2306, [2600] = 2600, [2601] = 2601, [2602] = 2602, [2603] = 2603, [2604] = 2604, [2605] = 2605, - [2606] = 2606, + [2606] = 2602, [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, - [2611] = 2605, + [2611] = 2611, [2612] = 2612, - [2613] = 2613, - [2614] = 2605, - [2615] = 2602, + [2613] = 2601, + [2614] = 2614, + [2615] = 2615, [2616] = 2616, [2617] = 2617, - [2618] = 2618, + [2618] = 2607, [2619] = 2619, [2620] = 2620, - [2621] = 2600, + [2621] = 2619, [2622] = 2622, - [2623] = 2623, + [2623] = 2602, [2624] = 2624, - [2625] = 2625, + [2625] = 2602, [2626] = 2626, - [2627] = 2627, - [2628] = 2617, - [2629] = 2603, - [2630] = 2625, - [2631] = 2631, - [2632] = 2624, - [2633] = 2626, - [2634] = 2623, + [2627] = 2614, + [2628] = 2604, + [2629] = 2629, + [2630] = 2624, + [2631] = 2601, + [2632] = 2632, + [2633] = 2622, + [2634] = 2605, [2635] = 2622, - [2636] = 2626, - [2637] = 2637, - [2638] = 2627, - [2639] = 2625, - [2640] = 2616, - [2641] = 2624, - [2642] = 2600, - [2643] = 2623, - [2644] = 2626, - [2645] = 2616, - [2646] = 2646, - [2647] = 2616, - [2648] = 2648, - [2649] = 2622, - [2650] = 2619, - [2651] = 2631, - [2652] = 2618, - [2653] = 2600, - [2654] = 2637, - [2655] = 2625, - [2656] = 2624, - [2657] = 2600, - [2658] = 2617, - [2659] = 2619, - [2660] = 2660, - [2661] = 2618, - [2662] = 2618, - [2663] = 2623, - [2664] = 2664, - [2665] = 2617, - [2666] = 2648, - [2667] = 2617, - [2668] = 2668, - [2669] = 2669, - [2670] = 2616, - [2671] = 2617, - [2672] = 2619, - [2673] = 2673, - [2674] = 2616, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2637, - [2679] = 2660, - [2680] = 2676, - [2681] = 2602, - [2682] = 2602, - [2683] = 2600, - [2684] = 2603, - [2685] = 2664, - [2686] = 2602, - [2687] = 2613, - [2688] = 2631, - [2689] = 2610, - [2690] = 2605, - [2691] = 2605, - [2692] = 2609, - [2693] = 2622, - [2694] = 2604, - [2695] = 2623, - [2696] = 2696, - [2697] = 2626, - [2698] = 2698, - [2699] = 2622, - [2700] = 2675, + [2636] = 2636, + [2637] = 2608, + [2638] = 2611, + [2639] = 2609, + [2640] = 2640, + [2641] = 2641, + [2642] = 2624, + [2643] = 2608, + [2644] = 2612, + [2645] = 2624, + [2646] = 2612, + [2647] = 2601, + [2648] = 2626, + [2649] = 2626, + [2650] = 2650, + [2651] = 2651, + [2652] = 2601, + [2653] = 2653, + [2654] = 2604, + [2655] = 2600, + [2656] = 2612, + [2657] = 2657, + [2658] = 2658, + [2659] = 2605, + [2660] = 2614, + [2661] = 2604, + [2662] = 2629, + [2663] = 2615, + [2664] = 2604, + [2665] = 2605, + [2666] = 2605, + [2667] = 2612, + [2668] = 2608, + [2669] = 2607, + [2670] = 2607, + [2671] = 2609, + [2672] = 2672, + [2673] = 2619, + [2674] = 2674, + [2675] = 2608, + [2676] = 2612, + [2677] = 2609, + [2678] = 2619, + [2679] = 2679, + [2680] = 2614, + [2681] = 2615, + [2682] = 2609, + [2683] = 2611, + [2684] = 2636, + [2685] = 2685, + [2686] = 2686, + [2687] = 2615, + [2688] = 2688, + [2689] = 2622, + [2690] = 2607, + [2691] = 2691, + [2692] = 2602, + [2693] = 2693, + [2694] = 2619, + [2695] = 2632, + [2696] = 2658, + [2697] = 2641, + [2698] = 2605, + [2699] = 2699, + [2700] = 2601, [2701] = 2701, - [2702] = 2620, - [2703] = 2668, - [2704] = 2704, - [2705] = 2620, - [2706] = 2624, - [2707] = 2707, - [2708] = 2646, - [2709] = 2625, - [2710] = 2696, - [2711] = 2605, - [2712] = 2712, - [2713] = 2603, - [2714] = 2612, - [2715] = 2600, - [2716] = 2631, - [2717] = 2601, + [2702] = 2605, + [2703] = 2626, + [2704] = 2604, + [2705] = 2705, + [2706] = 2605, + [2707] = 2614, + [2708] = 2708, + [2709] = 2612, + [2710] = 2608, + [2711] = 2609, + [2712] = 2688, + [2713] = 2614, + [2714] = 2616, + [2715] = 2612, + [2716] = 2650, + [2717] = 2609, [2718] = 2718, - [2719] = 2719, - [2720] = 2602, - [2721] = 2613, - [2722] = 2722, - [2723] = 2696, + [2719] = 2650, + [2720] = 2686, + [2721] = 2614, + [2722] = 2632, + [2723] = 2615, [2724] = 2600, - [2725] = 2646, - [2726] = 2626, - [2727] = 2727, - [2728] = 2698, - [2729] = 2620, - [2730] = 2730, - [2731] = 2731, - [2732] = 2618, - [2733] = 2733, - [2734] = 2619, - [2735] = 2626, - [2736] = 2736, - [2737] = 2618, - [2738] = 2622, - [2739] = 2625, - [2740] = 2616, - [2741] = 2637, - [2742] = 2624, - [2743] = 2660, - [2744] = 2625, - [2745] = 2624, - [2746] = 2605, - [2747] = 2623, - [2748] = 2648, - [2749] = 2673, - [2750] = 2750, - [2751] = 2622, + [2725] = 2615, + [2726] = 2614, + [2727] = 2607, + [2728] = 2619, + [2729] = 2686, + [2730] = 2629, + [2731] = 2622, + [2732] = 2732, + [2733] = 2615, + [2734] = 2691, + [2735] = 2735, + [2736] = 2601, + [2737] = 2626, + [2738] = 2738, + [2739] = 2607, + [2740] = 2740, + [2741] = 2619, + [2742] = 2607, + [2743] = 2604, + [2744] = 2619, + [2745] = 2745, + [2746] = 2608, + [2747] = 2747, + [2748] = 2650, + [2749] = 2622, + [2750] = 2609, + [2751] = 2611, [2752] = 2752, - [2753] = 2631, - [2754] = 2626, - [2755] = 2625, - [2756] = 2623, - [2757] = 2602, - [2758] = 2624, - [2759] = 2759, - [2760] = 2600, - [2761] = 2761, - [2762] = 2603, - [2763] = 2637, - [2764] = 2619, - [2765] = 2648, - [2766] = 2619, - [2767] = 2623, - [2768] = 2768, - [2769] = 2618, - [2770] = 2622, - [2771] = 2771, - [2772] = 2617, - [2773] = 2600, - [2774] = 2602, - [2775] = 2605, - [2776] = 2617, - [2777] = 2777, - [2778] = 2761, + [2753] = 2753, + [2754] = 2615, + [2755] = 2612, + [2756] = 2629, + [2757] = 2608, + [2758] = 2620, + [2759] = 2653, + [2760] = 2760, + [2761] = 2760, + [2762] = 2762, + [2763] = 2763, + [2764] = 2612, + [2765] = 2640, + [2766] = 2603, + [2767] = 2672, + [2768] = 2762, + [2769] = 2640, + [2770] = 2693, + [2771] = 2611, + [2772] = 2772, + [2773] = 2611, + [2774] = 2774, + [2775] = 2611, + [2776] = 2679, + [2777] = 2611, + [2778] = 2778, [2779] = 2779, - [2780] = 2780, - [2781] = 2781, - [2782] = 2759, - [2783] = 2619, - [2784] = 2781, - [2785] = 2752, - [2786] = 2660, - [2787] = 2750, - [2788] = 2718, - [2789] = 2701, - [2790] = 2616, - [2791] = 2677, - [2792] = 2701, - [2793] = 2618, - [2794] = 2722, + [2780] = 2640, + [2781] = 2650, + [2782] = 2601, + [2783] = 2772, + [2784] = 2778, + [2785] = 2785, + [2786] = 2735, + [2787] = 2752, + [2788] = 2674, + [2789] = 2685, + [2790] = 2774, + [2791] = 2674, + [2792] = 2604, + [2793] = 2622, + [2794] = 2622, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -7529,9 +7529,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 52, .external_lex_state = 3}, [60] = {.lex_state = 52, .external_lex_state = 3}, [61] = {.lex_state = 52, .external_lex_state = 3}, - [62] = {.lex_state = 52, .external_lex_state = 2}, + [62] = {.lex_state = 52, .external_lex_state = 3}, [63] = {.lex_state = 52, .external_lex_state = 3}, - [64] = {.lex_state = 52, .external_lex_state = 3}, + [64] = {.lex_state = 52, .external_lex_state = 2}, [65] = {.lex_state = 52, .external_lex_state = 3}, [66] = {.lex_state = 52, .external_lex_state = 3}, [67] = {.lex_state = 52, .external_lex_state = 2}, @@ -7630,213 +7630,213 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 5, .external_lex_state = 6}, [161] = {.lex_state = 12, .external_lex_state = 4}, [162] = {.lex_state = 12, .external_lex_state = 6}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 6}, - [165] = {.lex_state = 5, .external_lex_state = 6}, - [166] = {.lex_state = 5, .external_lex_state = 7}, - [167] = {.lex_state = 12, .external_lex_state = 6}, - [168] = {.lex_state = 5, .external_lex_state = 7}, - [169] = {.lex_state = 12, .external_lex_state = 7}, - [170] = {.lex_state = 5, .external_lex_state = 7}, - [171] = {.lex_state = 12, .external_lex_state = 2}, + [163] = {.lex_state = 12, .external_lex_state = 7}, + [164] = {.lex_state = 5, .external_lex_state = 7}, + [165] = {.lex_state = 12, .external_lex_state = 6}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 6}, + [168] = {.lex_state = 5, .external_lex_state = 6}, + [169] = {.lex_state = 5, .external_lex_state = 7}, + [170] = {.lex_state = 5, .external_lex_state = 8}, + [171] = {.lex_state = 12, .external_lex_state = 6}, [172] = {.lex_state = 12, .external_lex_state = 8}, - [173] = {.lex_state = 12, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 7}, + [173] = {.lex_state = 5, .external_lex_state = 8}, + [174] = {.lex_state = 12, .external_lex_state = 7}, [175] = {.lex_state = 5, .external_lex_state = 7}, - [176] = {.lex_state = 5, .external_lex_state = 8}, - [177] = {.lex_state = 12, .external_lex_state = 7}, - [178] = {.lex_state = 11, .external_lex_state = 4}, - [179] = {.lex_state = 5, .external_lex_state = 8}, - [180] = {.lex_state = 12, .external_lex_state = 6}, + [176] = {.lex_state = 11, .external_lex_state = 4}, + [177] = {.lex_state = 12, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 8}, + [179] = {.lex_state = 5, .external_lex_state = 7}, + [180] = {.lex_state = 5, .external_lex_state = 8}, [181] = {.lex_state = 5, .external_lex_state = 7}, - [182] = {.lex_state = 5, .external_lex_state = 8}, - [183] = {.lex_state = 5, .external_lex_state = 8}, - [184] = {.lex_state = 5, .external_lex_state = 7}, + [182] = {.lex_state = 12, .external_lex_state = 2}, + [183] = {.lex_state = 5, .external_lex_state = 7}, + [184] = {.lex_state = 12, .external_lex_state = 8}, [185] = {.lex_state = 5, .external_lex_state = 8}, - [186] = {.lex_state = 12, .external_lex_state = 8}, + [186] = {.lex_state = 5, .external_lex_state = 7}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 52, .external_lex_state = 8}, + [189] = {.lex_state = 52, .external_lex_state = 7}, [190] = {.lex_state = 5, .external_lex_state = 6}, - [191] = {.lex_state = 5, .external_lex_state = 6}, + [191] = {.lex_state = 52, .external_lex_state = 7}, [192] = {.lex_state = 52, .external_lex_state = 8}, - [193] = {.lex_state = 52, .external_lex_state = 7}, - [194] = {.lex_state = 52, .external_lex_state = 7}, - [195] = {.lex_state = 52, .external_lex_state = 8}, - [196] = {.lex_state = 5, .external_lex_state = 6}, + [193] = {.lex_state = 5, .external_lex_state = 6}, + [194] = {.lex_state = 52, .external_lex_state = 2}, + [195] = {.lex_state = 52, .external_lex_state = 7}, + [196] = {.lex_state = 52, .external_lex_state = 8}, [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 7}, - [199] = {.lex_state = 52, .external_lex_state = 8}, - [200] = {.lex_state = 52, .external_lex_state = 2}, - [201] = {.lex_state = 52, .external_lex_state = 2}, - [202] = {.lex_state = 52, .external_lex_state = 7}, - [203] = {.lex_state = 5, .external_lex_state = 6}, + [198] = {.lex_state = 52, .external_lex_state = 2}, + [199] = {.lex_state = 52, .external_lex_state = 2}, + [200] = {.lex_state = 52, .external_lex_state = 7}, + [201] = {.lex_state = 52, .external_lex_state = 7}, + [202] = {.lex_state = 52, .external_lex_state = 8}, + [203] = {.lex_state = 52, .external_lex_state = 7}, [204] = {.lex_state = 52, .external_lex_state = 8}, - [205] = {.lex_state = 52, .external_lex_state = 8}, + [205] = {.lex_state = 52, .external_lex_state = 7}, [206] = {.lex_state = 52, .external_lex_state = 8}, - [207] = {.lex_state = 52, .external_lex_state = 7}, - [208] = {.lex_state = 52, .external_lex_state = 8}, - [209] = {.lex_state = 52, .external_lex_state = 8}, + [207] = {.lex_state = 5, .external_lex_state = 6}, + [208] = {.lex_state = 5, .external_lex_state = 6}, + [209] = {.lex_state = 52, .external_lex_state = 7}, [210] = {.lex_state = 52, .external_lex_state = 7}, - [211] = {.lex_state = 5, .external_lex_state = 6}, - [212] = {.lex_state = 52, .external_lex_state = 7}, - [213] = {.lex_state = 52, .external_lex_state = 8}, - [214] = {.lex_state = 52, .external_lex_state = 7}, - [215] = {.lex_state = 5, .external_lex_state = 6}, - [216] = {.lex_state = 5, .external_lex_state = 6}, + [211] = {.lex_state = 52, .external_lex_state = 7}, + [212] = {.lex_state = 52, .external_lex_state = 8}, + [213] = {.lex_state = 5, .external_lex_state = 6}, + [214] = {.lex_state = 5, .external_lex_state = 6}, + [215] = {.lex_state = 52, .external_lex_state = 8}, + [216] = {.lex_state = 52, .external_lex_state = 8}, [217] = {.lex_state = 52, .external_lex_state = 7}, [218] = {.lex_state = 52, .external_lex_state = 8}, - [219] = {.lex_state = 52, .external_lex_state = 7}, - [220] = {.lex_state = 52, .external_lex_state = 7}, - [221] = {.lex_state = 52, .external_lex_state = 2}, + [219] = {.lex_state = 52, .external_lex_state = 8}, + [220] = {.lex_state = 52, .external_lex_state = 8}, + [221] = {.lex_state = 5, .external_lex_state = 6}, [222] = {.lex_state = 6, .external_lex_state = 4}, [223] = {.lex_state = 6, .external_lex_state = 4}, [224] = {.lex_state = 5, .external_lex_state = 8}, [225] = {.lex_state = 5, .external_lex_state = 8}, [226] = {.lex_state = 5, .external_lex_state = 8}, [227] = {.lex_state = 5, .external_lex_state = 8}, - [228] = {.lex_state = 52, .external_lex_state = 2}, + [228] = {.lex_state = 5, .external_lex_state = 8}, [229] = {.lex_state = 5, .external_lex_state = 8}, - [230] = {.lex_state = 5, .external_lex_state = 8}, + [230] = {.lex_state = 52, .external_lex_state = 2}, [231] = {.lex_state = 5, .external_lex_state = 8}, [232] = {.lex_state = 5, .external_lex_state = 8}, [233] = {.lex_state = 52, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 2}, - [235] = {.lex_state = 5, .external_lex_state = 7}, + [234] = {.lex_state = 5, .external_lex_state = 7}, + [235] = {.lex_state = 5, .external_lex_state = 2}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 52, .external_lex_state = 7}, [239] = {.lex_state = 5, .external_lex_state = 2}, [240] = {.lex_state = 5, .external_lex_state = 2}, [241] = {.lex_state = 5, .external_lex_state = 2}, [242] = {.lex_state = 5, .external_lex_state = 2}, - [243] = {.lex_state = 5, .external_lex_state = 7}, - [244] = {.lex_state = 5, .external_lex_state = 7}, - [245] = {.lex_state = 5, .external_lex_state = 7}, + [243] = {.lex_state = 5, .external_lex_state = 2}, + [244] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 2}, [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 6, .external_lex_state = 2}, - [249] = {.lex_state = 5, .external_lex_state = 7}, + [248] = {.lex_state = 5, .external_lex_state = 7}, + [249] = {.lex_state = 5, .external_lex_state = 2}, [250] = {.lex_state = 5, .external_lex_state = 2}, - [251] = {.lex_state = 5, .external_lex_state = 2}, - [252] = {.lex_state = 5, .external_lex_state = 7}, - [253] = {.lex_state = 5, .external_lex_state = 2}, - [254] = {.lex_state = 5, .external_lex_state = 7}, - [255] = {.lex_state = 52, .external_lex_state = 6}, - [256] = {.lex_state = 5, .external_lex_state = 2}, + [251] = {.lex_state = 5, .external_lex_state = 7}, + [252] = {.lex_state = 52, .external_lex_state = 6}, + [253] = {.lex_state = 6, .external_lex_state = 2}, + [254] = {.lex_state = 6, .external_lex_state = 2}, + [255] = {.lex_state = 5, .external_lex_state = 2}, + [256] = {.lex_state = 5, .external_lex_state = 7}, [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 7}, + [258] = {.lex_state = 5, .external_lex_state = 2}, [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 5, .external_lex_state = 2}, - [261] = {.lex_state = 5, .external_lex_state = 2}, - [262] = {.lex_state = 5, .external_lex_state = 2}, - [263] = {.lex_state = 5, .external_lex_state = 2}, + [260] = {.lex_state = 5, .external_lex_state = 7}, + [261] = {.lex_state = 5, .external_lex_state = 7}, + [262] = {.lex_state = 5, .external_lex_state = 7}, + [263] = {.lex_state = 5, .external_lex_state = 7}, [264] = {.lex_state = 5, .external_lex_state = 2}, - [265] = {.lex_state = 6, .external_lex_state = 2}, + [265] = {.lex_state = 5, .external_lex_state = 2}, [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 2}, + [267] = {.lex_state = 5, .external_lex_state = 7}, [268] = {.lex_state = 5, .external_lex_state = 2}, - [269] = {.lex_state = 52, .external_lex_state = 7}, - [270] = {.lex_state = 5, .external_lex_state = 7}, + [269] = {.lex_state = 5, .external_lex_state = 2}, + [270] = {.lex_state = 5, .external_lex_state = 2}, [271] = {.lex_state = 5, .external_lex_state = 2}, - [272] = {.lex_state = 52, .external_lex_state = 7}, - [273] = {.lex_state = 52, .external_lex_state = 8}, + [272] = {.lex_state = 5, .external_lex_state = 7}, + [273] = {.lex_state = 5, .external_lex_state = 7}, [274] = {.lex_state = 52, .external_lex_state = 7}, - [275] = {.lex_state = 5, .external_lex_state = 7}, + [275] = {.lex_state = 52, .external_lex_state = 7}, [276] = {.lex_state = 5, .external_lex_state = 7}, [277] = {.lex_state = 5, .external_lex_state = 7}, [278] = {.lex_state = 5, .external_lex_state = 7}, [279] = {.lex_state = 52, .external_lex_state = 7}, - [280] = {.lex_state = 5, .external_lex_state = 7}, - [281] = {.lex_state = 5, .external_lex_state = 7}, - [282] = {.lex_state = 52, .external_lex_state = 8}, + [280] = {.lex_state = 52, .external_lex_state = 8}, + [281] = {.lex_state = 52, .external_lex_state = 7}, + [282] = {.lex_state = 5, .external_lex_state = 7}, [283] = {.lex_state = 5, .external_lex_state = 7}, [284] = {.lex_state = 5, .external_lex_state = 7}, - [285] = {.lex_state = 52, .external_lex_state = 7}, + [285] = {.lex_state = 5, .external_lex_state = 7}, [286] = {.lex_state = 5, .external_lex_state = 7}, - [287] = {.lex_state = 52, .external_lex_state = 8}, - [288] = {.lex_state = 52, .external_lex_state = 7}, - [289] = {.lex_state = 5, .external_lex_state = 7}, - [290] = {.lex_state = 52, .external_lex_state = 7}, - [291] = {.lex_state = 52, .external_lex_state = 8}, - [292] = {.lex_state = 52, .external_lex_state = 7}, + [287] = {.lex_state = 52, .external_lex_state = 7}, + [288] = {.lex_state = 52, .external_lex_state = 8}, + [289] = {.lex_state = 52, .external_lex_state = 7}, + [290] = {.lex_state = 5, .external_lex_state = 7}, + [291] = {.lex_state = 5, .external_lex_state = 7}, + [292] = {.lex_state = 5, .external_lex_state = 7}, [293] = {.lex_state = 5, .external_lex_state = 7}, - [294] = {.lex_state = 52, .external_lex_state = 7}, - [295] = {.lex_state = 5, .external_lex_state = 7}, + [294] = {.lex_state = 5, .external_lex_state = 7}, + [295] = {.lex_state = 52, .external_lex_state = 7}, [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 52, .external_lex_state = 8}, - [298] = {.lex_state = 52, .external_lex_state = 7}, - [299] = {.lex_state = 52, .external_lex_state = 7}, + [297] = {.lex_state = 5, .external_lex_state = 7}, + [298] = {.lex_state = 5, .external_lex_state = 7}, + [299] = {.lex_state = 5, .external_lex_state = 7}, [300] = {.lex_state = 5, .external_lex_state = 7}, - [301] = {.lex_state = 52, .external_lex_state = 8}, - [302] = {.lex_state = 5, .external_lex_state = 7}, - [303] = {.lex_state = 5, .external_lex_state = 7}, + [301] = {.lex_state = 52, .external_lex_state = 7}, + [302] = {.lex_state = 52, .external_lex_state = 8}, + [303] = {.lex_state = 52, .external_lex_state = 7}, [304] = {.lex_state = 5, .external_lex_state = 7}, [305] = {.lex_state = 5, .external_lex_state = 7}, [306] = {.lex_state = 5, .external_lex_state = 7}, [307] = {.lex_state = 5, .external_lex_state = 7}, - [308] = {.lex_state = 5, .external_lex_state = 7}, + [308] = {.lex_state = 52, .external_lex_state = 8}, [309] = {.lex_state = 52, .external_lex_state = 7}, - [310] = {.lex_state = 5, .external_lex_state = 7}, - [311] = {.lex_state = 52, .external_lex_state = 8}, + [310] = {.lex_state = 52, .external_lex_state = 8}, + [311] = {.lex_state = 5, .external_lex_state = 7}, [312] = {.lex_state = 5, .external_lex_state = 7}, [313] = {.lex_state = 5, .external_lex_state = 7}, - [314] = {.lex_state = 52, .external_lex_state = 7}, - [315] = {.lex_state = 5, .external_lex_state = 7}, - [316] = {.lex_state = 5, .external_lex_state = 7}, + [314] = {.lex_state = 5, .external_lex_state = 7}, + [315] = {.lex_state = 52, .external_lex_state = 7}, + [316] = {.lex_state = 52, .external_lex_state = 8}, [317] = {.lex_state = 5, .external_lex_state = 7}, [318] = {.lex_state = 5, .external_lex_state = 7}, [319] = {.lex_state = 5, .external_lex_state = 7}, - [320] = {.lex_state = 52, .external_lex_state = 7}, - [321] = {.lex_state = 5, .external_lex_state = 7}, - [322] = {.lex_state = 5, .external_lex_state = 7}, - [323] = {.lex_state = 5, .external_lex_state = 7}, - [324] = {.lex_state = 52, .external_lex_state = 7}, - [325] = {.lex_state = 5, .external_lex_state = 7}, - [326] = {.lex_state = 52, .external_lex_state = 6}, + [320] = {.lex_state = 5, .external_lex_state = 7}, + [321] = {.lex_state = 52, .external_lex_state = 7}, + [322] = {.lex_state = 52, .external_lex_state = 8}, + [323] = {.lex_state = 52, .external_lex_state = 7}, + [324] = {.lex_state = 5, .external_lex_state = 7}, + [325] = {.lex_state = 52, .external_lex_state = 7}, + [326] = {.lex_state = 52, .external_lex_state = 7}, [327] = {.lex_state = 52, .external_lex_state = 8}, [328] = {.lex_state = 52, .external_lex_state = 6}, [329] = {.lex_state = 52, .external_lex_state = 8}, - [330] = {.lex_state = 12, .external_lex_state = 6}, - [331] = {.lex_state = 52, .external_lex_state = 6}, - [332] = {.lex_state = 52, .external_lex_state = 6}, - [333] = {.lex_state = 52, .external_lex_state = 8}, - [334] = {.lex_state = 52, .external_lex_state = 6}, - [335] = {.lex_state = 52, .external_lex_state = 7}, + [330] = {.lex_state = 52, .external_lex_state = 6}, + [331] = {.lex_state = 5, .external_lex_state = 2}, + [332] = {.lex_state = 52, .external_lex_state = 8}, + [333] = {.lex_state = 52, .external_lex_state = 7}, + [334] = {.lex_state = 52, .external_lex_state = 7}, + [335] = {.lex_state = 52, .external_lex_state = 8}, [336] = {.lex_state = 52, .external_lex_state = 7}, - [337] = {.lex_state = 52, .external_lex_state = 7}, + [337] = {.lex_state = 52, .external_lex_state = 6}, [338] = {.lex_state = 52, .external_lex_state = 6}, - [339] = {.lex_state = 52, .external_lex_state = 8}, - [340] = {.lex_state = 52, .external_lex_state = 7}, + [339] = {.lex_state = 52, .external_lex_state = 6}, + [340] = {.lex_state = 52, .external_lex_state = 8}, [341] = {.lex_state = 52, .external_lex_state = 6}, - [342] = {.lex_state = 52, .external_lex_state = 8}, - [343] = {.lex_state = 52, .external_lex_state = 8}, - [344] = {.lex_state = 52, .external_lex_state = 6}, - [345] = {.lex_state = 5, .external_lex_state = 2}, + [342] = {.lex_state = 52, .external_lex_state = 6}, + [343] = {.lex_state = 52, .external_lex_state = 7}, + [344] = {.lex_state = 12, .external_lex_state = 6}, + [345] = {.lex_state = 52, .external_lex_state = 6}, [346] = {.lex_state = 52, .external_lex_state = 7}, - [347] = {.lex_state = 52, .external_lex_state = 7}, + [347] = {.lex_state = 52, .external_lex_state = 8}, [348] = {.lex_state = 52, .external_lex_state = 2}, - [349] = {.lex_state = 52, .external_lex_state = 7}, + [349] = {.lex_state = 52, .external_lex_state = 4}, [350] = {.lex_state = 5, .external_lex_state = 6}, [351] = {.lex_state = 5, .external_lex_state = 6}, [352] = {.lex_state = 5, .external_lex_state = 6}, [353] = {.lex_state = 5, .external_lex_state = 6}, - [354] = {.lex_state = 5, .external_lex_state = 6}, + [354] = {.lex_state = 52, .external_lex_state = 7}, [355] = {.lex_state = 5, .external_lex_state = 6}, [356] = {.lex_state = 52, .external_lex_state = 2}, - [357] = {.lex_state = 52, .external_lex_state = 4}, + [357] = {.lex_state = 5, .external_lex_state = 6}, [358] = {.lex_state = 5, .external_lex_state = 6}, [359] = {.lex_state = 5, .external_lex_state = 6}, - [360] = {.lex_state = 5, .external_lex_state = 6}, + [360] = {.lex_state = 52, .external_lex_state = 4}, [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 52, .external_lex_state = 4}, - [363] = {.lex_state = 5, .external_lex_state = 6}, - [364] = {.lex_state = 52, .external_lex_state = 2}, + [362] = {.lex_state = 5, .external_lex_state = 6}, + [363] = {.lex_state = 52, .external_lex_state = 8}, + [364] = {.lex_state = 5, .external_lex_state = 6}, [365] = {.lex_state = 5, .external_lex_state = 6}, [366] = {.lex_state = 5, .external_lex_state = 6}, [367] = {.lex_state = 5, .external_lex_state = 6}, [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 52, .external_lex_state = 8}, + [369] = {.lex_state = 52, .external_lex_state = 2}, [370] = {.lex_state = 5, .external_lex_state = 6}, [371] = {.lex_state = 52, .external_lex_state = 8}, [372] = {.lex_state = 52, .external_lex_state = 8}, @@ -7845,21 +7845,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 52, .external_lex_state = 8}, [376] = {.lex_state = 52, .external_lex_state = 8}, [377] = {.lex_state = 52, .external_lex_state = 8}, - [378] = {.lex_state = 52, .external_lex_state = 4}, + [378] = {.lex_state = 52, .external_lex_state = 8}, [379] = {.lex_state = 52, .external_lex_state = 8}, - [380] = {.lex_state = 52, .external_lex_state = 8}, - [381] = {.lex_state = 52, .external_lex_state = 8}, - [382] = {.lex_state = 5, .external_lex_state = 2}, + [380] = {.lex_state = 52, .external_lex_state = 4}, + [381] = {.lex_state = 5, .external_lex_state = 2}, + [382] = {.lex_state = 52, .external_lex_state = 8}, [383] = {.lex_state = 52, .external_lex_state = 4}, [384] = {.lex_state = 52, .external_lex_state = 8}, - [385] = {.lex_state = 12, .external_lex_state = 7}, + [385] = {.lex_state = 52, .external_lex_state = 8}, [386] = {.lex_state = 52, .external_lex_state = 8}, [387] = {.lex_state = 52, .external_lex_state = 8}, [388] = {.lex_state = 52, .external_lex_state = 8}, - [389] = {.lex_state = 52, .external_lex_state = 8}, + [389] = {.lex_state = 12, .external_lex_state = 7}, [390] = {.lex_state = 52, .external_lex_state = 8}, [391] = {.lex_state = 52, .external_lex_state = 8}, - [392] = {.lex_state = 52, .external_lex_state = 4}, + [392] = {.lex_state = 52, .external_lex_state = 8}, [393] = {.lex_state = 52, .external_lex_state = 8}, [394] = {.lex_state = 52, .external_lex_state = 8}, [395] = {.lex_state = 52, .external_lex_state = 8}, @@ -7868,10 +7868,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 52, .external_lex_state = 8}, [399] = {.lex_state = 52, .external_lex_state = 8}, [400] = {.lex_state = 52, .external_lex_state = 8}, - [401] = {.lex_state = 12, .external_lex_state = 7}, + [401] = {.lex_state = 52, .external_lex_state = 8}, [402] = {.lex_state = 52, .external_lex_state = 8}, - [403] = {.lex_state = 52, .external_lex_state = 8}, - [404] = {.lex_state = 52, .external_lex_state = 8}, + [403] = {.lex_state = 52, .external_lex_state = 4}, + [404] = {.lex_state = 12, .external_lex_state = 7}, [405] = {.lex_state = 52, .external_lex_state = 8}, [406] = {.lex_state = 52, .external_lex_state = 8}, [407] = {.lex_state = 52, .external_lex_state = 8}, @@ -7879,71 +7879,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 52, .external_lex_state = 2}, [410] = {.lex_state = 52, .external_lex_state = 2}, [411] = {.lex_state = 52, .external_lex_state = 2}, - [412] = {.lex_state = 52, .external_lex_state = 2}, - [413] = {.lex_state = 52, .external_lex_state = 7}, - [414] = {.lex_state = 52, .external_lex_state = 2}, - [415] = {.lex_state = 52, .external_lex_state = 2}, + [412] = {.lex_state = 52, .external_lex_state = 8}, + [413] = {.lex_state = 52, .external_lex_state = 8}, + [414] = {.lex_state = 52, .external_lex_state = 4}, + [415] = {.lex_state = 52, .external_lex_state = 4}, [416] = {.lex_state = 52, .external_lex_state = 2}, - [417] = {.lex_state = 52, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, [418] = {.lex_state = 52, .external_lex_state = 2}, - [419] = {.lex_state = 52, .external_lex_state = 2}, - [420] = {.lex_state = 52, .external_lex_state = 7}, + [419] = {.lex_state = 52, .external_lex_state = 4}, + [420] = {.lex_state = 52, .external_lex_state = 2}, [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 52, .external_lex_state = 2}, - [423] = {.lex_state = 52, .external_lex_state = 2}, + [422] = {.lex_state = 5, .external_lex_state = 8}, + [423] = {.lex_state = 5, .external_lex_state = 2}, [424] = {.lex_state = 52, .external_lex_state = 4}, - [425] = {.lex_state = 12, .external_lex_state = 2}, + [425] = {.lex_state = 52, .external_lex_state = 8}, [426] = {.lex_state = 52, .external_lex_state = 2}, - [427] = {.lex_state = 52, .external_lex_state = 2}, - [428] = {.lex_state = 12, .external_lex_state = 2}, - [429] = {.lex_state = 5, .external_lex_state = 8}, + [427] = {.lex_state = 52, .external_lex_state = 7}, + [428] = {.lex_state = 52, .external_lex_state = 7}, + [429] = {.lex_state = 52, .external_lex_state = 2}, [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 5, .external_lex_state = 2}, - [432] = {.lex_state = 52, .external_lex_state = 2}, + [431] = {.lex_state = 52, .external_lex_state = 2}, + [432] = {.lex_state = 52, .external_lex_state = 8}, [433] = {.lex_state = 52, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 2}, - [435] = {.lex_state = 52, .external_lex_state = 8}, - [436] = {.lex_state = 52, .external_lex_state = 2}, - [437] = {.lex_state = 52, .external_lex_state = 4}, - [438] = {.lex_state = 52, .external_lex_state = 8}, - [439] = {.lex_state = 52, .external_lex_state = 2}, + [434] = {.lex_state = 52, .external_lex_state = 4}, + [435] = {.lex_state = 52, .external_lex_state = 2}, + [436] = {.lex_state = 52, .external_lex_state = 8}, + [437] = {.lex_state = 52, .external_lex_state = 2}, + [438] = {.lex_state = 52, .external_lex_state = 4}, + [439] = {.lex_state = 12, .external_lex_state = 2}, [440] = {.lex_state = 52, .external_lex_state = 2}, [441] = {.lex_state = 52, .external_lex_state = 2}, - [442] = {.lex_state = 52, .external_lex_state = 4}, + [442] = {.lex_state = 52, .external_lex_state = 7}, [443] = {.lex_state = 52, .external_lex_state = 2}, - [444] = {.lex_state = 52, .external_lex_state = 7}, + [444] = {.lex_state = 52, .external_lex_state = 2}, [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 52, .external_lex_state = 8}, - [447] = {.lex_state = 52, .external_lex_state = 8}, + [446] = {.lex_state = 5, .external_lex_state = 7}, + [447] = {.lex_state = 52, .external_lex_state = 2}, [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 52, .external_lex_state = 4}, + [449] = {.lex_state = 52, .external_lex_state = 2}, [450] = {.lex_state = 52, .external_lex_state = 2}, - [451] = {.lex_state = 52, .external_lex_state = 8}, + [451] = {.lex_state = 52, .external_lex_state = 2}, [452] = {.lex_state = 52, .external_lex_state = 2}, [453] = {.lex_state = 52, .external_lex_state = 2}, - [454] = {.lex_state = 52, .external_lex_state = 4}, + [454] = {.lex_state = 52, .external_lex_state = 2}, [455] = {.lex_state = 52, .external_lex_state = 2}, - [456] = {.lex_state = 52, .external_lex_state = 7}, - [457] = {.lex_state = 52, .external_lex_state = 4}, + [456] = {.lex_state = 52, .external_lex_state = 2}, + [457] = {.lex_state = 52, .external_lex_state = 2}, [458] = {.lex_state = 52, .external_lex_state = 2}, - [459] = {.lex_state = 52, .external_lex_state = 2}, - [460] = {.lex_state = 5, .external_lex_state = 7}, - [461] = {.lex_state = 7, .external_lex_state = 9}, + [459] = {.lex_state = 52, .external_lex_state = 7}, + [460] = {.lex_state = 52, .external_lex_state = 2}, + [461] = {.lex_state = 7, .external_lex_state = 4}, [462] = {.lex_state = 52, .external_lex_state = 2}, - [463] = {.lex_state = 52, .external_lex_state = 2}, - [464] = {.lex_state = 7, .external_lex_state = 9}, + [463] = {.lex_state = 7, .external_lex_state = 9}, + [464] = {.lex_state = 52, .external_lex_state = 2}, [465] = {.lex_state = 52, .external_lex_state = 2}, [466] = {.lex_state = 52, .external_lex_state = 2}, - [467] = {.lex_state = 7, .external_lex_state = 4}, + [467] = {.lex_state = 7, .external_lex_state = 9}, [468] = {.lex_state = 52, .external_lex_state = 2}, [469] = {.lex_state = 52, .external_lex_state = 2}, [470] = {.lex_state = 52, .external_lex_state = 2}, [471] = {.lex_state = 52, .external_lex_state = 2}, - [472] = {.lex_state = 7, .external_lex_state = 4}, + [472] = {.lex_state = 52, .external_lex_state = 2}, [473] = {.lex_state = 52, .external_lex_state = 2}, [474] = {.lex_state = 52, .external_lex_state = 2}, [475] = {.lex_state = 52, .external_lex_state = 2}, - [476] = {.lex_state = 52, .external_lex_state = 2}, + [476] = {.lex_state = 7, .external_lex_state = 4}, [477] = {.lex_state = 52, .external_lex_state = 2}, [478] = {.lex_state = 52, .external_lex_state = 2}, [479] = {.lex_state = 52, .external_lex_state = 2}, @@ -7952,8 +7952,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 52, .external_lex_state = 2}, [483] = {.lex_state = 52, .external_lex_state = 2}, [484] = {.lex_state = 52, .external_lex_state = 2}, - [485] = {.lex_state = 52, .external_lex_state = 2}, - [486] = {.lex_state = 52, .external_lex_state = 2}, + [485] = {.lex_state = 53, .external_lex_state = 10}, + [486] = {.lex_state = 54, .external_lex_state = 2}, [487] = {.lex_state = 52, .external_lex_state = 2}, [488] = {.lex_state = 52, .external_lex_state = 2}, [489] = {.lex_state = 52, .external_lex_state = 2}, @@ -7992,8 +7992,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 52, .external_lex_state = 2}, [523] = {.lex_state = 52, .external_lex_state = 2}, [524] = {.lex_state = 52, .external_lex_state = 2}, - [525] = {.lex_state = 53, .external_lex_state = 10}, - [526] = {.lex_state = 54, .external_lex_state = 2}, + [525] = {.lex_state = 52, .external_lex_state = 2}, + [526] = {.lex_state = 52, .external_lex_state = 2}, [527] = {.lex_state = 52, .external_lex_state = 2}, [528] = {.lex_state = 52, .external_lex_state = 2}, [529] = {.lex_state = 52, .external_lex_state = 2}, @@ -8029,16 +8029,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [559] = {.lex_state = 52, .external_lex_state = 2}, [560] = {.lex_state = 52, .external_lex_state = 2}, [561] = {.lex_state = 52, .external_lex_state = 2}, - [562] = {.lex_state = 52, .external_lex_state = 2}, - [563] = {.lex_state = 52, .external_lex_state = 2}, + [562] = {.lex_state = 53, .external_lex_state = 10}, + [563] = {.lex_state = 54, .external_lex_state = 2}, [564] = {.lex_state = 52, .external_lex_state = 2}, - [565] = {.lex_state = 53, .external_lex_state = 11}, + [565] = {.lex_state = 52, .external_lex_state = 2}, [566] = {.lex_state = 52, .external_lex_state = 2}, [567] = {.lex_state = 52, .external_lex_state = 2}, [568] = {.lex_state = 52, .external_lex_state = 2}, [569] = {.lex_state = 52, .external_lex_state = 2}, [570] = {.lex_state = 52, .external_lex_state = 2}, - [571] = {.lex_state = 54, .external_lex_state = 3}, + [571] = {.lex_state = 52, .external_lex_state = 2}, [572] = {.lex_state = 52, .external_lex_state = 2}, [573] = {.lex_state = 52, .external_lex_state = 2}, [574] = {.lex_state = 52, .external_lex_state = 2}, @@ -8050,19 +8050,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [580] = {.lex_state = 52, .external_lex_state = 2}, [581] = {.lex_state = 52, .external_lex_state = 2}, [582] = {.lex_state = 52, .external_lex_state = 2}, - [583] = {.lex_state = 53, .external_lex_state = 11}, + [583] = {.lex_state = 52, .external_lex_state = 2}, [584] = {.lex_state = 52, .external_lex_state = 2}, - [585] = {.lex_state = 54, .external_lex_state = 2}, + [585] = {.lex_state = 52, .external_lex_state = 2}, [586] = {.lex_state = 52, .external_lex_state = 2}, - [587] = {.lex_state = 53, .external_lex_state = 10}, + [587] = {.lex_state = 52, .external_lex_state = 2}, [588] = {.lex_state = 52, .external_lex_state = 2}, [589] = {.lex_state = 52, .external_lex_state = 2}, - [590] = {.lex_state = 52, .external_lex_state = 2}, + [590] = {.lex_state = 53, .external_lex_state = 11}, [591] = {.lex_state = 54, .external_lex_state = 3}, [592] = {.lex_state = 52, .external_lex_state = 2}, [593] = {.lex_state = 52, .external_lex_state = 2}, - [594] = {.lex_state = 52, .external_lex_state = 2}, - [595] = {.lex_state = 52, .external_lex_state = 2}, + [594] = {.lex_state = 53, .external_lex_state = 11}, + [595] = {.lex_state = 54, .external_lex_state = 3}, [596] = {.lex_state = 52, .external_lex_state = 2}, [597] = {.lex_state = 52, .external_lex_state = 2}, [598] = {.lex_state = 52, .external_lex_state = 2}, @@ -8077,34 +8077,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 52, .external_lex_state = 2}, [608] = {.lex_state = 52, .external_lex_state = 2}, [609] = {.lex_state = 7, .external_lex_state = 9}, - [610] = {.lex_state = 53, .external_lex_state = 10}, - [611] = {.lex_state = 53, .external_lex_state = 11}, + [610] = {.lex_state = 52, .external_lex_state = 3}, + [611] = {.lex_state = 52, .external_lex_state = 2}, [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 52, .external_lex_state = 2}, + [613] = {.lex_state = 7, .external_lex_state = 9}, [614] = {.lex_state = 52, .external_lex_state = 2}, - [615] = {.lex_state = 7, .external_lex_state = 9}, - [616] = {.lex_state = 54, .external_lex_state = 2}, - [617] = {.lex_state = 52, .external_lex_state = 3}, + [615] = {.lex_state = 52, .external_lex_state = 3}, + [616] = {.lex_state = 52, .external_lex_state = 2}, + [617] = {.lex_state = 7, .external_lex_state = 9}, [618] = {.lex_state = 52, .external_lex_state = 2}, - [619] = {.lex_state = 7, .external_lex_state = 9}, - [620] = {.lex_state = 54, .external_lex_state = 3}, + [619] = {.lex_state = 52, .external_lex_state = 3}, + [620] = {.lex_state = 52, .external_lex_state = 3}, [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 52, .external_lex_state = 3}, - [623] = {.lex_state = 52, .external_lex_state = 3}, - [624] = {.lex_state = 7, .external_lex_state = 9}, - [625] = {.lex_state = 52, .external_lex_state = 2}, - [626] = {.lex_state = 52, .external_lex_state = 3}, + [622] = {.lex_state = 53, .external_lex_state = 10}, + [623] = {.lex_state = 54, .external_lex_state = 2}, + [624] = {.lex_state = 53, .external_lex_state = 11}, + [625] = {.lex_state = 54, .external_lex_state = 3}, + [626] = {.lex_state = 7, .external_lex_state = 9}, [627] = {.lex_state = 8, .external_lex_state = 9}, - [628] = {.lex_state = 52, .external_lex_state = 2}, + [628] = {.lex_state = 8, .external_lex_state = 9}, [629] = {.lex_state = 8, .external_lex_state = 9}, - [630] = {.lex_state = 8, .external_lex_state = 9}, + [630] = {.lex_state = 52, .external_lex_state = 3}, [631] = {.lex_state = 8, .external_lex_state = 9}, - [632] = {.lex_state = 8, .external_lex_state = 9}, + [632] = {.lex_state = 52, .external_lex_state = 2}, [633] = {.lex_state = 8, .external_lex_state = 9}, [634] = {.lex_state = 8, .external_lex_state = 9}, [635] = {.lex_state = 8, .external_lex_state = 9}, [636] = {.lex_state = 8, .external_lex_state = 9}, - [637] = {.lex_state = 52, .external_lex_state = 3}, + [637] = {.lex_state = 8, .external_lex_state = 9}, [638] = {.lex_state = 8, .external_lex_state = 9}, [639] = {.lex_state = 8, .external_lex_state = 9}, [640] = {.lex_state = 8, .external_lex_state = 9}, @@ -8115,209 +8115,209 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [645] = {.lex_state = 8, .external_lex_state = 9}, [646] = {.lex_state = 8, .external_lex_state = 9}, [647] = {.lex_state = 8, .external_lex_state = 9}, - [648] = {.lex_state = 52, .external_lex_state = 2}, - [649] = {.lex_state = 53, .external_lex_state = 10}, - [650] = {.lex_state = 53, .external_lex_state = 10}, - [651] = {.lex_state = 52, .external_lex_state = 6}, - [652] = {.lex_state = 52, .external_lex_state = 3}, + [648] = {.lex_state = 54, .external_lex_state = 2}, + [649] = {.lex_state = 53, .external_lex_state = 11}, + [650] = {.lex_state = 54, .external_lex_state = 3}, + [651] = {.lex_state = 53, .external_lex_state = 11}, + [652] = {.lex_state = 53, .external_lex_state = 11}, [653] = {.lex_state = 53, .external_lex_state = 11}, [654] = {.lex_state = 53, .external_lex_state = 11}, - [655] = {.lex_state = 54, .external_lex_state = 3}, - [656] = {.lex_state = 54, .external_lex_state = 2}, - [657] = {.lex_state = 53, .external_lex_state = 10}, - [658] = {.lex_state = 54, .external_lex_state = 2}, - [659] = {.lex_state = 54, .external_lex_state = 3}, - [660] = {.lex_state = 54, .external_lex_state = 2}, - [661] = {.lex_state = 52, .external_lex_state = 6}, - [662] = {.lex_state = 52, .external_lex_state = 3}, + [655] = {.lex_state = 52, .external_lex_state = 3}, + [656] = {.lex_state = 52, .external_lex_state = 6}, + [657] = {.lex_state = 54, .external_lex_state = 3}, + [658] = {.lex_state = 53, .external_lex_state = 10}, + [659] = {.lex_state = 52, .external_lex_state = 3}, + [660] = {.lex_state = 54, .external_lex_state = 3}, + [661] = {.lex_state = 54, .external_lex_state = 3}, + [662] = {.lex_state = 54, .external_lex_state = 3}, [663] = {.lex_state = 54, .external_lex_state = 3}, - [664] = {.lex_state = 53, .external_lex_state = 11}, - [665] = {.lex_state = 54, .external_lex_state = 3}, - [666] = {.lex_state = 54, .external_lex_state = 2}, + [664] = {.lex_state = 53, .external_lex_state = 10}, + [665] = {.lex_state = 53, .external_lex_state = 11}, + [666] = {.lex_state = 54, .external_lex_state = 3}, [667] = {.lex_state = 53, .external_lex_state = 10}, - [668] = {.lex_state = 52, .external_lex_state = 2}, - [669] = {.lex_state = 54, .external_lex_state = 3}, - [670] = {.lex_state = 52, .external_lex_state = 3}, - [671] = {.lex_state = 53, .external_lex_state = 10}, - [672] = {.lex_state = 52, .external_lex_state = 3}, - [673] = {.lex_state = 53, .external_lex_state = 11}, - [674] = {.lex_state = 54, .external_lex_state = 2}, - [675] = {.lex_state = 54, .external_lex_state = 3}, - [676] = {.lex_state = 53, .external_lex_state = 10}, - [677] = {.lex_state = 53, .external_lex_state = 10}, - [678] = {.lex_state = 54, .external_lex_state = 3}, - [679] = {.lex_state = 54, .external_lex_state = 2}, + [668] = {.lex_state = 53, .external_lex_state = 11}, + [669] = {.lex_state = 53, .external_lex_state = 10}, + [670] = {.lex_state = 54, .external_lex_state = 3}, + [671] = {.lex_state = 52, .external_lex_state = 2}, + [672] = {.lex_state = 53, .external_lex_state = 11}, + [673] = {.lex_state = 53, .external_lex_state = 10}, + [674] = {.lex_state = 53, .external_lex_state = 10}, + [675] = {.lex_state = 53, .external_lex_state = 10}, + [676] = {.lex_state = 53, .external_lex_state = 11}, + [677] = {.lex_state = 54, .external_lex_state = 3}, + [678] = {.lex_state = 54, .external_lex_state = 2}, + [679] = {.lex_state = 53, .external_lex_state = 10}, [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 52, .external_lex_state = 3}, - [682] = {.lex_state = 53, .external_lex_state = 11}, + [681] = {.lex_state = 53, .external_lex_state = 10}, + [682] = {.lex_state = 54, .external_lex_state = 2}, [683] = {.lex_state = 52, .external_lex_state = 2}, - [684] = {.lex_state = 53, .external_lex_state = 11}, + [684] = {.lex_state = 54, .external_lex_state = 2}, [685] = {.lex_state = 53, .external_lex_state = 10}, - [686] = {.lex_state = 53, .external_lex_state = 11}, - [687] = {.lex_state = 54, .external_lex_state = 2}, - [688] = {.lex_state = 52, .external_lex_state = 2}, - [689] = {.lex_state = 54, .external_lex_state = 3}, - [690] = {.lex_state = 54, .external_lex_state = 3}, - [691] = {.lex_state = 53, .external_lex_state = 10}, - [692] = {.lex_state = 53, .external_lex_state = 11}, - [693] = {.lex_state = 52, .external_lex_state = 2}, - [694] = {.lex_state = 53, .external_lex_state = 10}, - [695] = {.lex_state = 53, .external_lex_state = 11}, - [696] = {.lex_state = 53, .external_lex_state = 11}, - [697] = {.lex_state = 54, .external_lex_state = 2}, + [686] = {.lex_state = 54, .external_lex_state = 2}, + [687] = {.lex_state = 53, .external_lex_state = 10}, + [688] = {.lex_state = 54, .external_lex_state = 2}, + [689] = {.lex_state = 52, .external_lex_state = 3}, + [690] = {.lex_state = 52, .external_lex_state = 6}, + [691] = {.lex_state = 54, .external_lex_state = 2}, + [692] = {.lex_state = 52, .external_lex_state = 2}, + [693] = {.lex_state = 52, .external_lex_state = 3}, + [694] = {.lex_state = 54, .external_lex_state = 2}, + [695] = {.lex_state = 52, .external_lex_state = 3}, + [696] = {.lex_state = 52, .external_lex_state = 2}, + [697] = {.lex_state = 52, .external_lex_state = 2}, [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 10}, + [699] = {.lex_state = 53, .external_lex_state = 11}, [700] = {.lex_state = 52, .external_lex_state = 2}, - [701] = {.lex_state = 52, .external_lex_state = 3}, + [701] = {.lex_state = 52, .external_lex_state = 2}, [702] = {.lex_state = 52, .external_lex_state = 2}, - [703] = {.lex_state = 52, .external_lex_state = 3}, + [703] = {.lex_state = 52, .external_lex_state = 2}, [704] = {.lex_state = 52, .external_lex_state = 2}, [705] = {.lex_state = 52, .external_lex_state = 2}, [706] = {.lex_state = 52, .external_lex_state = 2}, - [707] = {.lex_state = 52, .external_lex_state = 2}, + [707] = {.lex_state = 52, .external_lex_state = 3}, [708] = {.lex_state = 52, .external_lex_state = 3}, [709] = {.lex_state = 52, .external_lex_state = 2}, - [710] = {.lex_state = 52, .external_lex_state = 2}, - [711] = {.lex_state = 52, .external_lex_state = 3}, + [710] = {.lex_state = 52, .external_lex_state = 3}, + [711] = {.lex_state = 52, .external_lex_state = 2}, [712] = {.lex_state = 52, .external_lex_state = 3}, - [713] = {.lex_state = 52, .external_lex_state = 2}, - [714] = {.lex_state = 52, .external_lex_state = 3}, - [715] = {.lex_state = 52, .external_lex_state = 3}, + [713] = {.lex_state = 52, .external_lex_state = 3}, + [714] = {.lex_state = 52, .external_lex_state = 2}, + [715] = {.lex_state = 52, .external_lex_state = 2}, [716] = {.lex_state = 52, .external_lex_state = 3}, - [717] = {.lex_state = 52, .external_lex_state = 2}, + [717] = {.lex_state = 52, .external_lex_state = 3}, [718] = {.lex_state = 52, .external_lex_state = 3}, - [719] = {.lex_state = 52, .external_lex_state = 2}, + [719] = {.lex_state = 52, .external_lex_state = 3}, [720] = {.lex_state = 52, .external_lex_state = 3}, [721] = {.lex_state = 52, .external_lex_state = 3}, - [722] = {.lex_state = 52, .external_lex_state = 3}, + [722] = {.lex_state = 52, .external_lex_state = 7}, [723] = {.lex_state = 52, .external_lex_state = 2}, - [724] = {.lex_state = 52, .external_lex_state = 3}, + [724] = {.lex_state = 52, .external_lex_state = 7}, [725] = {.lex_state = 52, .external_lex_state = 2}, - [726] = {.lex_state = 52, .external_lex_state = 7}, - [727] = {.lex_state = 52, .external_lex_state = 7}, - [728] = {.lex_state = 52, .external_lex_state = 2}, - [729] = {.lex_state = 52, .external_lex_state = 3}, - [730] = {.lex_state = 52, .external_lex_state = 3}, + [726] = {.lex_state = 52, .external_lex_state = 3}, + [727] = {.lex_state = 52, .external_lex_state = 3}, + [728] = {.lex_state = 52, .external_lex_state = 3}, + [729] = {.lex_state = 52, .external_lex_state = 2}, + [730] = {.lex_state = 52, .external_lex_state = 2}, [731] = {.lex_state = 52, .external_lex_state = 3}, - [732] = {.lex_state = 52, .external_lex_state = 3}, + [732] = {.lex_state = 52, .external_lex_state = 2}, [733] = {.lex_state = 52, .external_lex_state = 2}, [734] = {.lex_state = 52, .external_lex_state = 2}, - [735] = {.lex_state = 52, .external_lex_state = 3}, + [735] = {.lex_state = 52, .external_lex_state = 2}, [736] = {.lex_state = 52, .external_lex_state = 3}, - [737] = {.lex_state = 52, .external_lex_state = 3}, - [738] = {.lex_state = 52, .external_lex_state = 3}, - [739] = {.lex_state = 52, .external_lex_state = 8}, - [740] = {.lex_state = 52, .external_lex_state = 3}, - [741] = {.lex_state = 52, .external_lex_state = 2}, + [737] = {.lex_state = 52, .external_lex_state = 2}, + [738] = {.lex_state = 52, .external_lex_state = 2}, + [739] = {.lex_state = 52, .external_lex_state = 3}, + [740] = {.lex_state = 52, .external_lex_state = 2}, + [741] = {.lex_state = 52, .external_lex_state = 3}, [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 3}, + [743] = {.lex_state = 52, .external_lex_state = 2}, [744] = {.lex_state = 52, .external_lex_state = 2}, [745] = {.lex_state = 52, .external_lex_state = 2}, - [746] = {.lex_state = 52, .external_lex_state = 3}, - [747] = {.lex_state = 52, .external_lex_state = 3}, + [746] = {.lex_state = 52, .external_lex_state = 2}, + [747] = {.lex_state = 52, .external_lex_state = 2}, [748] = {.lex_state = 52, .external_lex_state = 2}, [749] = {.lex_state = 52, .external_lex_state = 2}, [750] = {.lex_state = 52, .external_lex_state = 2}, [751] = {.lex_state = 52, .external_lex_state = 2}, - [752] = {.lex_state = 52, .external_lex_state = 2}, + [752] = {.lex_state = 52, .external_lex_state = 3}, [753] = {.lex_state = 52, .external_lex_state = 2}, [754] = {.lex_state = 52, .external_lex_state = 3}, [755] = {.lex_state = 52, .external_lex_state = 2}, [756] = {.lex_state = 52, .external_lex_state = 2}, [757] = {.lex_state = 52, .external_lex_state = 2}, - [758] = {.lex_state = 52, .external_lex_state = 3}, + [758] = {.lex_state = 52, .external_lex_state = 2}, [759] = {.lex_state = 52, .external_lex_state = 2}, [760] = {.lex_state = 52, .external_lex_state = 2}, - [761] = {.lex_state = 52, .external_lex_state = 2}, + [761] = {.lex_state = 52, .external_lex_state = 3}, [762] = {.lex_state = 52, .external_lex_state = 2}, - [763] = {.lex_state = 52, .external_lex_state = 3}, + [763] = {.lex_state = 52, .external_lex_state = 2}, [764] = {.lex_state = 52, .external_lex_state = 2}, - [765] = {.lex_state = 52, .external_lex_state = 7}, - [766] = {.lex_state = 52, .external_lex_state = 7}, - [767] = {.lex_state = 52, .external_lex_state = 3}, + [765] = {.lex_state = 52, .external_lex_state = 2}, + [766] = {.lex_state = 52, .external_lex_state = 2}, + [767] = {.lex_state = 52, .external_lex_state = 7}, [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 2}, - [770] = {.lex_state = 52, .external_lex_state = 2}, - [771] = {.lex_state = 52, .external_lex_state = 3}, - [772] = {.lex_state = 52, .external_lex_state = 3}, - [773] = {.lex_state = 52, .external_lex_state = 3}, - [774] = {.lex_state = 52, .external_lex_state = 3}, + [769] = {.lex_state = 52, .external_lex_state = 3}, + [770] = {.lex_state = 52, .external_lex_state = 3}, + [771] = {.lex_state = 52, .external_lex_state = 2}, + [772] = {.lex_state = 52, .external_lex_state = 2}, + [773] = {.lex_state = 52, .external_lex_state = 2}, + [774] = {.lex_state = 52, .external_lex_state = 2}, [775] = {.lex_state = 52, .external_lex_state = 2}, - [776] = {.lex_state = 52, .external_lex_state = 3}, + [776] = {.lex_state = 52, .external_lex_state = 2}, [777] = {.lex_state = 52, .external_lex_state = 2}, [778] = {.lex_state = 52, .external_lex_state = 2}, - [779] = {.lex_state = 52, .external_lex_state = 3}, - [780] = {.lex_state = 52, .external_lex_state = 2}, - [781] = {.lex_state = 52, .external_lex_state = 3}, - [782] = {.lex_state = 52, .external_lex_state = 3}, + [779] = {.lex_state = 52, .external_lex_state = 2}, + [780] = {.lex_state = 52, .external_lex_state = 7}, + [781] = {.lex_state = 52, .external_lex_state = 2}, + [782] = {.lex_state = 52, .external_lex_state = 2}, [783] = {.lex_state = 52, .external_lex_state = 2}, - [784] = {.lex_state = 52, .external_lex_state = 3}, - [785] = {.lex_state = 52, .external_lex_state = 3}, + [784] = {.lex_state = 52, .external_lex_state = 2}, + [785] = {.lex_state = 52, .external_lex_state = 2}, [786] = {.lex_state = 52, .external_lex_state = 2}, - [787] = {.lex_state = 52, .external_lex_state = 2}, + [787] = {.lex_state = 52, .external_lex_state = 3}, [788] = {.lex_state = 52, .external_lex_state = 3}, - [789] = {.lex_state = 52, .external_lex_state = 3}, + [789] = {.lex_state = 52, .external_lex_state = 2}, [790] = {.lex_state = 52, .external_lex_state = 3}, [791] = {.lex_state = 52, .external_lex_state = 2}, - [792] = {.lex_state = 52, .external_lex_state = 3}, + [792] = {.lex_state = 52, .external_lex_state = 2}, [793] = {.lex_state = 52, .external_lex_state = 2}, [794] = {.lex_state = 52, .external_lex_state = 2}, [795] = {.lex_state = 52, .external_lex_state = 3}, - [796] = {.lex_state = 52, .external_lex_state = 2}, + [796] = {.lex_state = 52, .external_lex_state = 8}, [797] = {.lex_state = 52, .external_lex_state = 2}, [798] = {.lex_state = 52, .external_lex_state = 2}, - [799] = {.lex_state = 52, .external_lex_state = 2}, - [800] = {.lex_state = 52, .external_lex_state = 2}, - [801] = {.lex_state = 52, .external_lex_state = 2}, - [802] = {.lex_state = 52, .external_lex_state = 2}, + [799] = {.lex_state = 52, .external_lex_state = 8}, + [800] = {.lex_state = 52, .external_lex_state = 3}, + [801] = {.lex_state = 52, .external_lex_state = 3}, + [802] = {.lex_state = 52, .external_lex_state = 3}, [803] = {.lex_state = 52, .external_lex_state = 3}, [804] = {.lex_state = 52, .external_lex_state = 2}, - [805] = {.lex_state = 52, .external_lex_state = 3}, + [805] = {.lex_state = 52, .external_lex_state = 2}, [806] = {.lex_state = 52, .external_lex_state = 3}, [807] = {.lex_state = 52, .external_lex_state = 3}, - [808] = {.lex_state = 52, .external_lex_state = 2}, - [809] = {.lex_state = 52, .external_lex_state = 3}, + [808] = {.lex_state = 52, .external_lex_state = 3}, + [809] = {.lex_state = 52, .external_lex_state = 2}, [810] = {.lex_state = 52, .external_lex_state = 2}, - [811] = {.lex_state = 52, .external_lex_state = 2}, + [811] = {.lex_state = 52, .external_lex_state = 3}, [812] = {.lex_state = 52, .external_lex_state = 3}, [813] = {.lex_state = 52, .external_lex_state = 3}, [814] = {.lex_state = 52, .external_lex_state = 3}, [815] = {.lex_state = 52, .external_lex_state = 3}, [816] = {.lex_state = 52, .external_lex_state = 3}, [817] = {.lex_state = 52, .external_lex_state = 2}, - [818] = {.lex_state = 52, .external_lex_state = 2}, - [819] = {.lex_state = 52, .external_lex_state = 2}, - [820] = {.lex_state = 52, .external_lex_state = 2}, + [818] = {.lex_state = 52, .external_lex_state = 3}, + [819] = {.lex_state = 52, .external_lex_state = 3}, + [820] = {.lex_state = 52, .external_lex_state = 3}, [821] = {.lex_state = 52, .external_lex_state = 3}, - [822] = {.lex_state = 52, .external_lex_state = 2}, - [823] = {.lex_state = 52, .external_lex_state = 2}, + [822] = {.lex_state = 52, .external_lex_state = 3}, + [823] = {.lex_state = 52, .external_lex_state = 3}, [824] = {.lex_state = 52, .external_lex_state = 3}, [825] = {.lex_state = 52, .external_lex_state = 3}, - [826] = {.lex_state = 52, .external_lex_state = 2}, - [827] = {.lex_state = 52, .external_lex_state = 2}, - [828] = {.lex_state = 52, .external_lex_state = 2}, - [829] = {.lex_state = 52, .external_lex_state = 2}, - [830] = {.lex_state = 52, .external_lex_state = 2}, - [831] = {.lex_state = 52, .external_lex_state = 2}, + [826] = {.lex_state = 52, .external_lex_state = 3}, + [827] = {.lex_state = 52, .external_lex_state = 3}, + [828] = {.lex_state = 52, .external_lex_state = 3}, + [829] = {.lex_state = 52, .external_lex_state = 3}, + [830] = {.lex_state = 52, .external_lex_state = 3}, + [831] = {.lex_state = 52, .external_lex_state = 3}, [832] = {.lex_state = 52, .external_lex_state = 3}, [833] = {.lex_state = 52, .external_lex_state = 3}, - [834] = {.lex_state = 52, .external_lex_state = 2}, - [835] = {.lex_state = 52, .external_lex_state = 2}, - [836] = {.lex_state = 52, .external_lex_state = 2}, + [834] = {.lex_state = 52, .external_lex_state = 3}, + [835] = {.lex_state = 52, .external_lex_state = 3}, + [836] = {.lex_state = 52, .external_lex_state = 3}, [837] = {.lex_state = 52, .external_lex_state = 3}, - [838] = {.lex_state = 52, .external_lex_state = 2}, + [838] = {.lex_state = 52, .external_lex_state = 3}, [839] = {.lex_state = 52, .external_lex_state = 3}, - [840] = {.lex_state = 52, .external_lex_state = 3}, - [841] = {.lex_state = 52, .external_lex_state = 2}, + [840] = {.lex_state = 52, .external_lex_state = 2}, + [841] = {.lex_state = 52, .external_lex_state = 3}, [842] = {.lex_state = 52, .external_lex_state = 3}, [843] = {.lex_state = 52, .external_lex_state = 3}, [844] = {.lex_state = 52, .external_lex_state = 2}, [845] = {.lex_state = 52, .external_lex_state = 2}, - [846] = {.lex_state = 52, .external_lex_state = 2}, - [847] = {.lex_state = 52, .external_lex_state = 8}, - [848] = {.lex_state = 52, .external_lex_state = 3}, - [849] = {.lex_state = 52, .external_lex_state = 3}, - [850] = {.lex_state = 52, .external_lex_state = 3}, + [846] = {.lex_state = 52, .external_lex_state = 3}, + [847] = {.lex_state = 52, .external_lex_state = 3}, + [848] = {.lex_state = 52, .external_lex_state = 2}, + [849] = {.lex_state = 52, .external_lex_state = 2}, + [850] = {.lex_state = 52, .external_lex_state = 2}, [851] = {.lex_state = 52, .external_lex_state = 2}, [852] = {.lex_state = 52, .external_lex_state = 2}, [853] = {.lex_state = 52, .external_lex_state = 2}, @@ -8327,12 +8327,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 52, .external_lex_state = 2}, [858] = {.lex_state = 52, .external_lex_state = 2}, [859] = {.lex_state = 52, .external_lex_state = 7}, - [860] = {.lex_state = 13, .external_lex_state = 9}, + [860] = {.lex_state = 52, .external_lex_state = 2}, [861] = {.lex_state = 52, .external_lex_state = 2}, [862] = {.lex_state = 52, .external_lex_state = 2}, [863] = {.lex_state = 52, .external_lex_state = 2}, [864] = {.lex_state = 52, .external_lex_state = 2}, - [865] = {.lex_state = 52, .external_lex_state = 2}, + [865] = {.lex_state = 13, .external_lex_state = 9}, [866] = {.lex_state = 52, .external_lex_state = 2}, [867] = {.lex_state = 52, .external_lex_state = 2}, [868] = {.lex_state = 52, .external_lex_state = 2}, @@ -8371,15 +8371,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [901] = {.lex_state = 52, .external_lex_state = 2}, [902] = {.lex_state = 52, .external_lex_state = 2}, [903] = {.lex_state = 52, .external_lex_state = 2}, - [904] = {.lex_state = 13, .external_lex_state = 12}, + [904] = {.lex_state = 52, .external_lex_state = 2}, [905] = {.lex_state = 52, .external_lex_state = 2}, [906] = {.lex_state = 52, .external_lex_state = 2}, [907] = {.lex_state = 52, .external_lex_state = 2}, [908] = {.lex_state = 52, .external_lex_state = 2}, - [909] = {.lex_state = 52, .external_lex_state = 2}, + [909] = {.lex_state = 13, .external_lex_state = 12}, [910] = {.lex_state = 52, .external_lex_state = 2}, [911] = {.lex_state = 52, .external_lex_state = 2}, - [912] = {.lex_state = 52, .external_lex_state = 2}, + [912] = {.lex_state = 13, .external_lex_state = 12}, [913] = {.lex_state = 52, .external_lex_state = 2}, [914] = {.lex_state = 52, .external_lex_state = 2}, [915] = {.lex_state = 52, .external_lex_state = 2}, @@ -8413,7 +8413,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 52, .external_lex_state = 2}, [944] = {.lex_state = 52, .external_lex_state = 2}, [945] = {.lex_state = 52, .external_lex_state = 2}, - [946] = {.lex_state = 13, .external_lex_state = 12}, + [946] = {.lex_state = 52, .external_lex_state = 2}, [947] = {.lex_state = 52, .external_lex_state = 2}, [948] = {.lex_state = 52, .external_lex_state = 2}, [949] = {.lex_state = 52, .external_lex_state = 2}, @@ -8431,201 +8431,201 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 52, .external_lex_state = 2}, [962] = {.lex_state = 52, .external_lex_state = 2}, [963] = {.lex_state = 13, .external_lex_state = 13}, - [964] = {.lex_state = 13, .external_lex_state = 14}, - [965] = {.lex_state = 13, .external_lex_state = 13}, - [966] = {.lex_state = 13, .external_lex_state = 4}, - [967] = {.lex_state = 13, .external_lex_state = 4}, - [968] = {.lex_state = 13, .external_lex_state = 15}, + [964] = {.lex_state = 13, .external_lex_state = 4}, + [965] = {.lex_state = 13, .external_lex_state = 14}, + [966] = {.lex_state = 13, .external_lex_state = 9}, + [967] = {.lex_state = 13, .external_lex_state = 13}, + [968] = {.lex_state = 13, .external_lex_state = 4}, [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 9}, - [971] = {.lex_state = 13, .external_lex_state = 9}, - [972] = {.lex_state = 13, .external_lex_state = 9}, - [973] = {.lex_state = 13, .external_lex_state = 6}, + [970] = {.lex_state = 13, .external_lex_state = 15}, + [971] = {.lex_state = 13, .external_lex_state = 6}, + [972] = {.lex_state = 13, .external_lex_state = 6}, + [973] = {.lex_state = 13, .external_lex_state = 9}, [974] = {.lex_state = 13, .external_lex_state = 9}, - [975] = {.lex_state = 13, .external_lex_state = 9}, - [976] = {.lex_state = 13, .external_lex_state = 9}, + [975] = {.lex_state = 13, .external_lex_state = 6}, + [976] = {.lex_state = 13, .external_lex_state = 14}, [977] = {.lex_state = 13, .external_lex_state = 9}, - [978] = {.lex_state = 13, .external_lex_state = 9}, - [979] = {.lex_state = 13, .external_lex_state = 14}, - [980] = {.lex_state = 13, .external_lex_state = 6}, - [981] = {.lex_state = 13, .external_lex_state = 6}, - [982] = {.lex_state = 13, .external_lex_state = 6}, - [983] = {.lex_state = 13, .external_lex_state = 6}, - [984] = {.lex_state = 13, .external_lex_state = 9}, + [978] = {.lex_state = 13, .external_lex_state = 6}, + [979] = {.lex_state = 13, .external_lex_state = 6}, + [980] = {.lex_state = 13, .external_lex_state = 9}, + [981] = {.lex_state = 13, .external_lex_state = 9}, + [982] = {.lex_state = 13, .external_lex_state = 9}, + [983] = {.lex_state = 13, .external_lex_state = 9}, + [984] = {.lex_state = 13, .external_lex_state = 6}, [985] = {.lex_state = 13, .external_lex_state = 9}, - [986] = {.lex_state = 13, .external_lex_state = 6}, + [986] = {.lex_state = 13, .external_lex_state = 9}, [987] = {.lex_state = 13, .external_lex_state = 9}, - [988] = {.lex_state = 13, .external_lex_state = 7}, + [988] = {.lex_state = 13, .external_lex_state = 12}, [989] = {.lex_state = 13, .external_lex_state = 12}, [990] = {.lex_state = 13, .external_lex_state = 12}, - [991] = {.lex_state = 13, .external_lex_state = 13}, + [991] = {.lex_state = 13, .external_lex_state = 12}, [992] = {.lex_state = 13, .external_lex_state = 12}, - [993] = {.lex_state = 13, .external_lex_state = 12}, + [993] = {.lex_state = 13, .external_lex_state = 2}, [994] = {.lex_state = 13, .external_lex_state = 12}, - [995] = {.lex_state = 13, .external_lex_state = 2}, - [996] = {.lex_state = 13, .external_lex_state = 12}, - [997] = {.lex_state = 13, .external_lex_state = 12}, + [995] = {.lex_state = 13, .external_lex_state = 7}, + [996] = {.lex_state = 13, .external_lex_state = 8}, + [997] = {.lex_state = 13, .external_lex_state = 4}, [998] = {.lex_state = 13, .external_lex_state = 12}, [999] = {.lex_state = 13, .external_lex_state = 12}, [1000] = {.lex_state = 13, .external_lex_state = 12}, - [1001] = {.lex_state = 13, .external_lex_state = 12}, + [1001] = {.lex_state = 13, .external_lex_state = 8}, [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 7}, - [1004] = {.lex_state = 13, .external_lex_state = 4}, + [1003] = {.lex_state = 13, .external_lex_state = 12}, + [1004] = {.lex_state = 13, .external_lex_state = 8}, [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 14, .external_lex_state = 9}, - [1007] = {.lex_state = 13, .external_lex_state = 7}, - [1008] = {.lex_state = 14, .external_lex_state = 9}, + [1006] = {.lex_state = 13, .external_lex_state = 2}, + [1007] = {.lex_state = 13, .external_lex_state = 12}, + [1008] = {.lex_state = 13, .external_lex_state = 14}, [1009] = {.lex_state = 14, .external_lex_state = 9}, - [1010] = {.lex_state = 13, .external_lex_state = 12}, - [1011] = {.lex_state = 13, .external_lex_state = 8}, - [1012] = {.lex_state = 13, .external_lex_state = 8}, + [1010] = {.lex_state = 13, .external_lex_state = 2}, + [1011] = {.lex_state = 13, .external_lex_state = 12}, + [1012] = {.lex_state = 13, .external_lex_state = 12}, [1013] = {.lex_state = 13, .external_lex_state = 12}, [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 12}, + [1015] = {.lex_state = 13, .external_lex_state = 7}, [1016] = {.lex_state = 13, .external_lex_state = 12}, [1017] = {.lex_state = 13, .external_lex_state = 12}, [1018] = {.lex_state = 13, .external_lex_state = 12}, [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 12}, + [1020] = {.lex_state = 13, .external_lex_state = 7}, [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 8}, - [1023] = {.lex_state = 13, .external_lex_state = 12}, - [1024] = {.lex_state = 13, .external_lex_state = 7}, - [1025] = {.lex_state = 13, .external_lex_state = 7}, - [1026] = {.lex_state = 13, .external_lex_state = 7}, + [1022] = {.lex_state = 13, .external_lex_state = 7}, + [1023] = {.lex_state = 14, .external_lex_state = 9}, + [1024] = {.lex_state = 13, .external_lex_state = 12}, + [1025] = {.lex_state = 13, .external_lex_state = 12}, + [1026] = {.lex_state = 13, .external_lex_state = 12}, [1027] = {.lex_state = 13, .external_lex_state = 4}, - [1028] = {.lex_state = 13, .external_lex_state = 14}, - [1029] = {.lex_state = 13, .external_lex_state = 12}, - [1030] = {.lex_state = 13, .external_lex_state = 12}, - [1031] = {.lex_state = 13, .external_lex_state = 2}, + [1028] = {.lex_state = 13, .external_lex_state = 7}, + [1029] = {.lex_state = 13, .external_lex_state = 7}, + [1030] = {.lex_state = 13, .external_lex_state = 13}, + [1031] = {.lex_state = 13, .external_lex_state = 12}, [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 2}, - [1034] = {.lex_state = 13, .external_lex_state = 12}, + [1033] = {.lex_state = 13, .external_lex_state = 12}, + [1034] = {.lex_state = 14, .external_lex_state = 9}, [1035] = {.lex_state = 13, .external_lex_state = 9}, [1036] = {.lex_state = 13, .external_lex_state = 13}, - [1037] = {.lex_state = 13, .external_lex_state = 15}, - [1038] = {.lex_state = 13, .external_lex_state = 15}, - [1039] = {.lex_state = 13, .external_lex_state = 15}, - [1040] = {.lex_state = 14, .external_lex_state = 12}, - [1041] = {.lex_state = 14, .external_lex_state = 12}, - [1042] = {.lex_state = 14, .external_lex_state = 12}, - [1043] = {.lex_state = 13, .external_lex_state = 15}, - [1044] = {.lex_state = 13, .external_lex_state = 15}, + [1037] = {.lex_state = 13, .external_lex_state = 9}, + [1038] = {.lex_state = 13, .external_lex_state = 9}, + [1039] = {.lex_state = 13, .external_lex_state = 9}, + [1040] = {.lex_state = 13, .external_lex_state = 9}, + [1041] = {.lex_state = 13, .external_lex_state = 9}, + [1042] = {.lex_state = 13, .external_lex_state = 9}, + [1043] = {.lex_state = 13, .external_lex_state = 9}, + [1044] = {.lex_state = 14, .external_lex_state = 12}, [1045] = {.lex_state = 13, .external_lex_state = 9}, [1046] = {.lex_state = 13, .external_lex_state = 9}, - [1047] = {.lex_state = 13, .external_lex_state = 9}, - [1048] = {.lex_state = 13, .external_lex_state = 9}, + [1047] = {.lex_state = 14, .external_lex_state = 12}, + [1048] = {.lex_state = 14, .external_lex_state = 12}, [1049] = {.lex_state = 14, .external_lex_state = 12}, - [1050] = {.lex_state = 13, .external_lex_state = 6}, - [1051] = {.lex_state = 14, .external_lex_state = 12}, - [1052] = {.lex_state = 14, .external_lex_state = 13}, - [1053] = {.lex_state = 13, .external_lex_state = 9}, - [1054] = {.lex_state = 13, .external_lex_state = 8}, + [1050] = {.lex_state = 13, .external_lex_state = 15}, + [1051] = {.lex_state = 13, .external_lex_state = 15}, + [1052] = {.lex_state = 14, .external_lex_state = 12}, + [1053] = {.lex_state = 14, .external_lex_state = 12}, + [1054] = {.lex_state = 14, .external_lex_state = 12}, [1055] = {.lex_state = 13, .external_lex_state = 9}, - [1056] = {.lex_state = 13, .external_lex_state = 9}, - [1057] = {.lex_state = 13, .external_lex_state = 9}, - [1058] = {.lex_state = 13, .external_lex_state = 9}, - [1059] = {.lex_state = 13, .external_lex_state = 9}, - [1060] = {.lex_state = 13, .external_lex_state = 9}, - [1061] = {.lex_state = 13, .external_lex_state = 9}, - [1062] = {.lex_state = 13, .external_lex_state = 9}, - [1063] = {.lex_state = 13, .external_lex_state = 9}, - [1064] = {.lex_state = 14, .external_lex_state = 12}, + [1056] = {.lex_state = 13, .external_lex_state = 15}, + [1057] = {.lex_state = 13, .external_lex_state = 15}, + [1058] = {.lex_state = 13, .external_lex_state = 15}, + [1059] = {.lex_state = 13, .external_lex_state = 15}, + [1060] = {.lex_state = 13, .external_lex_state = 15}, + [1061] = {.lex_state = 13, .external_lex_state = 15}, + [1062] = {.lex_state = 13, .external_lex_state = 15}, + [1063] = {.lex_state = 13, .external_lex_state = 15}, + [1064] = {.lex_state = 13, .external_lex_state = 9}, [1065] = {.lex_state = 13, .external_lex_state = 9}, [1066] = {.lex_state = 13, .external_lex_state = 9}, - [1067] = {.lex_state = 14, .external_lex_state = 12}, - [1068] = {.lex_state = 14, .external_lex_state = 12}, - [1069] = {.lex_state = 13, .external_lex_state = 8}, - [1070] = {.lex_state = 13, .external_lex_state = 9}, + [1067] = {.lex_state = 13, .external_lex_state = 9}, + [1068] = {.lex_state = 13, .external_lex_state = 9}, + [1069] = {.lex_state = 13, .external_lex_state = 9}, + [1070] = {.lex_state = 14, .external_lex_state = 12}, [1071] = {.lex_state = 13, .external_lex_state = 9}, - [1072] = {.lex_state = 13, .external_lex_state = 15}, - [1073] = {.lex_state = 13, .external_lex_state = 9}, + [1072] = {.lex_state = 13, .external_lex_state = 9}, + [1073] = {.lex_state = 14, .external_lex_state = 13}, [1074] = {.lex_state = 13, .external_lex_state = 9}, - [1075] = {.lex_state = 13, .external_lex_state = 15}, - [1076] = {.lex_state = 13, .external_lex_state = 6}, - [1077] = {.lex_state = 14, .external_lex_state = 12}, - [1078] = {.lex_state = 14, .external_lex_state = 13}, - [1079] = {.lex_state = 13, .external_lex_state = 13}, - [1080] = {.lex_state = 13, .external_lex_state = 13}, - [1081] = {.lex_state = 14, .external_lex_state = 12}, - [1082] = {.lex_state = 13, .external_lex_state = 9}, - [1083] = {.lex_state = 13, .external_lex_state = 9}, - [1084] = {.lex_state = 13, .external_lex_state = 15}, - [1085] = {.lex_state = 13, .external_lex_state = 9}, - [1086] = {.lex_state = 13, .external_lex_state = 13}, - [1087] = {.lex_state = 13, .external_lex_state = 13}, - [1088] = {.lex_state = 13, .external_lex_state = 13}, - [1089] = {.lex_state = 13, .external_lex_state = 13}, - [1090] = {.lex_state = 13, .external_lex_state = 13}, - [1091] = {.lex_state = 13, .external_lex_state = 13}, - [1092] = {.lex_state = 13, .external_lex_state = 13}, - [1093] = {.lex_state = 13, .external_lex_state = 13}, - [1094] = {.lex_state = 13, .external_lex_state = 13}, + [1075] = {.lex_state = 13, .external_lex_state = 14}, + [1076] = {.lex_state = 13, .external_lex_state = 14}, + [1077] = {.lex_state = 13, .external_lex_state = 9}, + [1078] = {.lex_state = 13, .external_lex_state = 9}, + [1079] = {.lex_state = 13, .external_lex_state = 9}, + [1080] = {.lex_state = 13, .external_lex_state = 14}, + [1081] = {.lex_state = 13, .external_lex_state = 14}, + [1082] = {.lex_state = 13, .external_lex_state = 14}, + [1083] = {.lex_state = 13, .external_lex_state = 14}, + [1084] = {.lex_state = 13, .external_lex_state = 14}, + [1085] = {.lex_state = 13, .external_lex_state = 14}, + [1086] = {.lex_state = 13, .external_lex_state = 14}, + [1087] = {.lex_state = 13, .external_lex_state = 14}, + [1088] = {.lex_state = 13, .external_lex_state = 6}, + [1089] = {.lex_state = 13, .external_lex_state = 9}, + [1090] = {.lex_state = 13, .external_lex_state = 6}, + [1091] = {.lex_state = 13, .external_lex_state = 9}, + [1092] = {.lex_state = 13, .external_lex_state = 9}, + [1093] = {.lex_state = 13, .external_lex_state = 9}, + [1094] = {.lex_state = 13, .external_lex_state = 6}, [1095] = {.lex_state = 13, .external_lex_state = 13}, - [1096] = {.lex_state = 13, .external_lex_state = 15}, - [1097] = {.lex_state = 13, .external_lex_state = 9}, + [1096] = {.lex_state = 13, .external_lex_state = 13}, + [1097] = {.lex_state = 13, .external_lex_state = 6}, [1098] = {.lex_state = 13, .external_lex_state = 13}, [1099] = {.lex_state = 13, .external_lex_state = 13}, - [1100] = {.lex_state = 14, .external_lex_state = 9}, - [1101] = {.lex_state = 13, .external_lex_state = 9}, + [1100] = {.lex_state = 13, .external_lex_state = 13}, + [1101] = {.lex_state = 13, .external_lex_state = 13}, [1102] = {.lex_state = 13, .external_lex_state = 13}, [1103] = {.lex_state = 13, .external_lex_state = 13}, - [1104] = {.lex_state = 13, .external_lex_state = 9}, - [1105] = {.lex_state = 13, .external_lex_state = 6}, + [1104] = {.lex_state = 13, .external_lex_state = 13}, + [1105] = {.lex_state = 13, .external_lex_state = 13}, [1106] = {.lex_state = 13, .external_lex_state = 9}, - [1107] = {.lex_state = 13, .external_lex_state = 15}, - [1108] = {.lex_state = 13, .external_lex_state = 14}, - [1109] = {.lex_state = 13, .external_lex_state = 14}, - [1110] = {.lex_state = 14, .external_lex_state = 13}, - [1111] = {.lex_state = 13, .external_lex_state = 14}, - [1112] = {.lex_state = 13, .external_lex_state = 14}, - [1113] = {.lex_state = 13, .external_lex_state = 14}, - [1114] = {.lex_state = 13, .external_lex_state = 14}, - [1115] = {.lex_state = 13, .external_lex_state = 14}, - [1116] = {.lex_state = 13, .external_lex_state = 14}, - [1117] = {.lex_state = 13, .external_lex_state = 14}, + [1107] = {.lex_state = 13, .external_lex_state = 8}, + [1108] = {.lex_state = 14, .external_lex_state = 12}, + [1109] = {.lex_state = 14, .external_lex_state = 12}, + [1110] = {.lex_state = 14, .external_lex_state = 12}, + [1111] = {.lex_state = 13, .external_lex_state = 8}, + [1112] = {.lex_state = 13, .external_lex_state = 8}, + [1113] = {.lex_state = 13, .external_lex_state = 9}, + [1114] = {.lex_state = 14, .external_lex_state = 13}, + [1115] = {.lex_state = 14, .external_lex_state = 13}, + [1116] = {.lex_state = 14, .external_lex_state = 13}, + [1117] = {.lex_state = 13, .external_lex_state = 9}, [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 8}, - [1120] = {.lex_state = 13, .external_lex_state = 9}, - [1121] = {.lex_state = 13, .external_lex_state = 14}, - [1122] = {.lex_state = 14, .external_lex_state = 12}, + [1119] = {.lex_state = 13, .external_lex_state = 9}, + [1120] = {.lex_state = 14, .external_lex_state = 9}, + [1121] = {.lex_state = 13, .external_lex_state = 13}, + [1122] = {.lex_state = 13, .external_lex_state = 13}, [1123] = {.lex_state = 13, .external_lex_state = 9}, - [1124] = {.lex_state = 13, .external_lex_state = 13}, - [1125] = {.lex_state = 13, .external_lex_state = 13}, - [1126] = {.lex_state = 13, .external_lex_state = 13}, - [1127] = {.lex_state = 13, .external_lex_state = 6}, - [1128] = {.lex_state = 14, .external_lex_state = 13}, - [1129] = {.lex_state = 13, .external_lex_state = 9}, - [1130] = {.lex_state = 13, .external_lex_state = 9}, - [1131] = {.lex_state = 13, .external_lex_state = 9}, - [1132] = {.lex_state = 13, .external_lex_state = 9}, - [1133] = {.lex_state = 14, .external_lex_state = 12}, - [1134] = {.lex_state = 13, .external_lex_state = 9}, + [1124] = {.lex_state = 13, .external_lex_state = 9}, + [1125] = {.lex_state = 13, .external_lex_state = 9}, + [1126] = {.lex_state = 13, .external_lex_state = 9}, + [1127] = {.lex_state = 13, .external_lex_state = 13}, + [1128] = {.lex_state = 13, .external_lex_state = 13}, + [1129] = {.lex_state = 13, .external_lex_state = 13}, + [1130] = {.lex_state = 13, .external_lex_state = 13}, + [1131] = {.lex_state = 13, .external_lex_state = 13}, + [1132] = {.lex_state = 13, .external_lex_state = 13}, + [1133] = {.lex_state = 13, .external_lex_state = 13}, + [1134] = {.lex_state = 14, .external_lex_state = 12}, [1135] = {.lex_state = 13, .external_lex_state = 12}, [1136] = {.lex_state = 13, .external_lex_state = 12}, - [1137] = {.lex_state = 13, .external_lex_state = 12}, - [1138] = {.lex_state = 14, .external_lex_state = 13}, + [1137] = {.lex_state = 14, .external_lex_state = 14}, + [1138] = {.lex_state = 13, .external_lex_state = 12}, [1139] = {.lex_state = 13, .external_lex_state = 12}, - [1140] = {.lex_state = 13, .external_lex_state = 7}, - [1141] = {.lex_state = 13, .external_lex_state = 12}, + [1140] = {.lex_state = 13, .external_lex_state = 12}, + [1141] = {.lex_state = 13, .external_lex_state = 8}, [1142] = {.lex_state = 13, .external_lex_state = 12}, [1143] = {.lex_state = 13, .external_lex_state = 12}, - [1144] = {.lex_state = 14, .external_lex_state = 14}, - [1145] = {.lex_state = 14, .external_lex_state = 14}, - [1146] = {.lex_state = 13, .external_lex_state = 12}, - [1147] = {.lex_state = 13, .external_lex_state = 12}, + [1144] = {.lex_state = 13, .external_lex_state = 12}, + [1145] = {.lex_state = 14, .external_lex_state = 13}, + [1146] = {.lex_state = 14, .external_lex_state = 13}, + [1147] = {.lex_state = 14, .external_lex_state = 13}, [1148] = {.lex_state = 13, .external_lex_state = 12}, [1149] = {.lex_state = 13, .external_lex_state = 12}, - [1150] = {.lex_state = 14, .external_lex_state = 15}, - [1151] = {.lex_state = 14, .external_lex_state = 13}, - [1152] = {.lex_state = 14, .external_lex_state = 13}, - [1153] = {.lex_state = 14, .external_lex_state = 13}, - [1154] = {.lex_state = 14, .external_lex_state = 15}, - [1155] = {.lex_state = 14, .external_lex_state = 15}, + [1150] = {.lex_state = 13, .external_lex_state = 12}, + [1151] = {.lex_state = 13, .external_lex_state = 12}, + [1152] = {.lex_state = 13, .external_lex_state = 12}, + [1153] = {.lex_state = 13, .external_lex_state = 8}, + [1154] = {.lex_state = 13, .external_lex_state = 12}, + [1155] = {.lex_state = 13, .external_lex_state = 12}, [1156] = {.lex_state = 13, .external_lex_state = 12}, - [1157] = {.lex_state = 13, .external_lex_state = 13}, - [1158] = {.lex_state = 13, .external_lex_state = 13}, + [1157] = {.lex_state = 13, .external_lex_state = 12}, + [1158] = {.lex_state = 13, .external_lex_state = 12}, [1159] = {.lex_state = 13, .external_lex_state = 12}, [1160] = {.lex_state = 13, .external_lex_state = 12}, [1161] = {.lex_state = 13, .external_lex_state = 12}, @@ -8634,278 +8634,278 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1164] = {.lex_state = 13, .external_lex_state = 12}, [1165] = {.lex_state = 13, .external_lex_state = 12}, [1166] = {.lex_state = 13, .external_lex_state = 12}, - [1167] = {.lex_state = 14, .external_lex_state = 13}, - [1168] = {.lex_state = 14, .external_lex_state = 13}, - [1169] = {.lex_state = 14, .external_lex_state = 13}, + [1167] = {.lex_state = 13, .external_lex_state = 12}, + [1168] = {.lex_state = 13, .external_lex_state = 12}, + [1169] = {.lex_state = 13, .external_lex_state = 12}, [1170] = {.lex_state = 13, .external_lex_state = 12}, [1171] = {.lex_state = 13, .external_lex_state = 12}, [1172] = {.lex_state = 13, .external_lex_state = 12}, [1173] = {.lex_state = 13, .external_lex_state = 12}, - [1174] = {.lex_state = 13, .external_lex_state = 12}, - [1175] = {.lex_state = 13, .external_lex_state = 12}, - [1176] = {.lex_state = 13, .external_lex_state = 12}, + [1174] = {.lex_state = 14, .external_lex_state = 14}, + [1175] = {.lex_state = 14, .external_lex_state = 14}, + [1176] = {.lex_state = 14, .external_lex_state = 14}, [1177] = {.lex_state = 13, .external_lex_state = 12}, [1178] = {.lex_state = 13, .external_lex_state = 12}, [1179] = {.lex_state = 13, .external_lex_state = 12}, - [1180] = {.lex_state = 13, .external_lex_state = 12}, - [1181] = {.lex_state = 13, .external_lex_state = 7}, + [1180] = {.lex_state = 13, .external_lex_state = 2}, + [1181] = {.lex_state = 13, .external_lex_state = 12}, [1182] = {.lex_state = 13, .external_lex_state = 12}, [1183] = {.lex_state = 13, .external_lex_state = 12}, - [1184] = {.lex_state = 14, .external_lex_state = 14}, - [1185] = {.lex_state = 13, .external_lex_state = 13}, - [1186] = {.lex_state = 13, .external_lex_state = 13}, - [1187] = {.lex_state = 13, .external_lex_state = 13}, - [1188] = {.lex_state = 13, .external_lex_state = 8}, + [1184] = {.lex_state = 13, .external_lex_state = 12}, + [1185] = {.lex_state = 13, .external_lex_state = 12}, + [1186] = {.lex_state = 13, .external_lex_state = 12}, + [1187] = {.lex_state = 14, .external_lex_state = 13}, + [1188] = {.lex_state = 13, .external_lex_state = 12}, [1189] = {.lex_state = 13, .external_lex_state = 12}, - [1190] = {.lex_state = 13, .external_lex_state = 14}, - [1191] = {.lex_state = 14, .external_lex_state = 14}, - [1192] = {.lex_state = 14, .external_lex_state = 14}, + [1190] = {.lex_state = 13, .external_lex_state = 12}, + [1191] = {.lex_state = 13, .external_lex_state = 12}, + [1192] = {.lex_state = 13, .external_lex_state = 12}, [1193] = {.lex_state = 13, .external_lex_state = 12}, - [1194] = {.lex_state = 14, .external_lex_state = 14}, - [1195] = {.lex_state = 13, .external_lex_state = 14}, + [1194] = {.lex_state = 13, .external_lex_state = 12}, + [1195] = {.lex_state = 13, .external_lex_state = 12}, [1196] = {.lex_state = 13, .external_lex_state = 12}, [1197] = {.lex_state = 13, .external_lex_state = 12}, - [1198] = {.lex_state = 14, .external_lex_state = 13}, + [1198] = {.lex_state = 13, .external_lex_state = 13}, [1199] = {.lex_state = 13, .external_lex_state = 12}, - [1200] = {.lex_state = 14, .external_lex_state = 14}, - [1201] = {.lex_state = 14, .external_lex_state = 13}, - [1202] = {.lex_state = 13, .external_lex_state = 2}, - [1203] = {.lex_state = 14, .external_lex_state = 13}, - [1204] = {.lex_state = 14, .external_lex_state = 14}, - [1205] = {.lex_state = 14, .external_lex_state = 14}, + [1200] = {.lex_state = 13, .external_lex_state = 13}, + [1201] = {.lex_state = 13, .external_lex_state = 12}, + [1202] = {.lex_state = 13, .external_lex_state = 12}, + [1203] = {.lex_state = 13, .external_lex_state = 12}, + [1204] = {.lex_state = 13, .external_lex_state = 12}, + [1205] = {.lex_state = 14, .external_lex_state = 13}, [1206] = {.lex_state = 13, .external_lex_state = 12}, - [1207] = {.lex_state = 13, .external_lex_state = 7}, + [1207] = {.lex_state = 13, .external_lex_state = 12}, [1208] = {.lex_state = 13, .external_lex_state = 12}, [1209] = {.lex_state = 13, .external_lex_state = 12}, [1210] = {.lex_state = 13, .external_lex_state = 12}, [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 12}, + [1212] = {.lex_state = 13, .external_lex_state = 7}, [1213] = {.lex_state = 13, .external_lex_state = 12}, [1214] = {.lex_state = 13, .external_lex_state = 12}, - [1215] = {.lex_state = 13, .external_lex_state = 12}, - [1216] = {.lex_state = 13, .external_lex_state = 12}, - [1217] = {.lex_state = 13, .external_lex_state = 12}, - [1218] = {.lex_state = 13, .external_lex_state = 12}, - [1219] = {.lex_state = 13, .external_lex_state = 12}, - [1220] = {.lex_state = 14, .external_lex_state = 14}, - [1221] = {.lex_state = 13, .external_lex_state = 13}, + [1215] = {.lex_state = 13, .external_lex_state = 13}, + [1216] = {.lex_state = 14, .external_lex_state = 14}, + [1217] = {.lex_state = 13, .external_lex_state = 14}, + [1218] = {.lex_state = 13, .external_lex_state = 14}, + [1219] = {.lex_state = 14, .external_lex_state = 15}, + [1220] = {.lex_state = 13, .external_lex_state = 7}, + [1221] = {.lex_state = 13, .external_lex_state = 12}, [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 13}, - [1224] = {.lex_state = 13, .external_lex_state = 12}, - [1225] = {.lex_state = 13, .external_lex_state = 12}, - [1226] = {.lex_state = 13, .external_lex_state = 12}, - [1227] = {.lex_state = 13, .external_lex_state = 12}, - [1228] = {.lex_state = 13, .external_lex_state = 12}, + [1223] = {.lex_state = 13, .external_lex_state = 14}, + [1224] = {.lex_state = 13, .external_lex_state = 14}, + [1225] = {.lex_state = 13, .external_lex_state = 14}, + [1226] = {.lex_state = 13, .external_lex_state = 14}, + [1227] = {.lex_state = 13, .external_lex_state = 14}, + [1228] = {.lex_state = 13, .external_lex_state = 14}, [1229] = {.lex_state = 13, .external_lex_state = 14}, [1230] = {.lex_state = 13, .external_lex_state = 14}, - [1231] = {.lex_state = 13, .external_lex_state = 14}, - [1232] = {.lex_state = 13, .external_lex_state = 14}, + [1231] = {.lex_state = 13, .external_lex_state = 12}, + [1232] = {.lex_state = 13, .external_lex_state = 12}, [1233] = {.lex_state = 13, .external_lex_state = 12}, - [1234] = {.lex_state = 13, .external_lex_state = 14}, - [1235] = {.lex_state = 13, .external_lex_state = 14}, - [1236] = {.lex_state = 13, .external_lex_state = 14}, - [1237] = {.lex_state = 13, .external_lex_state = 14}, - [1238] = {.lex_state = 13, .external_lex_state = 8}, - [1239] = {.lex_state = 13, .external_lex_state = 12}, - [1240] = {.lex_state = 13, .external_lex_state = 12}, - [1241] = {.lex_state = 13, .external_lex_state = 12}, + [1234] = {.lex_state = 14, .external_lex_state = 13}, + [1235] = {.lex_state = 14, .external_lex_state = 13}, + [1236] = {.lex_state = 13, .external_lex_state = 13}, + [1237] = {.lex_state = 14, .external_lex_state = 13}, + [1238] = {.lex_state = 13, .external_lex_state = 7}, + [1239] = {.lex_state = 14, .external_lex_state = 14}, + [1240] = {.lex_state = 14, .external_lex_state = 14}, + [1241] = {.lex_state = 14, .external_lex_state = 15}, [1242] = {.lex_state = 14, .external_lex_state = 15}, - [1243] = {.lex_state = 13, .external_lex_state = 12}, - [1244] = {.lex_state = 13, .external_lex_state = 12}, - [1245] = {.lex_state = 13, .external_lex_state = 12}, - [1246] = {.lex_state = 13, .external_lex_state = 12}, - [1247] = {.lex_state = 14, .external_lex_state = 13}, - [1248] = {.lex_state = 14, .external_lex_state = 13}, - [1249] = {.lex_state = 13, .external_lex_state = 12}, - [1250] = {.lex_state = 13, .external_lex_state = 12}, - [1251] = {.lex_state = 13, .external_lex_state = 12}, - [1252] = {.lex_state = 13, .external_lex_state = 12}, + [1243] = {.lex_state = 14, .external_lex_state = 15}, + [1244] = {.lex_state = 14, .external_lex_state = 13}, + [1245] = {.lex_state = 13, .external_lex_state = 7}, + [1246] = {.lex_state = 14, .external_lex_state = 14}, + [1247] = {.lex_state = 14, .external_lex_state = 14}, + [1248] = {.lex_state = 14, .external_lex_state = 14}, + [1249] = {.lex_state = 14, .external_lex_state = 13}, + [1250] = {.lex_state = 14, .external_lex_state = 13}, + [1251] = {.lex_state = 13, .external_lex_state = 13}, + [1252] = {.lex_state = 13, .external_lex_state = 13}, [1253] = {.lex_state = 13, .external_lex_state = 2}, - [1254] = {.lex_state = 13, .external_lex_state = 12}, - [1255] = {.lex_state = 13, .external_lex_state = 7}, - [1256] = {.lex_state = 13, .external_lex_state = 13}, - [1257] = {.lex_state = 13, .external_lex_state = 13}, - [1258] = {.lex_state = 13, .external_lex_state = 15}, - [1259] = {.lex_state = 13, .external_lex_state = 9}, - [1260] = {.lex_state = 13, .external_lex_state = 13}, + [1254] = {.lex_state = 14, .external_lex_state = 13}, + [1255] = {.lex_state = 13, .external_lex_state = 13}, + [1256] = {.lex_state = 13, .external_lex_state = 14}, + [1257] = {.lex_state = 13, .external_lex_state = 14}, + [1258] = {.lex_state = 13, .external_lex_state = 13}, + [1259] = {.lex_state = 13, .external_lex_state = 13}, + [1260] = {.lex_state = 13, .external_lex_state = 15}, [1261] = {.lex_state = 13, .external_lex_state = 13}, - [1262] = {.lex_state = 13, .external_lex_state = 13}, - [1263] = {.lex_state = 13, .external_lex_state = 13}, - [1264] = {.lex_state = 13, .external_lex_state = 13}, + [1262] = {.lex_state = 13, .external_lex_state = 14}, + [1263] = {.lex_state = 13, .external_lex_state = 14}, + [1264] = {.lex_state = 13, .external_lex_state = 14}, [1265] = {.lex_state = 13, .external_lex_state = 15}, - [1266] = {.lex_state = 13, .external_lex_state = 13}, + [1266] = {.lex_state = 13, .external_lex_state = 15}, [1267] = {.lex_state = 13, .external_lex_state = 14}, - [1268] = {.lex_state = 13, .external_lex_state = 13}, + [1268] = {.lex_state = 13, .external_lex_state = 15}, [1269] = {.lex_state = 13, .external_lex_state = 15}, [1270] = {.lex_state = 13, .external_lex_state = 13}, [1271] = {.lex_state = 13, .external_lex_state = 15}, [1272] = {.lex_state = 13, .external_lex_state = 13}, - [1273] = {.lex_state = 13, .external_lex_state = 15}, - [1274] = {.lex_state = 13, .external_lex_state = 13}, - [1275] = {.lex_state = 13, .external_lex_state = 14}, - [1276] = {.lex_state = 13, .external_lex_state = 13}, - [1277] = {.lex_state = 14, .external_lex_state = 13}, - [1278] = {.lex_state = 14, .external_lex_state = 13}, - [1279] = {.lex_state = 14, .external_lex_state = 13}, - [1280] = {.lex_state = 13, .external_lex_state = 15}, + [1273] = {.lex_state = 13, .external_lex_state = 13}, + [1274] = {.lex_state = 14, .external_lex_state = 14}, + [1275] = {.lex_state = 14, .external_lex_state = 14}, + [1276] = {.lex_state = 14, .external_lex_state = 14}, + [1277] = {.lex_state = 13, .external_lex_state = 13}, + [1278] = {.lex_state = 13, .external_lex_state = 13}, + [1279] = {.lex_state = 13, .external_lex_state = 13}, + [1280] = {.lex_state = 13, .external_lex_state = 13}, [1281] = {.lex_state = 13, .external_lex_state = 15}, - [1282] = {.lex_state = 13, .external_lex_state = 15}, - [1283] = {.lex_state = 13, .external_lex_state = 14}, + [1282] = {.lex_state = 13, .external_lex_state = 13}, + [1283] = {.lex_state = 13, .external_lex_state = 15}, [1284] = {.lex_state = 13, .external_lex_state = 13}, - [1285] = {.lex_state = 13, .external_lex_state = 14}, + [1285] = {.lex_state = 13, .external_lex_state = 13}, [1286] = {.lex_state = 13, .external_lex_state = 13}, - [1287] = {.lex_state = 13, .external_lex_state = 14}, - [1288] = {.lex_state = 13, .external_lex_state = 14}, - [1289] = {.lex_state = 13, .external_lex_state = 14}, - [1290] = {.lex_state = 13, .external_lex_state = 14}, + [1287] = {.lex_state = 13, .external_lex_state = 13}, + [1288] = {.lex_state = 13, .external_lex_state = 13}, + [1289] = {.lex_state = 13, .external_lex_state = 13}, + [1290] = {.lex_state = 13, .external_lex_state = 13}, [1291] = {.lex_state = 13, .external_lex_state = 15}, [1292] = {.lex_state = 13, .external_lex_state = 15}, [1293] = {.lex_state = 13, .external_lex_state = 15}, [1294] = {.lex_state = 13, .external_lex_state = 15}, - [1295] = {.lex_state = 13, .external_lex_state = 14}, - [1296] = {.lex_state = 13, .external_lex_state = 14}, - [1297] = {.lex_state = 13, .external_lex_state = 14}, - [1298] = {.lex_state = 8, .external_lex_state = 9}, + [1295] = {.lex_state = 13, .external_lex_state = 15}, + [1296] = {.lex_state = 13, .external_lex_state = 13}, + [1297] = {.lex_state = 13, .external_lex_state = 15}, + [1298] = {.lex_state = 13, .external_lex_state = 15}, [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 15}, + [1300] = {.lex_state = 13, .external_lex_state = 13}, [1301] = {.lex_state = 13, .external_lex_state = 13}, - [1302] = {.lex_state = 8, .external_lex_state = 9}, + [1302] = {.lex_state = 13, .external_lex_state = 13}, [1303] = {.lex_state = 13, .external_lex_state = 13}, - [1304] = {.lex_state = 13, .external_lex_state = 15}, - [1305] = {.lex_state = 8, .external_lex_state = 9}, - [1306] = {.lex_state = 8, .external_lex_state = 9}, - [1307] = {.lex_state = 13, .external_lex_state = 14}, - [1308] = {.lex_state = 13, .external_lex_state = 15}, - [1309] = {.lex_state = 13, .external_lex_state = 15}, + [1304] = {.lex_state = 13, .external_lex_state = 13}, + [1305] = {.lex_state = 13, .external_lex_state = 13}, + [1306] = {.lex_state = 13, .external_lex_state = 15}, + [1307] = {.lex_state = 13, .external_lex_state = 13}, + [1308] = {.lex_state = 13, .external_lex_state = 13}, + [1309] = {.lex_state = 13, .external_lex_state = 13}, [1310] = {.lex_state = 13, .external_lex_state = 15}, [1311] = {.lex_state = 13, .external_lex_state = 14}, - [1312] = {.lex_state = 13, .external_lex_state = 14}, - [1313] = {.lex_state = 13, .external_lex_state = 15}, - [1314] = {.lex_state = 13, .external_lex_state = 14}, - [1315] = {.lex_state = 13, .external_lex_state = 8}, - [1316] = {.lex_state = 13, .external_lex_state = 13}, - [1317] = {.lex_state = 13, .external_lex_state = 13}, + [1312] = {.lex_state = 13, .external_lex_state = 15}, + [1313] = {.lex_state = 13, .external_lex_state = 13}, + [1314] = {.lex_state = 13, .external_lex_state = 13}, + [1315] = {.lex_state = 13, .external_lex_state = 14}, + [1316] = {.lex_state = 13, .external_lex_state = 15}, + [1317] = {.lex_state = 13, .external_lex_state = 15}, [1318] = {.lex_state = 13, .external_lex_state = 14}, [1319] = {.lex_state = 13, .external_lex_state = 14}, - [1320] = {.lex_state = 13, .external_lex_state = 15}, - [1321] = {.lex_state = 13, .external_lex_state = 15}, - [1322] = {.lex_state = 13, .external_lex_state = 15}, - [1323] = {.lex_state = 13, .external_lex_state = 15}, - [1324] = {.lex_state = 13, .external_lex_state = 13}, - [1325] = {.lex_state = 13, .external_lex_state = 8}, - [1326] = {.lex_state = 8, .external_lex_state = 9}, + [1320] = {.lex_state = 13, .external_lex_state = 14}, + [1321] = {.lex_state = 13, .external_lex_state = 13}, + [1322] = {.lex_state = 13, .external_lex_state = 14}, + [1323] = {.lex_state = 13, .external_lex_state = 14}, + [1324] = {.lex_state = 13, .external_lex_state = 14}, + [1325] = {.lex_state = 13, .external_lex_state = 14}, + [1326] = {.lex_state = 13, .external_lex_state = 14}, [1327] = {.lex_state = 13, .external_lex_state = 15}, [1328] = {.lex_state = 13, .external_lex_state = 15}, - [1329] = {.lex_state = 13, .external_lex_state = 15}, - [1330] = {.lex_state = 13, .external_lex_state = 13}, + [1329] = {.lex_state = 13, .external_lex_state = 14}, + [1330] = {.lex_state = 13, .external_lex_state = 14}, [1331] = {.lex_state = 13, .external_lex_state = 13}, [1332] = {.lex_state = 13, .external_lex_state = 14}, [1333] = {.lex_state = 13, .external_lex_state = 14}, - [1334] = {.lex_state = 13, .external_lex_state = 15}, - [1335] = {.lex_state = 13, .external_lex_state = 13}, - [1336] = {.lex_state = 13, .external_lex_state = 15}, - [1337] = {.lex_state = 13, .external_lex_state = 15}, + [1334] = {.lex_state = 13, .external_lex_state = 14}, + [1335] = {.lex_state = 13, .external_lex_state = 14}, + [1336] = {.lex_state = 13, .external_lex_state = 14}, + [1337] = {.lex_state = 13, .external_lex_state = 14}, [1338] = {.lex_state = 13, .external_lex_state = 13}, - [1339] = {.lex_state = 13, .external_lex_state = 15}, - [1340] = {.lex_state = 13, .external_lex_state = 13}, - [1341] = {.lex_state = 13, .external_lex_state = 15}, - [1342] = {.lex_state = 8, .external_lex_state = 9}, - [1343] = {.lex_state = 13, .external_lex_state = 14}, + [1339] = {.lex_state = 13, .external_lex_state = 13}, + [1340] = {.lex_state = 13, .external_lex_state = 15}, + [1341] = {.lex_state = 13, .external_lex_state = 13}, + [1342] = {.lex_state = 13, .external_lex_state = 15}, + [1343] = {.lex_state = 13, .external_lex_state = 13}, [1344] = {.lex_state = 13, .external_lex_state = 13}, - [1345] = {.lex_state = 13, .external_lex_state = 14}, - [1346] = {.lex_state = 13, .external_lex_state = 14}, - [1347] = {.lex_state = 13, .external_lex_state = 14}, - [1348] = {.lex_state = 13, .external_lex_state = 13}, - [1349] = {.lex_state = 13, .external_lex_state = 13}, - [1350] = {.lex_state = 13, .external_lex_state = 15}, - [1351] = {.lex_state = 13, .external_lex_state = 15}, - [1352] = {.lex_state = 13, .external_lex_state = 13}, - [1353] = {.lex_state = 13, .external_lex_state = 13}, - [1354] = {.lex_state = 13, .external_lex_state = 14}, + [1345] = {.lex_state = 13, .external_lex_state = 13}, + [1346] = {.lex_state = 13, .external_lex_state = 13}, + [1347] = {.lex_state = 13, .external_lex_state = 8}, + [1348] = {.lex_state = 13, .external_lex_state = 14}, + [1349] = {.lex_state = 13, .external_lex_state = 14}, + [1350] = {.lex_state = 13, .external_lex_state = 13}, + [1351] = {.lex_state = 13, .external_lex_state = 8}, + [1352] = {.lex_state = 8, .external_lex_state = 9}, + [1353] = {.lex_state = 8, .external_lex_state = 9}, + [1354] = {.lex_state = 8, .external_lex_state = 9}, [1355] = {.lex_state = 13, .external_lex_state = 13}, - [1356] = {.lex_state = 13, .external_lex_state = 14}, - [1357] = {.lex_state = 13, .external_lex_state = 15}, - [1358] = {.lex_state = 13, .external_lex_state = 14}, + [1356] = {.lex_state = 13, .external_lex_state = 15}, + [1357] = {.lex_state = 13, .external_lex_state = 13}, + [1358] = {.lex_state = 8, .external_lex_state = 9}, [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 13, .external_lex_state = 13}, - [1361] = {.lex_state = 13, .external_lex_state = 13}, - [1362] = {.lex_state = 13, .external_lex_state = 13}, - [1363] = {.lex_state = 13, .external_lex_state = 13}, - [1364] = {.lex_state = 13, .external_lex_state = 13}, + [1360] = {.lex_state = 13, .external_lex_state = 14}, + [1361] = {.lex_state = 13, .external_lex_state = 15}, + [1362] = {.lex_state = 13, .external_lex_state = 15}, + [1363] = {.lex_state = 13, .external_lex_state = 15}, + [1364] = {.lex_state = 13, .external_lex_state = 15}, [1365] = {.lex_state = 13, .external_lex_state = 14}, [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 14}, - [1368] = {.lex_state = 13, .external_lex_state = 13}, - [1369] = {.lex_state = 13, .external_lex_state = 15}, - [1370] = {.lex_state = 13, .external_lex_state = 15}, - [1371] = {.lex_state = 13, .external_lex_state = 13}, + [1367] = {.lex_state = 13, .external_lex_state = 13}, + [1368] = {.lex_state = 8, .external_lex_state = 9}, + [1369] = {.lex_state = 13, .external_lex_state = 13}, + [1370] = {.lex_state = 13, .external_lex_state = 13}, + [1371] = {.lex_state = 8, .external_lex_state = 9}, [1372] = {.lex_state = 13, .external_lex_state = 13}, - [1373] = {.lex_state = 13, .external_lex_state = 13}, - [1374] = {.lex_state = 13, .external_lex_state = 13}, - [1375] = {.lex_state = 13, .external_lex_state = 14}, - [1376] = {.lex_state = 13, .external_lex_state = 14}, + [1373] = {.lex_state = 13, .external_lex_state = 14}, + [1374] = {.lex_state = 13, .external_lex_state = 15}, + [1375] = {.lex_state = 13, .external_lex_state = 15}, + [1376] = {.lex_state = 13, .external_lex_state = 15}, [1377] = {.lex_state = 13, .external_lex_state = 13}, - [1378] = {.lex_state = 13, .external_lex_state = 13}, - [1379] = {.lex_state = 13, .external_lex_state = 14}, - [1380] = {.lex_state = 13, .external_lex_state = 13}, - [1381] = {.lex_state = 13, .external_lex_state = 13}, + [1378] = {.lex_state = 13, .external_lex_state = 14}, + [1379] = {.lex_state = 13, .external_lex_state = 15}, + [1380] = {.lex_state = 13, .external_lex_state = 15}, + [1381] = {.lex_state = 13, .external_lex_state = 14}, [1382] = {.lex_state = 13, .external_lex_state = 13}, - [1383] = {.lex_state = 13, .external_lex_state = 15}, + [1383] = {.lex_state = 13, .external_lex_state = 13}, [1384] = {.lex_state = 13, .external_lex_state = 13}, - [1385] = {.lex_state = 13, .external_lex_state = 13}, + [1385] = {.lex_state = 13, .external_lex_state = 14}, [1386] = {.lex_state = 13, .external_lex_state = 13}, - [1387] = {.lex_state = 14, .external_lex_state = 14}, + [1387] = {.lex_state = 13, .external_lex_state = 15}, [1388] = {.lex_state = 13, .external_lex_state = 13}, [1389] = {.lex_state = 13, .external_lex_state = 13}, [1390] = {.lex_state = 13, .external_lex_state = 13}, [1391] = {.lex_state = 13, .external_lex_state = 13}, - [1392] = {.lex_state = 14, .external_lex_state = 14}, - [1393] = {.lex_state = 13, .external_lex_state = 13}, + [1392] = {.lex_state = 13, .external_lex_state = 13}, + [1393] = {.lex_state = 13, .external_lex_state = 9}, [1394] = {.lex_state = 13, .external_lex_state = 13}, [1395] = {.lex_state = 13, .external_lex_state = 13}, - [1396] = {.lex_state = 14, .external_lex_state = 14}, - [1397] = {.lex_state = 13, .external_lex_state = 13}, + [1396] = {.lex_state = 13, .external_lex_state = 13}, + [1397] = {.lex_state = 13, .external_lex_state = 14}, [1398] = {.lex_state = 13, .external_lex_state = 13}, - [1399] = {.lex_state = 13, .external_lex_state = 13}, - [1400] = {.lex_state = 13, .external_lex_state = 14}, - [1401] = {.lex_state = 13, .external_lex_state = 14}, + [1399] = {.lex_state = 14, .external_lex_state = 13}, + [1400] = {.lex_state = 14, .external_lex_state = 13}, + [1401] = {.lex_state = 14, .external_lex_state = 13}, [1402] = {.lex_state = 13, .external_lex_state = 14}, - [1403] = {.lex_state = 13, .external_lex_state = 14}, + [1403] = {.lex_state = 13, .external_lex_state = 15}, [1404] = {.lex_state = 13, .external_lex_state = 14}, - [1405] = {.lex_state = 13, .external_lex_state = 13}, - [1406] = {.lex_state = 13, .external_lex_state = 13}, - [1407] = {.lex_state = 13, .external_lex_state = 13}, - [1408] = {.lex_state = 13, .external_lex_state = 13}, - [1409] = {.lex_state = 13, .external_lex_state = 14}, + [1405] = {.lex_state = 13, .external_lex_state = 14}, + [1406] = {.lex_state = 13, .external_lex_state = 14}, + [1407] = {.lex_state = 13, .external_lex_state = 14}, + [1408] = {.lex_state = 13, .external_lex_state = 14}, + [1409] = {.lex_state = 13, .external_lex_state = 13}, [1410] = {.lex_state = 13, .external_lex_state = 13}, - [1411] = {.lex_state = 13, .external_lex_state = 14}, + [1411] = {.lex_state = 13, .external_lex_state = 13}, [1412] = {.lex_state = 13, .external_lex_state = 13}, [1413] = {.lex_state = 13, .external_lex_state = 13}, [1414] = {.lex_state = 13, .external_lex_state = 13}, - [1415] = {.lex_state = 13, .external_lex_state = 14}, + [1415] = {.lex_state = 13, .external_lex_state = 13}, [1416] = {.lex_state = 13, .external_lex_state = 13}, [1417] = {.lex_state = 13, .external_lex_state = 13}, [1418] = {.lex_state = 13, .external_lex_state = 13}, - [1419] = {.lex_state = 13, .external_lex_state = 14}, - [1420] = {.lex_state = 13, .external_lex_state = 14}, + [1419] = {.lex_state = 14, .external_lex_state = 13}, + [1420] = {.lex_state = 13, .external_lex_state = 15}, [1421] = {.lex_state = 13, .external_lex_state = 14}, - [1422] = {.lex_state = 14, .external_lex_state = 14}, - [1423] = {.lex_state = 14, .external_lex_state = 14}, - [1424] = {.lex_state = 14, .external_lex_state = 14}, - [1425] = {.lex_state = 14, .external_lex_state = 12}, + [1422] = {.lex_state = 13, .external_lex_state = 14}, + [1423] = {.lex_state = 13, .external_lex_state = 14}, + [1424] = {.lex_state = 13, .external_lex_state = 14}, + [1425] = {.lex_state = 13, .external_lex_state = 14}, [1426] = {.lex_state = 13, .external_lex_state = 14}, - [1427] = {.lex_state = 14, .external_lex_state = 12}, - [1428] = {.lex_state = 14, .external_lex_state = 12}, + [1427] = {.lex_state = 13, .external_lex_state = 14}, + [1428] = {.lex_state = 13, .external_lex_state = 14}, [1429] = {.lex_state = 13, .external_lex_state = 14}, - [1430] = {.lex_state = 13, .external_lex_state = 14}, + [1430] = {.lex_state = 14, .external_lex_state = 13}, [1431] = {.lex_state = 13, .external_lex_state = 14}, [1432] = {.lex_state = 13, .external_lex_state = 14}, - [1433] = {.lex_state = 13, .external_lex_state = 14}, - [1434] = {.lex_state = 13, .external_lex_state = 14}, - [1435] = {.lex_state = 13, .external_lex_state = 14}, - [1436] = {.lex_state = 13, .external_lex_state = 15}, + [1433] = {.lex_state = 14, .external_lex_state = 12}, + [1434] = {.lex_state = 14, .external_lex_state = 12}, + [1435] = {.lex_state = 14, .external_lex_state = 12}, + [1436] = {.lex_state = 14, .external_lex_state = 14}, [1437] = {.lex_state = 13, .external_lex_state = 14}, - [1438] = {.lex_state = 13, .external_lex_state = 14}, + [1438] = {.lex_state = 14, .external_lex_state = 14}, [1439] = {.lex_state = 13, .external_lex_state = 14}, [1440] = {.lex_state = 13, .external_lex_state = 14}, [1441] = {.lex_state = 13, .external_lex_state = 14}, @@ -8930,8 +8930,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1460] = {.lex_state = 13, .external_lex_state = 14}, [1461] = {.lex_state = 13, .external_lex_state = 14}, [1462] = {.lex_state = 13, .external_lex_state = 14}, - [1463] = {.lex_state = 14, .external_lex_state = 13}, - [1464] = {.lex_state = 14, .external_lex_state = 13}, + [1463] = {.lex_state = 13, .external_lex_state = 14}, + [1464] = {.lex_state = 14, .external_lex_state = 14}, [1465] = {.lex_state = 14, .external_lex_state = 13}, [1466] = {.lex_state = 8, .external_lex_state = 15}, [1467] = {.lex_state = 8, .external_lex_state = 15}, @@ -8944,52 +8944,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1474] = {.lex_state = 8, .external_lex_state = 15}, [1475] = {.lex_state = 8, .external_lex_state = 15}, [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 8, .external_lex_state = 15}, - [1478] = {.lex_state = 8, .external_lex_state = 15}, - [1479] = {.lex_state = 8, .external_lex_state = 15}, + [1477] = {.lex_state = 13, .external_lex_state = 13}, + [1478] = {.lex_state = 13, .external_lex_state = 14}, + [1479] = {.lex_state = 13, .external_lex_state = 12}, [1480] = {.lex_state = 8, .external_lex_state = 15}, [1481] = {.lex_state = 8, .external_lex_state = 15}, - [1482] = {.lex_state = 13, .external_lex_state = 13}, - [1483] = {.lex_state = 13, .external_lex_state = 14}, - [1484] = {.lex_state = 13, .external_lex_state = 12}, + [1482] = {.lex_state = 8, .external_lex_state = 15}, + [1483] = {.lex_state = 8, .external_lex_state = 15}, + [1484] = {.lex_state = 8, .external_lex_state = 15}, [1485] = {.lex_state = 12, .external_lex_state = 2}, [1486] = {.lex_state = 12, .external_lex_state = 2}, - [1487] = {.lex_state = 5, .external_lex_state = 7}, - [1488] = {.lex_state = 5, .external_lex_state = 7}, + [1487] = {.lex_state = 5, .external_lex_state = 8}, + [1488] = {.lex_state = 5, .external_lex_state = 8}, [1489] = {.lex_state = 5, .external_lex_state = 7}, - [1490] = {.lex_state = 5, .external_lex_state = 8}, + [1490] = {.lex_state = 5, .external_lex_state = 7}, [1491] = {.lex_state = 5, .external_lex_state = 7}, - [1492] = {.lex_state = 5, .external_lex_state = 7}, + [1492] = {.lex_state = 5, .external_lex_state = 8}, [1493] = {.lex_state = 5, .external_lex_state = 7}, - [1494] = {.lex_state = 5, .external_lex_state = 8}, - [1495] = {.lex_state = 5, .external_lex_state = 7}, + [1494] = {.lex_state = 5, .external_lex_state = 7}, + [1495] = {.lex_state = 5, .external_lex_state = 8}, [1496] = {.lex_state = 5, .external_lex_state = 7}, [1497] = {.lex_state = 5, .external_lex_state = 7}, [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 8}, + [1499] = {.lex_state = 5, .external_lex_state = 7}, [1500] = {.lex_state = 5, .external_lex_state = 8}, [1501] = {.lex_state = 5, .external_lex_state = 7}, - [1502] = {.lex_state = 5, .external_lex_state = 8}, + [1502] = {.lex_state = 5, .external_lex_state = 7}, [1503] = {.lex_state = 5, .external_lex_state = 7}, [1504] = {.lex_state = 5, .external_lex_state = 7}, - [1505] = {.lex_state = 5, .external_lex_state = 7}, + [1505] = {.lex_state = 5, .external_lex_state = 8}, [1506] = {.lex_state = 5, .external_lex_state = 7}, [1507] = {.lex_state = 5, .external_lex_state = 7}, [1508] = {.lex_state = 5, .external_lex_state = 7}, - [1509] = {.lex_state = 5, .external_lex_state = 8}, + [1509] = {.lex_state = 5, .external_lex_state = 7}, [1510] = {.lex_state = 5, .external_lex_state = 8}, - [1511] = {.lex_state = 5, .external_lex_state = 8}, + [1511] = {.lex_state = 5, .external_lex_state = 7}, [1512] = {.lex_state = 5, .external_lex_state = 7}, - [1513] = {.lex_state = 5, .external_lex_state = 7}, - [1514] = {.lex_state = 5, .external_lex_state = 8}, - [1515] = {.lex_state = 5, .external_lex_state = 8}, + [1513] = {.lex_state = 5, .external_lex_state = 8}, + [1514] = {.lex_state = 5, .external_lex_state = 7}, + [1515] = {.lex_state = 5, .external_lex_state = 7}, [1516] = {.lex_state = 5, .external_lex_state = 7}, [1517] = {.lex_state = 5, .external_lex_state = 7}, - [1518] = {.lex_state = 5, .external_lex_state = 8}, + [1518] = {.lex_state = 5, .external_lex_state = 7}, [1519] = {.lex_state = 5, .external_lex_state = 7}, - [1520] = {.lex_state = 5, .external_lex_state = 7}, - [1521] = {.lex_state = 5, .external_lex_state = 7}, - [1522] = {.lex_state = 5, .external_lex_state = 7}, + [1520] = {.lex_state = 5, .external_lex_state = 8}, + [1521] = {.lex_state = 5, .external_lex_state = 8}, + [1522] = {.lex_state = 5, .external_lex_state = 8}, [1523] = {.lex_state = 5, .external_lex_state = 2}, [1524] = {.lex_state = 5, .external_lex_state = 2}, [1525] = {.lex_state = 5, .external_lex_state = 2}, @@ -9020,9 +9020,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1550] = {.lex_state = 5, .external_lex_state = 2}, [1551] = {.lex_state = 5, .external_lex_state = 2}, [1552] = {.lex_state = 5, .external_lex_state = 2}, - [1553] = {.lex_state = 8, .external_lex_state = 9}, + [1553] = {.lex_state = 5, .external_lex_state = 2}, [1554] = {.lex_state = 8, .external_lex_state = 9}, - [1555] = {.lex_state = 5, .external_lex_state = 2}, + [1555] = {.lex_state = 8, .external_lex_state = 9}, [1556] = {.lex_state = 5, .external_lex_state = 2}, [1557] = {.lex_state = 5, .external_lex_state = 2}, [1558] = {.lex_state = 5, .external_lex_state = 2}, @@ -9030,1226 +9030,1226 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1560] = {.lex_state = 8, .external_lex_state = 15}, [1561] = {.lex_state = 8, .external_lex_state = 15}, [1562] = {.lex_state = 8, .external_lex_state = 13}, - [1563] = {.lex_state = 52, .external_lex_state = 12}, - [1564] = {.lex_state = 8, .external_lex_state = 14}, + [1563] = {.lex_state = 8, .external_lex_state = 14}, + [1564] = {.lex_state = 52, .external_lex_state = 12}, [1565] = {.lex_state = 52, .external_lex_state = 12}, [1566] = {.lex_state = 8, .external_lex_state = 14}, [1567] = {.lex_state = 52, .external_lex_state = 12}, [1568] = {.lex_state = 52, .external_lex_state = 12}, - [1569] = {.lex_state = 52, .external_lex_state = 13}, - [1570] = {.lex_state = 52, .external_lex_state = 14}, - [1571] = {.lex_state = 52, .external_lex_state = 2}, - [1572] = {.lex_state = 13, .external_lex_state = 12}, - [1573] = {.lex_state = 13, .external_lex_state = 12}, + [1569] = {.lex_state = 52, .external_lex_state = 2}, + [1570] = {.lex_state = 13, .external_lex_state = 12}, + [1571] = {.lex_state = 52, .external_lex_state = 13}, + [1572] = {.lex_state = 52, .external_lex_state = 14}, + [1573] = {.lex_state = 52, .external_lex_state = 2}, [1574] = {.lex_state = 13, .external_lex_state = 12}, - [1575] = {.lex_state = 13, .external_lex_state = 12}, + [1575] = {.lex_state = 52, .external_lex_state = 13}, [1576] = {.lex_state = 13, .external_lex_state = 12}, [1577] = {.lex_state = 13, .external_lex_state = 12}, - [1578] = {.lex_state = 52, .external_lex_state = 2}, + [1578] = {.lex_state = 13, .external_lex_state = 12}, [1579] = {.lex_state = 52, .external_lex_state = 14}, - [1580] = {.lex_state = 52, .external_lex_state = 13}, + [1580] = {.lex_state = 13, .external_lex_state = 12}, [1581] = {.lex_state = 13, .external_lex_state = 13}, [1582] = {.lex_state = 13, .external_lex_state = 13}, - [1583] = {.lex_state = 11, .external_lex_state = 9}, - [1584] = {.lex_state = 13, .external_lex_state = 13}, + [1583] = {.lex_state = 13, .external_lex_state = 13}, + [1584] = {.lex_state = 11, .external_lex_state = 9}, [1585] = {.lex_state = 13, .external_lex_state = 13}, [1586] = {.lex_state = 13, .external_lex_state = 13}, - [1587] = {.lex_state = 13, .external_lex_state = 13}, - [1588] = {.lex_state = 11, .external_lex_state = 9}, - [1589] = {.lex_state = 13, .external_lex_state = 14}, - [1590] = {.lex_state = 13, .external_lex_state = 14}, - [1591] = {.lex_state = 13, .external_lex_state = 14}, - [1592] = {.lex_state = 13, .external_lex_state = 15}, + [1587] = {.lex_state = 11, .external_lex_state = 9}, + [1588] = {.lex_state = 13, .external_lex_state = 13}, + [1589] = {.lex_state = 13, .external_lex_state = 15}, + [1590] = {.lex_state = 13, .external_lex_state = 13}, + [1591] = {.lex_state = 13, .external_lex_state = 15}, + [1592] = {.lex_state = 11, .external_lex_state = 9}, [1593] = {.lex_state = 13, .external_lex_state = 15}, - [1594] = {.lex_state = 13, .external_lex_state = 15}, - [1595] = {.lex_state = 13, .external_lex_state = 15}, - [1596] = {.lex_state = 13, .external_lex_state = 15}, - [1597] = {.lex_state = 13, .external_lex_state = 15}, - [1598] = {.lex_state = 13, .external_lex_state = 15}, - [1599] = {.lex_state = 13, .external_lex_state = 15}, + [1594] = {.lex_state = 13, .external_lex_state = 14}, + [1595] = {.lex_state = 13, .external_lex_state = 14}, + [1596] = {.lex_state = 13, .external_lex_state = 14}, + [1597] = {.lex_state = 13, .external_lex_state = 14}, + [1598] = {.lex_state = 13, .external_lex_state = 13}, + [1599] = {.lex_state = 13, .external_lex_state = 13}, [1600] = {.lex_state = 13, .external_lex_state = 13}, [1601] = {.lex_state = 13, .external_lex_state = 13}, - [1602] = {.lex_state = 11, .external_lex_state = 9}, - [1603] = {.lex_state = 13, .external_lex_state = 14}, - [1604] = {.lex_state = 13, .external_lex_state = 15}, - [1605] = {.lex_state = 13, .external_lex_state = 14}, - [1606] = {.lex_state = 13, .external_lex_state = 15}, - [1607] = {.lex_state = 13, .external_lex_state = 14}, - [1608] = {.lex_state = 13, .external_lex_state = 13}, + [1602] = {.lex_state = 13, .external_lex_state = 13}, + [1603] = {.lex_state = 13, .external_lex_state = 15}, + [1604] = {.lex_state = 11, .external_lex_state = 9}, + [1605] = {.lex_state = 13, .external_lex_state = 15}, + [1606] = {.lex_state = 13, .external_lex_state = 14}, + [1607] = {.lex_state = 13, .external_lex_state = 15}, + [1608] = {.lex_state = 13, .external_lex_state = 15}, [1609] = {.lex_state = 13, .external_lex_state = 15}, - [1610] = {.lex_state = 13, .external_lex_state = 13}, + [1610] = {.lex_state = 11, .external_lex_state = 9}, [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 13}, + [1612] = {.lex_state = 13, .external_lex_state = 15}, [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 13, .external_lex_state = 13}, + [1614] = {.lex_state = 13, .external_lex_state = 15}, [1615] = {.lex_state = 13, .external_lex_state = 15}, [1616] = {.lex_state = 13, .external_lex_state = 15}, [1617] = {.lex_state = 13, .external_lex_state = 15}, - [1618] = {.lex_state = 11, .external_lex_state = 9}, + [1618] = {.lex_state = 13, .external_lex_state = 15}, [1619] = {.lex_state = 13, .external_lex_state = 15}, - [1620] = {.lex_state = 11, .external_lex_state = 9}, - [1621] = {.lex_state = 13, .external_lex_state = 15}, + [1620] = {.lex_state = 13, .external_lex_state = 15}, + [1621] = {.lex_state = 13, .external_lex_state = 14}, [1622] = {.lex_state = 13, .external_lex_state = 15}, [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 11, .external_lex_state = 9}, + [1624] = {.lex_state = 13, .external_lex_state = 15}, [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 13, .external_lex_state = 15}, + [1626] = {.lex_state = 11, .external_lex_state = 9}, [1627] = {.lex_state = 11, .external_lex_state = 15}, [1628] = {.lex_state = 12, .external_lex_state = 15}, - [1629] = {.lex_state = 11, .external_lex_state = 15}, - [1630] = {.lex_state = 12, .external_lex_state = 15}, + [1629] = {.lex_state = 12, .external_lex_state = 15}, + [1630] = {.lex_state = 11, .external_lex_state = 9}, [1631] = {.lex_state = 12, .external_lex_state = 15}, - [1632] = {.lex_state = 12, .external_lex_state = 15}, + [1632] = {.lex_state = 11, .external_lex_state = 15}, [1633] = {.lex_state = 12, .external_lex_state = 15}, [1634] = {.lex_state = 11, .external_lex_state = 15}, - [1635] = {.lex_state = 11, .external_lex_state = 15}, - [1636] = {.lex_state = 11, .external_lex_state = 15}, - [1637] = {.lex_state = 11, .external_lex_state = 9}, + [1635] = {.lex_state = 12, .external_lex_state = 15}, + [1636] = {.lex_state = 12, .external_lex_state = 15}, + [1637] = {.lex_state = 12, .external_lex_state = 15}, [1638] = {.lex_state = 12, .external_lex_state = 15}, [1639] = {.lex_state = 11, .external_lex_state = 15}, - [1640] = {.lex_state = 12, .external_lex_state = 15}, - [1641] = {.lex_state = 12, .external_lex_state = 15}, - [1642] = {.lex_state = 12, .external_lex_state = 15}, - [1643] = {.lex_state = 11, .external_lex_state = 15}, + [1640] = {.lex_state = 11, .external_lex_state = 15}, + [1641] = {.lex_state = 11, .external_lex_state = 15}, + [1642] = {.lex_state = 11, .external_lex_state = 15}, + [1643] = {.lex_state = 12, .external_lex_state = 15}, [1644] = {.lex_state = 11, .external_lex_state = 15}, [1645] = {.lex_state = 12, .external_lex_state = 15}, [1646] = {.lex_state = 12, .external_lex_state = 15}, [1647] = {.lex_state = 5, .external_lex_state = 13}, - [1648] = {.lex_state = 5, .external_lex_state = 13}, - [1649] = {.lex_state = 5, .external_lex_state = 13}, + [1648] = {.lex_state = 11, .external_lex_state = 15}, + [1649] = {.lex_state = 12, .external_lex_state = 15}, [1650] = {.lex_state = 12, .external_lex_state = 15}, - [1651] = {.lex_state = 11, .external_lex_state = 15}, - [1652] = {.lex_state = 12, .external_lex_state = 15}, + [1651] = {.lex_state = 5, .external_lex_state = 13}, + [1652] = {.lex_state = 5, .external_lex_state = 13}, [1653] = {.lex_state = 5, .external_lex_state = 15}, [1654] = {.lex_state = 5, .external_lex_state = 15}, - [1655] = {.lex_state = 8, .external_lex_state = 9}, + [1655] = {.lex_state = 52, .external_lex_state = 12}, [1656] = {.lex_state = 52, .external_lex_state = 12}, - [1657] = {.lex_state = 52, .external_lex_state = 12}, - [1658] = {.lex_state = 52, .external_lex_state = 12}, + [1657] = {.lex_state = 8, .external_lex_state = 9}, + [1658] = {.lex_state = 8, .external_lex_state = 9}, [1659] = {.lex_state = 8, .external_lex_state = 9}, [1660] = {.lex_state = 8, .external_lex_state = 9}, - [1661] = {.lex_state = 52, .external_lex_state = 12}, + [1661] = {.lex_state = 8, .external_lex_state = 9}, [1662] = {.lex_state = 8, .external_lex_state = 9}, [1663] = {.lex_state = 52, .external_lex_state = 12}, - [1664] = {.lex_state = 52, .external_lex_state = 12}, + [1664] = {.lex_state = 8, .external_lex_state = 9}, [1665] = {.lex_state = 8, .external_lex_state = 9}, - [1666] = {.lex_state = 52, .external_lex_state = 12}, - [1667] = {.lex_state = 8, .external_lex_state = 9}, - [1668] = {.lex_state = 8, .external_lex_state = 9}, - [1669] = {.lex_state = 8, .external_lex_state = 9}, - [1670] = {.lex_state = 8, .external_lex_state = 9}, + [1666] = {.lex_state = 8, .external_lex_state = 9}, + [1667] = {.lex_state = 52, .external_lex_state = 12}, + [1668] = {.lex_state = 52, .external_lex_state = 12}, + [1669] = {.lex_state = 52, .external_lex_state = 12}, + [1670] = {.lex_state = 52, .external_lex_state = 12}, [1671] = {.lex_state = 52, .external_lex_state = 12}, - [1672] = {.lex_state = 52, .external_lex_state = 13}, - [1673] = {.lex_state = 0, .external_lex_state = 16}, + [1672] = {.lex_state = 0, .external_lex_state = 16}, + [1673] = {.lex_state = 52, .external_lex_state = 14}, [1674] = {.lex_state = 0, .external_lex_state = 16}, [1675] = {.lex_state = 0, .external_lex_state = 16}, [1676] = {.lex_state = 52, .external_lex_state = 13}, - [1677] = {.lex_state = 0, .external_lex_state = 16}, + [1677] = {.lex_state = 52, .external_lex_state = 13}, [1678] = {.lex_state = 0, .external_lex_state = 16}, [1679] = {.lex_state = 0, .external_lex_state = 16}, - [1680] = {.lex_state = 0, .external_lex_state = 16}, + [1680] = {.lex_state = 52, .external_lex_state = 13}, [1681] = {.lex_state = 52, .external_lex_state = 13}, - [1682] = {.lex_state = 0, .external_lex_state = 16}, + [1682] = {.lex_state = 52, .external_lex_state = 13}, [1683] = {.lex_state = 0, .external_lex_state = 16}, [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 52, .external_lex_state = 13}, + [1685] = {.lex_state = 0, .external_lex_state = 16}, [1686] = {.lex_state = 52, .external_lex_state = 13}, - [1687] = {.lex_state = 0, .external_lex_state = 16}, + [1687] = {.lex_state = 52, .external_lex_state = 13}, [1688] = {.lex_state = 52, .external_lex_state = 13}, - [1689] = {.lex_state = 52, .external_lex_state = 14}, - [1690] = {.lex_state = 52, .external_lex_state = 13}, - [1691] = {.lex_state = 52, .external_lex_state = 14}, + [1689] = {.lex_state = 0, .external_lex_state = 16}, + [1690] = {.lex_state = 0, .external_lex_state = 16}, + [1691] = {.lex_state = 52, .external_lex_state = 13}, [1692] = {.lex_state = 52, .external_lex_state = 13}, - [1693] = {.lex_state = 0, .external_lex_state = 16}, - [1694] = {.lex_state = 52, .external_lex_state = 14}, - [1695] = {.lex_state = 52, .external_lex_state = 13}, + [1693] = {.lex_state = 52, .external_lex_state = 13}, + [1694] = {.lex_state = 52, .external_lex_state = 13}, + [1695] = {.lex_state = 0, .external_lex_state = 16}, [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 52, .external_lex_state = 14}, - [1698] = {.lex_state = 8, .external_lex_state = 9}, - [1699] = {.lex_state = 52, .external_lex_state = 13}, - [1700] = {.lex_state = 52, .external_lex_state = 13}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 52, .external_lex_state = 13}, - [1704] = {.lex_state = 52, .external_lex_state = 13}, + [1697] = {.lex_state = 52, .external_lex_state = 13}, + [1698] = {.lex_state = 52, .external_lex_state = 13}, + [1699] = {.lex_state = 0, .external_lex_state = 16}, + [1700] = {.lex_state = 0, .external_lex_state = 16}, + [1701] = {.lex_state = 52, .external_lex_state = 13}, + [1702] = {.lex_state = 52, .external_lex_state = 13}, + [1703] = {.lex_state = 0, .external_lex_state = 16}, + [1704] = {.lex_state = 0, .external_lex_state = 16}, [1705] = {.lex_state = 52, .external_lex_state = 14}, [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 52, .external_lex_state = 13}, - [1708] = {.lex_state = 0, .external_lex_state = 16}, - [1709] = {.lex_state = 0, .external_lex_state = 16}, - [1710] = {.lex_state = 52, .external_lex_state = 13}, + [1707] = {.lex_state = 52, .external_lex_state = 14}, + [1708] = {.lex_state = 52, .external_lex_state = 13}, + [1709] = {.lex_state = 52, .external_lex_state = 14}, + [1710] = {.lex_state = 0, .external_lex_state = 16}, [1711] = {.lex_state = 52, .external_lex_state = 14}, - [1712] = {.lex_state = 0, .external_lex_state = 16}, - [1713] = {.lex_state = 52, .external_lex_state = 13}, - [1714] = {.lex_state = 52, .external_lex_state = 13}, - [1715] = {.lex_state = 52, .external_lex_state = 14}, - [1716] = {.lex_state = 52, .external_lex_state = 14}, + [1712] = {.lex_state = 52, .external_lex_state = 14}, + [1713] = {.lex_state = 52, .external_lex_state = 14}, + [1714] = {.lex_state = 52, .external_lex_state = 14}, + [1715] = {.lex_state = 0, .external_lex_state = 16}, + [1716] = {.lex_state = 8, .external_lex_state = 9}, [1717] = {.lex_state = 8, .external_lex_state = 15}, - [1718] = {.lex_state = 8, .external_lex_state = 15}, - [1719] = {.lex_state = 8, .external_lex_state = 15}, + [1718] = {.lex_state = 8, .external_lex_state = 13}, + [1719] = {.lex_state = 8, .external_lex_state = 13}, [1720] = {.lex_state = 8, .external_lex_state = 15}, - [1721] = {.lex_state = 8, .external_lex_state = 13}, - [1722] = {.lex_state = 8, .external_lex_state = 15}, + [1721] = {.lex_state = 8, .external_lex_state = 15}, + [1722] = {.lex_state = 8, .external_lex_state = 13}, [1723] = {.lex_state = 8, .external_lex_state = 13}, [1724] = {.lex_state = 8, .external_lex_state = 13}, [1725] = {.lex_state = 8, .external_lex_state = 15}, - [1726] = {.lex_state = 8, .external_lex_state = 9}, - [1727] = {.lex_state = 8, .external_lex_state = 13}, - [1728] = {.lex_state = 52, .external_lex_state = 12}, - [1729] = {.lex_state = 8, .external_lex_state = 13}, + [1726] = {.lex_state = 8, .external_lex_state = 13}, + [1727] = {.lex_state = 8, .external_lex_state = 15}, + [1728] = {.lex_state = 8, .external_lex_state = 13}, + [1729] = {.lex_state = 8, .external_lex_state = 15}, [1730] = {.lex_state = 8, .external_lex_state = 15}, - [1731] = {.lex_state = 52, .external_lex_state = 12}, - [1732] = {.lex_state = 8, .external_lex_state = 13}, - [1733] = {.lex_state = 8, .external_lex_state = 15}, - [1734] = {.lex_state = 8, .external_lex_state = 13}, - [1735] = {.lex_state = 8, .external_lex_state = 15}, + [1731] = {.lex_state = 8, .external_lex_state = 15}, + [1732] = {.lex_state = 52, .external_lex_state = 12}, + [1733] = {.lex_state = 8, .external_lex_state = 13}, + [1734] = {.lex_state = 8, .external_lex_state = 15}, + [1735] = {.lex_state = 8, .external_lex_state = 13}, [1736] = {.lex_state = 8, .external_lex_state = 13}, - [1737] = {.lex_state = 8, .external_lex_state = 13}, - [1738] = {.lex_state = 8, .external_lex_state = 13}, - [1739] = {.lex_state = 8, .external_lex_state = 14}, - [1740] = {.lex_state = 8, .external_lex_state = 14}, - [1741] = {.lex_state = 8, .external_lex_state = 14}, - [1742] = {.lex_state = 8, .external_lex_state = 14}, - [1743] = {.lex_state = 8, .external_lex_state = 14}, - [1744] = {.lex_state = 8, .external_lex_state = 14}, + [1737] = {.lex_state = 52, .external_lex_state = 12}, + [1738] = {.lex_state = 8, .external_lex_state = 9}, + [1739] = {.lex_state = 52, .external_lex_state = 12}, + [1740] = {.lex_state = 52, .external_lex_state = 12}, + [1741] = {.lex_state = 52, .external_lex_state = 12}, + [1742] = {.lex_state = 52, .external_lex_state = 12}, + [1743] = {.lex_state = 52, .external_lex_state = 12}, + [1744] = {.lex_state = 52, .external_lex_state = 12}, [1745] = {.lex_state = 52, .external_lex_state = 12}, - [1746] = {.lex_state = 8, .external_lex_state = 14}, - [1747] = {.lex_state = 52, .external_lex_state = 12}, + [1746] = {.lex_state = 52, .external_lex_state = 9}, + [1747] = {.lex_state = 8, .external_lex_state = 15}, [1748] = {.lex_state = 8, .external_lex_state = 15}, - [1749] = {.lex_state = 52, .external_lex_state = 9}, + [1749] = {.lex_state = 52, .external_lex_state = 12}, [1750] = {.lex_state = 52, .external_lex_state = 12}, - [1751] = {.lex_state = 52, .external_lex_state = 12}, - [1752] = {.lex_state = 8, .external_lex_state = 15}, + [1751] = {.lex_state = 8, .external_lex_state = 14}, + [1752] = {.lex_state = 52, .external_lex_state = 12}, [1753] = {.lex_state = 52, .external_lex_state = 12}, [1754] = {.lex_state = 52, .external_lex_state = 12}, [1755] = {.lex_state = 52, .external_lex_state = 12}, - [1756] = {.lex_state = 52, .external_lex_state = 12}, - [1757] = {.lex_state = 8, .external_lex_state = 14}, + [1756] = {.lex_state = 8, .external_lex_state = 14}, + [1757] = {.lex_state = 8, .external_lex_state = 15}, [1758] = {.lex_state = 52, .external_lex_state = 12}, [1759] = {.lex_state = 52, .external_lex_state = 12}, - [1760] = {.lex_state = 52, .external_lex_state = 12}, - [1761] = {.lex_state = 52, .external_lex_state = 12}, + [1760] = {.lex_state = 8, .external_lex_state = 14}, + [1761] = {.lex_state = 8, .external_lex_state = 15}, [1762] = {.lex_state = 52, .external_lex_state = 12}, - [1763] = {.lex_state = 52, .external_lex_state = 12}, - [1764] = {.lex_state = 52, .external_lex_state = 12}, - [1765] = {.lex_state = 8, .external_lex_state = 15}, - [1766] = {.lex_state = 52, .external_lex_state = 12}, - [1767] = {.lex_state = 8, .external_lex_state = 14}, - [1768] = {.lex_state = 52, .external_lex_state = 12}, - [1769] = {.lex_state = 8, .external_lex_state = 15}, - [1770] = {.lex_state = 52, .external_lex_state = 12}, - [1771] = {.lex_state = 8, .external_lex_state = 14}, - [1772] = {.lex_state = 52, .external_lex_state = 12}, - [1773] = {.lex_state = 8, .external_lex_state = 15}, + [1763] = {.lex_state = 8, .external_lex_state = 14}, + [1764] = {.lex_state = 8, .external_lex_state = 14}, + [1765] = {.lex_state = 8, .external_lex_state = 14}, + [1766] = {.lex_state = 8, .external_lex_state = 14}, + [1767] = {.lex_state = 52, .external_lex_state = 12}, + [1768] = {.lex_state = 8, .external_lex_state = 14}, + [1769] = {.lex_state = 52, .external_lex_state = 12}, + [1770] = {.lex_state = 8, .external_lex_state = 15}, + [1771] = {.lex_state = 52, .external_lex_state = 12}, + [1772] = {.lex_state = 8, .external_lex_state = 14}, + [1773] = {.lex_state = 8, .external_lex_state = 14}, [1774] = {.lex_state = 52, .external_lex_state = 12}, - [1775] = {.lex_state = 52, .external_lex_state = 9}, - [1776] = {.lex_state = 52, .external_lex_state = 14}, - [1777] = {.lex_state = 52, .external_lex_state = 13}, - [1778] = {.lex_state = 52, .external_lex_state = 14}, + [1775] = {.lex_state = 0, .external_lex_state = 16}, + [1776] = {.lex_state = 9, .external_lex_state = 17}, + [1777] = {.lex_state = 52, .external_lex_state = 14}, + [1778] = {.lex_state = 52, .external_lex_state = 9}, [1779] = {.lex_state = 52, .external_lex_state = 14}, - [1780] = {.lex_state = 52, .external_lex_state = 12}, + [1780] = {.lex_state = 52, .external_lex_state = 9}, [1781] = {.lex_state = 52, .external_lex_state = 9}, - [1782] = {.lex_state = 52, .external_lex_state = 15}, - [1783] = {.lex_state = 52, .external_lex_state = 14}, - [1784] = {.lex_state = 52, .external_lex_state = 9}, - [1785] = {.lex_state = 9, .external_lex_state = 17}, - [1786] = {.lex_state = 52, .external_lex_state = 14}, - [1787] = {.lex_state = 7, .external_lex_state = 14}, - [1788] = {.lex_state = 52, .external_lex_state = 12}, - [1789] = {.lex_state = 52, .external_lex_state = 12}, + [1782] = {.lex_state = 52, .external_lex_state = 9}, + [1783] = {.lex_state = 52, .external_lex_state = 13}, + [1784] = {.lex_state = 52, .external_lex_state = 14}, + [1785] = {.lex_state = 52, .external_lex_state = 13}, + [1786] = {.lex_state = 7, .external_lex_state = 12}, + [1787] = {.lex_state = 52, .external_lex_state = 14}, + [1788] = {.lex_state = 9, .external_lex_state = 17}, + [1789] = {.lex_state = 52, .external_lex_state = 9}, [1790] = {.lex_state = 52, .external_lex_state = 14}, - [1791] = {.lex_state = 52, .external_lex_state = 13}, - [1792] = {.lex_state = 52, .external_lex_state = 13}, + [1791] = {.lex_state = 52, .external_lex_state = 15}, + [1792] = {.lex_state = 52, .external_lex_state = 12}, [1793] = {.lex_state = 52, .external_lex_state = 14}, - [1794] = {.lex_state = 7, .external_lex_state = 12}, - [1795] = {.lex_state = 7, .external_lex_state = 13}, - [1796] = {.lex_state = 52, .external_lex_state = 13}, + [1794] = {.lex_state = 52, .external_lex_state = 12}, + [1795] = {.lex_state = 52, .external_lex_state = 14}, + [1796] = {.lex_state = 52, .external_lex_state = 15}, [1797] = {.lex_state = 52, .external_lex_state = 14}, - [1798] = {.lex_state = 52, .external_lex_state = 9}, - [1799] = {.lex_state = 52, .external_lex_state = 13}, + [1798] = {.lex_state = 52, .external_lex_state = 13}, + [1799] = {.lex_state = 9, .external_lex_state = 17}, [1800] = {.lex_state = 52, .external_lex_state = 14}, [1801] = {.lex_state = 52, .external_lex_state = 14}, - [1802] = {.lex_state = 9, .external_lex_state = 17}, - [1803] = {.lex_state = 52, .external_lex_state = 13}, - [1804] = {.lex_state = 52, .external_lex_state = 14}, - [1805] = {.lex_state = 52, .external_lex_state = 14}, - [1806] = {.lex_state = 52, .external_lex_state = 14}, - [1807] = {.lex_state = 9, .external_lex_state = 17}, - [1808] = {.lex_state = 52, .external_lex_state = 12}, - [1809] = {.lex_state = 52, .external_lex_state = 14}, + [1802] = {.lex_state = 52, .external_lex_state = 14}, + [1803] = {.lex_state = 52, .external_lex_state = 14}, + [1804] = {.lex_state = 52, .external_lex_state = 12}, + [1805] = {.lex_state = 52, .external_lex_state = 9}, + [1806] = {.lex_state = 52, .external_lex_state = 13}, + [1807] = {.lex_state = 52, .external_lex_state = 13}, + [1808] = {.lex_state = 52, .external_lex_state = 13}, + [1809] = {.lex_state = 52, .external_lex_state = 13}, [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 0, .external_lex_state = 16}, - [1812] = {.lex_state = 52, .external_lex_state = 14}, - [1813] = {.lex_state = 52, .external_lex_state = 9}, + [1811] = {.lex_state = 7, .external_lex_state = 13}, + [1812] = {.lex_state = 0, .external_lex_state = 16}, + [1813] = {.lex_state = 52, .external_lex_state = 13}, [1814] = {.lex_state = 52, .external_lex_state = 14}, - [1815] = {.lex_state = 52, .external_lex_state = 13}, - [1816] = {.lex_state = 0, .external_lex_state = 16}, + [1815] = {.lex_state = 52, .external_lex_state = 9}, + [1816] = {.lex_state = 52, .external_lex_state = 14}, [1817] = {.lex_state = 52, .external_lex_state = 14}, - [1818] = {.lex_state = 52, .external_lex_state = 13}, - [1819] = {.lex_state = 52, .external_lex_state = 13}, + [1818] = {.lex_state = 52, .external_lex_state = 2}, + [1819] = {.lex_state = 8, .external_lex_state = 15}, [1820] = {.lex_state = 52, .external_lex_state = 14}, - [1821] = {.lex_state = 52, .external_lex_state = 13}, - [1822] = {.lex_state = 52, .external_lex_state = 14}, - [1823] = {.lex_state = 52, .external_lex_state = 13}, - [1824] = {.lex_state = 52, .external_lex_state = 14}, - [1825] = {.lex_state = 8, .external_lex_state = 15}, - [1826] = {.lex_state = 52, .external_lex_state = 15}, - [1827] = {.lex_state = 52, .external_lex_state = 9}, + [1821] = {.lex_state = 52, .external_lex_state = 14}, + [1822] = {.lex_state = 9, .external_lex_state = 17}, + [1823] = {.lex_state = 52, .external_lex_state = 14}, + [1824] = {.lex_state = 52, .external_lex_state = 12}, + [1825] = {.lex_state = 52, .external_lex_state = 14}, + [1826] = {.lex_state = 52, .external_lex_state = 14}, + [1827] = {.lex_state = 52, .external_lex_state = 13}, [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 52, .external_lex_state = 13}, - [1830] = {.lex_state = 52, .external_lex_state = 2}, - [1831] = {.lex_state = 52, .external_lex_state = 9}, - [1832] = {.lex_state = 52, .external_lex_state = 9}, - [1833] = {.lex_state = 9, .external_lex_state = 17}, - [1834] = {.lex_state = 52, .external_lex_state = 14}, - [1835] = {.lex_state = 52, .external_lex_state = 12}, + [1829] = {.lex_state = 52, .external_lex_state = 9}, + [1830] = {.lex_state = 52, .external_lex_state = 13}, + [1831] = {.lex_state = 52, .external_lex_state = 14}, + [1832] = {.lex_state = 52, .external_lex_state = 13}, + [1833] = {.lex_state = 7, .external_lex_state = 14}, + [1834] = {.lex_state = 52, .external_lex_state = 13}, + [1835] = {.lex_state = 52, .external_lex_state = 15}, [1836] = {.lex_state = 52, .external_lex_state = 12}, - [1837] = {.lex_state = 52, .external_lex_state = 12}, - [1838] = {.lex_state = 7, .external_lex_state = 15}, - [1839] = {.lex_state = 52, .external_lex_state = 12}, - [1840] = {.lex_state = 52, .external_lex_state = 14}, - [1841] = {.lex_state = 52, .external_lex_state = 12}, - [1842] = {.lex_state = 52, .external_lex_state = 12}, - [1843] = {.lex_state = 7, .external_lex_state = 13}, - [1844] = {.lex_state = 52, .external_lex_state = 15}, - [1845] = {.lex_state = 52, .external_lex_state = 15}, - [1846] = {.lex_state = 52, .external_lex_state = 8}, - [1847] = {.lex_state = 52, .external_lex_state = 14}, - [1848] = {.lex_state = 7, .external_lex_state = 13}, - [1849] = {.lex_state = 52, .external_lex_state = 9}, - [1850] = {.lex_state = 52, .external_lex_state = 13}, - [1851] = {.lex_state = 52, .external_lex_state = 15}, - [1852] = {.lex_state = 7, .external_lex_state = 12}, + [1837] = {.lex_state = 52, .external_lex_state = 14}, + [1838] = {.lex_state = 7, .external_lex_state = 14}, + [1839] = {.lex_state = 52, .external_lex_state = 15}, + [1840] = {.lex_state = 7, .external_lex_state = 13}, + [1841] = {.lex_state = 7, .external_lex_state = 12}, + [1842] = {.lex_state = 52, .external_lex_state = 7}, + [1843] = {.lex_state = 52, .external_lex_state = 13}, + [1844] = {.lex_state = 52, .external_lex_state = 14}, + [1845] = {.lex_state = 52, .external_lex_state = 12}, + [1846] = {.lex_state = 52, .external_lex_state = 15}, + [1847] = {.lex_state = 52, .external_lex_state = 6}, + [1848] = {.lex_state = 52, .external_lex_state = 13}, + [1849] = {.lex_state = 7, .external_lex_state = 14}, + [1850] = {.lex_state = 52, .external_lex_state = 14}, + [1851] = {.lex_state = 52, .external_lex_state = 14}, + [1852] = {.lex_state = 52, .external_lex_state = 13}, [1853] = {.lex_state = 52, .external_lex_state = 14}, - [1854] = {.lex_state = 52, .external_lex_state = 12}, - [1855] = {.lex_state = 52, .external_lex_state = 13}, - [1856] = {.lex_state = 52, .external_lex_state = 13}, + [1854] = {.lex_state = 7, .external_lex_state = 13}, + [1855] = {.lex_state = 52, .external_lex_state = 12}, + [1856] = {.lex_state = 52, .external_lex_state = 15}, [1857] = {.lex_state = 52, .external_lex_state = 15}, - [1858] = {.lex_state = 52, .external_lex_state = 12}, - [1859] = {.lex_state = 52, .external_lex_state = 9}, - [1860] = {.lex_state = 52, .external_lex_state = 14}, + [1858] = {.lex_state = 52, .external_lex_state = 8}, + [1859] = {.lex_state = 52, .external_lex_state = 12}, + [1860] = {.lex_state = 52, .external_lex_state = 9}, [1861] = {.lex_state = 52, .external_lex_state = 14}, - [1862] = {.lex_state = 7, .external_lex_state = 14}, + [1862] = {.lex_state = 52, .external_lex_state = 12}, [1863] = {.lex_state = 52, .external_lex_state = 15}, - [1864] = {.lex_state = 7, .external_lex_state = 14}, - [1865] = {.lex_state = 7, .external_lex_state = 12}, - [1866] = {.lex_state = 52, .external_lex_state = 15}, - [1867] = {.lex_state = 52, .external_lex_state = 12}, - [1868] = {.lex_state = 52, .external_lex_state = 13}, + [1864] = {.lex_state = 7, .external_lex_state = 13}, + [1865] = {.lex_state = 52, .external_lex_state = 12}, + [1866] = {.lex_state = 52, .external_lex_state = 12}, + [1867] = {.lex_state = 52, .external_lex_state = 13}, + [1868] = {.lex_state = 52, .external_lex_state = 15}, [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 52, .external_lex_state = 12}, - [1871] = {.lex_state = 52, .external_lex_state = 15}, - [1872] = {.lex_state = 52, .external_lex_state = 14}, - [1873] = {.lex_state = 7, .external_lex_state = 13}, - [1874] = {.lex_state = 52, .external_lex_state = 14}, - [1875] = {.lex_state = 52, .external_lex_state = 13}, - [1876] = {.lex_state = 52, .external_lex_state = 13}, - [1877] = {.lex_state = 52, .external_lex_state = 7}, + [1870] = {.lex_state = 7, .external_lex_state = 14}, + [1871] = {.lex_state = 7, .external_lex_state = 12}, + [1872] = {.lex_state = 52, .external_lex_state = 12}, + [1873] = {.lex_state = 7, .external_lex_state = 15}, + [1874] = {.lex_state = 52, .external_lex_state = 13}, + [1875] = {.lex_state = 52, .external_lex_state = 12}, + [1876] = {.lex_state = 7, .external_lex_state = 12}, + [1877] = {.lex_state = 52, .external_lex_state = 9}, [1878] = {.lex_state = 52, .external_lex_state = 12}, - [1879] = {.lex_state = 52, .external_lex_state = 14}, - [1880] = {.lex_state = 52, .external_lex_state = 6}, + [1879] = {.lex_state = 52, .external_lex_state = 13}, + [1880] = {.lex_state = 52, .external_lex_state = 12}, [1881] = {.lex_state = 52, .external_lex_state = 15}, - [1882] = {.lex_state = 7, .external_lex_state = 14}, - [1883] = {.lex_state = 52, .external_lex_state = 12}, - [1884] = {.lex_state = 7, .external_lex_state = 12}, - [1885] = {.lex_state = 52, .external_lex_state = 15}, - [1886] = {.lex_state = 52, .external_lex_state = 13}, - [1887] = {.lex_state = 0, .external_lex_state = 16}, + [1882] = {.lex_state = 52, .external_lex_state = 14}, + [1883] = {.lex_state = 52, .external_lex_state = 14}, + [1884] = {.lex_state = 52, .external_lex_state = 12}, + [1885] = {.lex_state = 0, .external_lex_state = 16}, + [1886] = {.lex_state = 52, .external_lex_state = 12}, + [1887] = {.lex_state = 52, .external_lex_state = 12}, [1888] = {.lex_state = 8, .external_lex_state = 13}, - [1889] = {.lex_state = 52, .external_lex_state = 12}, + [1889] = {.lex_state = 8, .external_lex_state = 9}, [1890] = {.lex_state = 8, .external_lex_state = 9}, - [1891] = {.lex_state = 0, .external_lex_state = 16}, - [1892] = {.lex_state = 8, .external_lex_state = 13}, + [1891] = {.lex_state = 52, .external_lex_state = 14}, + [1892] = {.lex_state = 52, .external_lex_state = 12}, [1893] = {.lex_state = 52, .external_lex_state = 15}, - [1894] = {.lex_state = 52, .external_lex_state = 13}, - [1895] = {.lex_state = 52, .external_lex_state = 14}, - [1896] = {.lex_state = 8, .external_lex_state = 9}, - [1897] = {.lex_state = 8, .external_lex_state = 9}, - [1898] = {.lex_state = 8, .external_lex_state = 9}, - [1899] = {.lex_state = 8, .external_lex_state = 9}, - [1900] = {.lex_state = 52, .external_lex_state = 9}, - [1901] = {.lex_state = 8, .external_lex_state = 9}, - [1902] = {.lex_state = 52, .external_lex_state = 13}, - [1903] = {.lex_state = 8, .external_lex_state = 13}, - [1904] = {.lex_state = 52, .external_lex_state = 15}, - [1905] = {.lex_state = 0, .external_lex_state = 16}, - [1906] = {.lex_state = 52, .external_lex_state = 13}, - [1907] = {.lex_state = 52, .external_lex_state = 14}, - [1908] = {.lex_state = 52, .external_lex_state = 13}, - [1909] = {.lex_state = 52, .external_lex_state = 15}, - [1910] = {.lex_state = 52, .external_lex_state = 12}, - [1911] = {.lex_state = 52, .external_lex_state = 14}, + [1894] = {.lex_state = 8, .external_lex_state = 9}, + [1895] = {.lex_state = 7, .external_lex_state = 13}, + [1896] = {.lex_state = 8, .external_lex_state = 15}, + [1897] = {.lex_state = 52, .external_lex_state = 13}, + [1898] = {.lex_state = 7, .external_lex_state = 9}, + [1899] = {.lex_state = 52, .external_lex_state = 13}, + [1900] = {.lex_state = 52, .external_lex_state = 12}, + [1901] = {.lex_state = 52, .external_lex_state = 14}, + [1902] = {.lex_state = 52, .external_lex_state = 12}, + [1903] = {.lex_state = 52, .external_lex_state = 12}, + [1904] = {.lex_state = 8, .external_lex_state = 14}, + [1905] = {.lex_state = 52, .external_lex_state = 12}, + [1906] = {.lex_state = 7, .external_lex_state = 9}, + [1907] = {.lex_state = 52, .external_lex_state = 13}, + [1908] = {.lex_state = 52, .external_lex_state = 15}, + [1909] = {.lex_state = 52, .external_lex_state = 14}, + [1910] = {.lex_state = 52, .external_lex_state = 13}, + [1911] = {.lex_state = 52, .external_lex_state = 15}, [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 14}, - [1914] = {.lex_state = 52, .external_lex_state = 15}, - [1915] = {.lex_state = 8, .external_lex_state = 15}, + [1913] = {.lex_state = 52, .external_lex_state = 15}, + [1914] = {.lex_state = 52, .external_lex_state = 14}, + [1915] = {.lex_state = 52, .external_lex_state = 15}, [1916] = {.lex_state = 52, .external_lex_state = 13}, [1917] = {.lex_state = 52, .external_lex_state = 12}, - [1918] = {.lex_state = 52, .external_lex_state = 13}, + [1918] = {.lex_state = 8, .external_lex_state = 13}, [1919] = {.lex_state = 52, .external_lex_state = 15}, - [1920] = {.lex_state = 52, .external_lex_state = 15}, - [1921] = {.lex_state = 52, .external_lex_state = 14}, - [1922] = {.lex_state = 52, .external_lex_state = 12}, - [1923] = {.lex_state = 8, .external_lex_state = 14}, - [1924] = {.lex_state = 7, .external_lex_state = 9}, - [1925] = {.lex_state = 52, .external_lex_state = 13}, - [1926] = {.lex_state = 8, .external_lex_state = 9}, - [1927] = {.lex_state = 52, .external_lex_state = 14}, - [1928] = {.lex_state = 52, .external_lex_state = 12}, - [1929] = {.lex_state = 0, .external_lex_state = 16}, + [1920] = {.lex_state = 52, .external_lex_state = 13}, + [1921] = {.lex_state = 52, .external_lex_state = 13}, + [1922] = {.lex_state = 8, .external_lex_state = 14}, + [1923] = {.lex_state = 7, .external_lex_state = 12}, + [1924] = {.lex_state = 0, .external_lex_state = 16}, + [1925] = {.lex_state = 8, .external_lex_state = 13}, + [1926] = {.lex_state = 0, .external_lex_state = 16}, + [1927] = {.lex_state = 52, .external_lex_state = 9}, + [1928] = {.lex_state = 52, .external_lex_state = 14}, + [1929] = {.lex_state = 52, .external_lex_state = 14}, [1930] = {.lex_state = 52, .external_lex_state = 15}, - [1931] = {.lex_state = 52, .external_lex_state = 15}, - [1932] = {.lex_state = 7, .external_lex_state = 12}, - [1933] = {.lex_state = 52, .external_lex_state = 15}, - [1934] = {.lex_state = 52, .external_lex_state = 15}, - [1935] = {.lex_state = 7, .external_lex_state = 14}, - [1936] = {.lex_state = 52, .external_lex_state = 14}, - [1937] = {.lex_state = 52, .external_lex_state = 9}, - [1938] = {.lex_state = 8, .external_lex_state = 15}, - [1939] = {.lex_state = 8, .external_lex_state = 15}, - [1940] = {.lex_state = 8, .external_lex_state = 14}, - [1941] = {.lex_state = 52, .external_lex_state = 13}, - [1942] = {.lex_state = 52, .external_lex_state = 14}, - [1943] = {.lex_state = 52, .external_lex_state = 14}, - [1944] = {.lex_state = 52, .external_lex_state = 12}, - [1945] = {.lex_state = 52, .external_lex_state = 13}, - [1946] = {.lex_state = 8, .external_lex_state = 14}, - [1947] = {.lex_state = 52, .external_lex_state = 14}, - [1948] = {.lex_state = 7, .external_lex_state = 9}, - [1949] = {.lex_state = 0, .external_lex_state = 16}, - [1950] = {.lex_state = 52, .external_lex_state = 14}, - [1951] = {.lex_state = 8, .external_lex_state = 13}, - [1952] = {.lex_state = 52, .external_lex_state = 12}, - [1953] = {.lex_state = 52, .external_lex_state = 9}, - [1954] = {.lex_state = 8, .external_lex_state = 13}, - [1955] = {.lex_state = 8, .external_lex_state = 13}, - [1956] = {.lex_state = 0, .external_lex_state = 16}, - [1957] = {.lex_state = 52, .external_lex_state = 13}, - [1958] = {.lex_state = 52, .external_lex_state = 12}, - [1959] = {.lex_state = 52, .external_lex_state = 12}, - [1960] = {.lex_state = 52, .external_lex_state = 15}, - [1961] = {.lex_state = 52, .external_lex_state = 12}, - [1962] = {.lex_state = 52, .external_lex_state = 12}, - [1963] = {.lex_state = 8, .external_lex_state = 9}, - [1964] = {.lex_state = 52, .external_lex_state = 14}, - [1965] = {.lex_state = 8, .external_lex_state = 13}, - [1966] = {.lex_state = 52, .external_lex_state = 13}, - [1967] = {.lex_state = 8, .external_lex_state = 9}, - [1968] = {.lex_state = 8, .external_lex_state = 14}, - [1969] = {.lex_state = 0, .external_lex_state = 16}, - [1970] = {.lex_state = 52, .external_lex_state = 13}, - [1971] = {.lex_state = 52, .external_lex_state = 15}, - [1972] = {.lex_state = 0, .external_lex_state = 16}, - [1973] = {.lex_state = 52, .external_lex_state = 15}, - [1974] = {.lex_state = 52, .external_lex_state = 13}, - [1975] = {.lex_state = 7, .external_lex_state = 13}, - [1976] = {.lex_state = 52, .external_lex_state = 14}, - [1977] = {.lex_state = 8, .external_lex_state = 13}, + [1931] = {.lex_state = 52, .external_lex_state = 14}, + [1932] = {.lex_state = 8, .external_lex_state = 13}, + [1933] = {.lex_state = 52, .external_lex_state = 12}, + [1934] = {.lex_state = 0, .external_lex_state = 16}, + [1935] = {.lex_state = 52, .external_lex_state = 12}, + [1936] = {.lex_state = 52, .external_lex_state = 13}, + [1937] = {.lex_state = 52, .external_lex_state = 14}, + [1938] = {.lex_state = 0, .external_lex_state = 16}, + [1939] = {.lex_state = 52, .external_lex_state = 14}, + [1940] = {.lex_state = 0, .external_lex_state = 16}, + [1941] = {.lex_state = 52, .external_lex_state = 15}, + [1942] = {.lex_state = 52, .external_lex_state = 15}, + [1943] = {.lex_state = 52, .external_lex_state = 15}, + [1944] = {.lex_state = 52, .external_lex_state = 14}, + [1945] = {.lex_state = 8, .external_lex_state = 13}, + [1946] = {.lex_state = 7, .external_lex_state = 9}, + [1947] = {.lex_state = 52, .external_lex_state = 15}, + [1948] = {.lex_state = 52, .external_lex_state = 13}, + [1949] = {.lex_state = 52, .external_lex_state = 13}, + [1950] = {.lex_state = 8, .external_lex_state = 9}, + [1951] = {.lex_state = 52, .external_lex_state = 12}, + [1952] = {.lex_state = 8, .external_lex_state = 13}, + [1953] = {.lex_state = 52, .external_lex_state = 13}, + [1954] = {.lex_state = 52, .external_lex_state = 15}, + [1955] = {.lex_state = 52, .external_lex_state = 13}, + [1956] = {.lex_state = 52, .external_lex_state = 14}, + [1957] = {.lex_state = 8, .external_lex_state = 13}, + [1958] = {.lex_state = 8, .external_lex_state = 14}, + [1959] = {.lex_state = 52, .external_lex_state = 15}, + [1960] = {.lex_state = 8, .external_lex_state = 13}, + [1961] = {.lex_state = 52, .external_lex_state = 13}, + [1962] = {.lex_state = 52, .external_lex_state = 13}, + [1963] = {.lex_state = 8, .external_lex_state = 15}, + [1964] = {.lex_state = 52, .external_lex_state = 12}, + [1965] = {.lex_state = 52, .external_lex_state = 9}, + [1966] = {.lex_state = 8, .external_lex_state = 9}, + [1967] = {.lex_state = 52, .external_lex_state = 15}, + [1968] = {.lex_state = 52, .external_lex_state = 12}, + [1969] = {.lex_state = 52, .external_lex_state = 13}, + [1970] = {.lex_state = 52, .external_lex_state = 9}, + [1971] = {.lex_state = 8, .external_lex_state = 9}, + [1972] = {.lex_state = 8, .external_lex_state = 9}, + [1973] = {.lex_state = 52, .external_lex_state = 14}, + [1974] = {.lex_state = 8, .external_lex_state = 9}, + [1975] = {.lex_state = 0, .external_lex_state = 16}, + [1976] = {.lex_state = 0, .external_lex_state = 16}, + [1977] = {.lex_state = 52, .external_lex_state = 13}, [1978] = {.lex_state = 52, .external_lex_state = 12}, - [1979] = {.lex_state = 52, .external_lex_state = 13}, - [1980] = {.lex_state = 52, .external_lex_state = 12}, - [1981] = {.lex_state = 8, .external_lex_state = 9}, - [1982] = {.lex_state = 52, .external_lex_state = 12}, - [1983] = {.lex_state = 52, .external_lex_state = 13}, - [1984] = {.lex_state = 52, .external_lex_state = 13}, - [1985] = {.lex_state = 7, .external_lex_state = 9}, - [1986] = {.lex_state = 8, .external_lex_state = 13}, - [1987] = {.lex_state = 8, .external_lex_state = 13}, - [1988] = {.lex_state = 52, .external_lex_state = 15}, - [1989] = {.lex_state = 52, .external_lex_state = 14}, - [1990] = {.lex_state = 52, .external_lex_state = 13}, - [1991] = {.lex_state = 52, .external_lex_state = 12}, - [1992] = {.lex_state = 52, .external_lex_state = 12}, - [1993] = {.lex_state = 8, .external_lex_state = 14}, - [1994] = {.lex_state = 52, .external_lex_state = 15}, - [1995] = {.lex_state = 52, .external_lex_state = 12}, - [1996] = {.lex_state = 52, .external_lex_state = 12}, - [1997] = {.lex_state = 8, .external_lex_state = 14}, - [1998] = {.lex_state = 52, .external_lex_state = 12}, - [1999] = {.lex_state = 8, .external_lex_state = 14}, - [2000] = {.lex_state = 52, .external_lex_state = 9}, - [2001] = {.lex_state = 8, .external_lex_state = 14}, - [2002] = {.lex_state = 8, .external_lex_state = 14}, - [2003] = {.lex_state = 52, .external_lex_state = 9}, - [2004] = {.lex_state = 52, .external_lex_state = 9}, - [2005] = {.lex_state = 52, .external_lex_state = 15}, - [2006] = {.lex_state = 52, .external_lex_state = 14}, - [2007] = {.lex_state = 7, .external_lex_state = 9}, - [2008] = {.lex_state = 52, .external_lex_state = 14}, - [2009] = {.lex_state = 3, .external_lex_state = 12}, + [1979] = {.lex_state = 8, .external_lex_state = 9}, + [1980] = {.lex_state = 52, .external_lex_state = 14}, + [1981] = {.lex_state = 8, .external_lex_state = 13}, + [1982] = {.lex_state = 52, .external_lex_state = 13}, + [1983] = {.lex_state = 7, .external_lex_state = 14}, + [1984] = {.lex_state = 52, .external_lex_state = 15}, + [1985] = {.lex_state = 8, .external_lex_state = 14}, + [1986] = {.lex_state = 52, .external_lex_state = 14}, + [1987] = {.lex_state = 52, .external_lex_state = 13}, + [1988] = {.lex_state = 52, .external_lex_state = 12}, + [1989] = {.lex_state = 8, .external_lex_state = 9}, + [1990] = {.lex_state = 8, .external_lex_state = 15}, + [1991] = {.lex_state = 8, .external_lex_state = 13}, + [1992] = {.lex_state = 52, .external_lex_state = 15}, + [1993] = {.lex_state = 52, .external_lex_state = 13}, + [1994] = {.lex_state = 8, .external_lex_state = 9}, + [1995] = {.lex_state = 8, .external_lex_state = 15}, + [1996] = {.lex_state = 52, .external_lex_state = 14}, + [1997] = {.lex_state = 52, .external_lex_state = 12}, + [1998] = {.lex_state = 52, .external_lex_state = 14}, + [1999] = {.lex_state = 52, .external_lex_state = 15}, + [2000] = {.lex_state = 52, .external_lex_state = 15}, + [2001] = {.lex_state = 52, .external_lex_state = 12}, + [2002] = {.lex_state = 52, .external_lex_state = 15}, + [2003] = {.lex_state = 52, .external_lex_state = 15}, + [2004] = {.lex_state = 52, .external_lex_state = 13}, + [2005] = {.lex_state = 52, .external_lex_state = 9}, + [2006] = {.lex_state = 52, .external_lex_state = 15}, + [2007] = {.lex_state = 52, .external_lex_state = 15}, + [2008] = {.lex_state = 52, .external_lex_state = 15}, + [2009] = {.lex_state = 52, .external_lex_state = 12}, [2010] = {.lex_state = 52, .external_lex_state = 15}, - [2011] = {.lex_state = 8, .external_lex_state = 14}, - [2012] = {.lex_state = 52, .external_lex_state = 12}, + [2011] = {.lex_state = 52, .external_lex_state = 15}, + [2012] = {.lex_state = 8, .external_lex_state = 14}, [2013] = {.lex_state = 52, .external_lex_state = 15}, [2014] = {.lex_state = 52, .external_lex_state = 15}, - [2015] = {.lex_state = 52, .external_lex_state = 15}, + [2015] = {.lex_state = 52, .external_lex_state = 9}, [2016] = {.lex_state = 8, .external_lex_state = 15}, - [2017] = {.lex_state = 52, .external_lex_state = 15}, - [2018] = {.lex_state = 52, .external_lex_state = 13}, + [2017] = {.lex_state = 8, .external_lex_state = 15}, + [2018] = {.lex_state = 8, .external_lex_state = 15}, [2019] = {.lex_state = 52, .external_lex_state = 15}, - [2020] = {.lex_state = 52, .external_lex_state = 14}, + [2020] = {.lex_state = 52, .external_lex_state = 13}, [2021] = {.lex_state = 52, .external_lex_state = 15}, - [2022] = {.lex_state = 52, .external_lex_state = 12}, - [2023] = {.lex_state = 8, .external_lex_state = 14}, - [2024] = {.lex_state = 52, .external_lex_state = 15}, + [2022] = {.lex_state = 52, .external_lex_state = 13}, + [2023] = {.lex_state = 52, .external_lex_state = 15}, + [2024] = {.lex_state = 52, .external_lex_state = 13}, [2025] = {.lex_state = 52, .external_lex_state = 15}, - [2026] = {.lex_state = 52, .external_lex_state = 12}, - [2027] = {.lex_state = 52, .external_lex_state = 12}, + [2026] = {.lex_state = 52, .external_lex_state = 15}, + [2027] = {.lex_state = 52, .external_lex_state = 15}, [2028] = {.lex_state = 52, .external_lex_state = 15}, [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 52, .external_lex_state = 12}, - [2031] = {.lex_state = 8, .external_lex_state = 14}, - [2032] = {.lex_state = 52, .external_lex_state = 12}, - [2033] = {.lex_state = 52, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 13}, - [2035] = {.lex_state = 8, .external_lex_state = 15}, + [2030] = {.lex_state = 52, .external_lex_state = 15}, + [2031] = {.lex_state = 52, .external_lex_state = 12}, + [2032] = {.lex_state = 8, .external_lex_state = 14}, + [2033] = {.lex_state = 8, .external_lex_state = 14}, + [2034] = {.lex_state = 52, .external_lex_state = 9}, + [2035] = {.lex_state = 52, .external_lex_state = 12}, [2036] = {.lex_state = 52, .external_lex_state = 15}, - [2037] = {.lex_state = 52, .external_lex_state = 15}, - [2038] = {.lex_state = 52, .external_lex_state = 12}, - [2039] = {.lex_state = 52, .external_lex_state = 14}, - [2040] = {.lex_state = 8, .external_lex_state = 14}, - [2041] = {.lex_state = 52, .external_lex_state = 9}, - [2042] = {.lex_state = 52, .external_lex_state = 13}, + [2037] = {.lex_state = 3, .external_lex_state = 12}, + [2038] = {.lex_state = 52, .external_lex_state = 15}, + [2039] = {.lex_state = 52, .external_lex_state = 15}, + [2040] = {.lex_state = 52, .external_lex_state = 15}, + [2041] = {.lex_state = 52, .external_lex_state = 12}, + [2042] = {.lex_state = 52, .external_lex_state = 15}, [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 52, .external_lex_state = 15}, + [2044] = {.lex_state = 3, .external_lex_state = 12}, [2045] = {.lex_state = 52, .external_lex_state = 15}, - [2046] = {.lex_state = 52, .external_lex_state = 15}, - [2047] = {.lex_state = 52, .external_lex_state = 15}, - [2048] = {.lex_state = 52, .external_lex_state = 15}, + [2046] = {.lex_state = 52, .external_lex_state = 12}, + [2047] = {.lex_state = 7, .external_lex_state = 9}, + [2048] = {.lex_state = 52, .external_lex_state = 14}, [2049] = {.lex_state = 52, .external_lex_state = 15}, - [2050] = {.lex_state = 52, .external_lex_state = 15}, - [2051] = {.lex_state = 52, .external_lex_state = 14}, - [2052] = {.lex_state = 52, .external_lex_state = 14}, - [2053] = {.lex_state = 52, .external_lex_state = 15}, - [2054] = {.lex_state = 52, .external_lex_state = 12}, + [2050] = {.lex_state = 52, .external_lex_state = 9}, + [2051] = {.lex_state = 52, .external_lex_state = 15}, + [2052] = {.lex_state = 52, .external_lex_state = 12}, + [2053] = {.lex_state = 8, .external_lex_state = 15}, + [2054] = {.lex_state = 52, .external_lex_state = 15}, [2055] = {.lex_state = 52, .external_lex_state = 15}, - [2056] = {.lex_state = 52, .external_lex_state = 15}, - [2057] = {.lex_state = 52, .external_lex_state = 12}, - [2058] = {.lex_state = 52, .external_lex_state = 15}, - [2059] = {.lex_state = 52, .external_lex_state = 9}, - [2060] = {.lex_state = 52, .external_lex_state = 12}, - [2061] = {.lex_state = 52, .external_lex_state = 12}, - [2062] = {.lex_state = 52, .external_lex_state = 15}, - [2063] = {.lex_state = 8, .external_lex_state = 13}, - [2064] = {.lex_state = 52, .external_lex_state = 14}, - [2065] = {.lex_state = 8, .external_lex_state = 15}, + [2056] = {.lex_state = 52, .external_lex_state = 9}, + [2057] = {.lex_state = 52, .external_lex_state = 15}, + [2058] = {.lex_state = 3, .external_lex_state = 12}, + [2059] = {.lex_state = 8, .external_lex_state = 14}, + [2060] = {.lex_state = 8, .external_lex_state = 14}, + [2061] = {.lex_state = 8, .external_lex_state = 14}, + [2062] = {.lex_state = 52, .external_lex_state = 12}, + [2063] = {.lex_state = 52, .external_lex_state = 15}, + [2064] = {.lex_state = 52, .external_lex_state = 15}, + [2065] = {.lex_state = 52, .external_lex_state = 15}, [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 8, .external_lex_state = 9}, - [2068] = {.lex_state = 52, .external_lex_state = 15}, - [2069] = {.lex_state = 52, .external_lex_state = 9}, + [2067] = {.lex_state = 52, .external_lex_state = 12}, + [2068] = {.lex_state = 52, .external_lex_state = 12}, + [2069] = {.lex_state = 8, .external_lex_state = 14}, [2070] = {.lex_state = 52, .external_lex_state = 15}, - [2071] = {.lex_state = 52, .external_lex_state = 15}, - [2072] = {.lex_state = 8, .external_lex_state = 15}, - [2073] = {.lex_state = 52, .external_lex_state = 15}, - [2074] = {.lex_state = 52, .external_lex_state = 14}, - [2075] = {.lex_state = 52, .external_lex_state = 15}, - [2076] = {.lex_state = 52, .external_lex_state = 12}, - [2077] = {.lex_state = 52, .external_lex_state = 15}, - [2078] = {.lex_state = 52, .external_lex_state = 15}, + [2071] = {.lex_state = 52, .external_lex_state = 12}, + [2072] = {.lex_state = 52, .external_lex_state = 12}, + [2073] = {.lex_state = 52, .external_lex_state = 12}, + [2074] = {.lex_state = 52, .external_lex_state = 12}, + [2075] = {.lex_state = 52, .external_lex_state = 12}, + [2076] = {.lex_state = 52, .external_lex_state = 15}, + [2077] = {.lex_state = 52, .external_lex_state = 9}, + [2078] = {.lex_state = 8, .external_lex_state = 15}, [2079] = {.lex_state = 52, .external_lex_state = 15}, - [2080] = {.lex_state = 8, .external_lex_state = 15}, - [2081] = {.lex_state = 52, .external_lex_state = 15}, - [2082] = {.lex_state = 52, .external_lex_state = 9}, - [2083] = {.lex_state = 52, .external_lex_state = 13}, - [2084] = {.lex_state = 3, .external_lex_state = 12}, - [2085] = {.lex_state = 52, .external_lex_state = 12}, - [2086] = {.lex_state = 3, .external_lex_state = 12}, - [2087] = {.lex_state = 52, .external_lex_state = 14}, - [2088] = {.lex_state = 52, .external_lex_state = 12}, - [2089] = {.lex_state = 52, .external_lex_state = 15}, - [2090] = {.lex_state = 8, .external_lex_state = 15}, + [2080] = {.lex_state = 52, .external_lex_state = 14}, + [2081] = {.lex_state = 52, .external_lex_state = 14}, + [2082] = {.lex_state = 8, .external_lex_state = 14}, + [2083] = {.lex_state = 52, .external_lex_state = 15}, + [2084] = {.lex_state = 52, .external_lex_state = 15}, + [2085] = {.lex_state = 8, .external_lex_state = 15}, + [2086] = {.lex_state = 52, .external_lex_state = 14}, + [2087] = {.lex_state = 8, .external_lex_state = 14}, + [2088] = {.lex_state = 52, .external_lex_state = 15}, + [2089] = {.lex_state = 52, .external_lex_state = 13}, + [2090] = {.lex_state = 52, .external_lex_state = 12}, [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 8, .external_lex_state = 14}, + [2092] = {.lex_state = 52, .external_lex_state = 9}, [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 13}, + [2094] = {.lex_state = 52, .external_lex_state = 15}, [2095] = {.lex_state = 52, .external_lex_state = 15}, [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 52, .external_lex_state = 12}, - [2098] = {.lex_state = 52, .external_lex_state = 13}, + [2097] = {.lex_state = 52, .external_lex_state = 13}, + [2098] = {.lex_state = 52, .external_lex_state = 14}, [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 52, .external_lex_state = 13}, + [2100] = {.lex_state = 52, .external_lex_state = 15}, [2101] = {.lex_state = 52, .external_lex_state = 15}, - [2102] = {.lex_state = 52, .external_lex_state = 15}, - [2103] = {.lex_state = 52, .external_lex_state = 15}, - [2104] = {.lex_state = 52, .external_lex_state = 13}, - [2105] = {.lex_state = 8, .external_lex_state = 15}, + [2102] = {.lex_state = 52, .external_lex_state = 14}, + [2103] = {.lex_state = 52, .external_lex_state = 14}, + [2104] = {.lex_state = 52, .external_lex_state = 12}, + [2105] = {.lex_state = 52, .external_lex_state = 13}, [2106] = {.lex_state = 52, .external_lex_state = 13}, - [2107] = {.lex_state = 52, .external_lex_state = 15}, - [2108] = {.lex_state = 52, .external_lex_state = 15}, - [2109] = {.lex_state = 52, .external_lex_state = 15}, + [2107] = {.lex_state = 8, .external_lex_state = 14}, + [2108] = {.lex_state = 8, .external_lex_state = 13}, + [2109] = {.lex_state = 52, .external_lex_state = 12}, [2110] = {.lex_state = 52, .external_lex_state = 14}, - [2111] = {.lex_state = 52, .external_lex_state = 14}, - [2112] = {.lex_state = 52, .external_lex_state = 9}, - [2113] = {.lex_state = 7, .external_lex_state = 15}, - [2114] = {.lex_state = 52, .external_lex_state = 15}, - [2115] = {.lex_state = 52, .external_lex_state = 15}, - [2116] = {.lex_state = 52, .external_lex_state = 9}, + [2111] = {.lex_state = 52, .external_lex_state = 9}, + [2112] = {.lex_state = 52, .external_lex_state = 13}, + [2113] = {.lex_state = 52, .external_lex_state = 12}, + [2114] = {.lex_state = 52, .external_lex_state = 13}, + [2115] = {.lex_state = 52, .external_lex_state = 13}, + [2116] = {.lex_state = 52, .external_lex_state = 13}, [2117] = {.lex_state = 52, .external_lex_state = 15}, - [2118] = {.lex_state = 52, .external_lex_state = 9}, - [2119] = {.lex_state = 52, .external_lex_state = 9}, - [2120] = {.lex_state = 8, .external_lex_state = 15}, - [2121] = {.lex_state = 52, .external_lex_state = 15}, + [2118] = {.lex_state = 52, .external_lex_state = 13}, + [2119] = {.lex_state = 52, .external_lex_state = 14}, + [2120] = {.lex_state = 52, .external_lex_state = 13}, + [2121] = {.lex_state = 52, .external_lex_state = 13}, [2122] = {.lex_state = 52, .external_lex_state = 9}, - [2123] = {.lex_state = 52, .external_lex_state = 9}, - [2124] = {.lex_state = 52, .external_lex_state = 9}, - [2125] = {.lex_state = 7, .external_lex_state = 15}, - [2126] = {.lex_state = 52, .external_lex_state = 9}, - [2127] = {.lex_state = 52, .external_lex_state = 9}, + [2123] = {.lex_state = 52, .external_lex_state = 13}, + [2124] = {.lex_state = 52, .external_lex_state = 13}, + [2125] = {.lex_state = 52, .external_lex_state = 12}, + [2126] = {.lex_state = 52, .external_lex_state = 13}, + [2127] = {.lex_state = 8, .external_lex_state = 15}, [2128] = {.lex_state = 52, .external_lex_state = 9}, - [2129] = {.lex_state = 52, .external_lex_state = 15}, - [2130] = {.lex_state = 52, .external_lex_state = 9}, - [2131] = {.lex_state = 52, .external_lex_state = 15}, + [2129] = {.lex_state = 52, .external_lex_state = 12}, + [2130] = {.lex_state = 8, .external_lex_state = 15}, + [2131] = {.lex_state = 52, .external_lex_state = 13}, [2132] = {.lex_state = 52, .external_lex_state = 12}, - [2133] = {.lex_state = 52, .external_lex_state = 9}, - [2134] = {.lex_state = 52, .external_lex_state = 18}, + [2133] = {.lex_state = 52, .external_lex_state = 12}, + [2134] = {.lex_state = 52, .external_lex_state = 9}, [2135] = {.lex_state = 52, .external_lex_state = 9}, - [2136] = {.lex_state = 52, .external_lex_state = 15}, - [2137] = {.lex_state = 52, .external_lex_state = 15}, - [2138] = {.lex_state = 52, .external_lex_state = 9}, - [2139] = {.lex_state = 52, .external_lex_state = 9}, - [2140] = {.lex_state = 52, .external_lex_state = 9}, - [2141] = {.lex_state = 8, .external_lex_state = 15}, - [2142] = {.lex_state = 52, .external_lex_state = 18}, - [2143] = {.lex_state = 52, .external_lex_state = 12}, - [2144] = {.lex_state = 52, .external_lex_state = 18}, - [2145] = {.lex_state = 52, .external_lex_state = 9}, - [2146] = {.lex_state = 52, .external_lex_state = 15}, - [2147] = {.lex_state = 52, .external_lex_state = 18}, - [2148] = {.lex_state = 52, .external_lex_state = 13}, - [2149] = {.lex_state = 52, .external_lex_state = 18}, - [2150] = {.lex_state = 52, .external_lex_state = 14}, - [2151] = {.lex_state = 52, .external_lex_state = 13}, - [2152] = {.lex_state = 52, .external_lex_state = 15}, - [2153] = {.lex_state = 52, .external_lex_state = 15}, - [2154] = {.lex_state = 52, .external_lex_state = 15}, + [2136] = {.lex_state = 52, .external_lex_state = 9}, + [2137] = {.lex_state = 52, .external_lex_state = 12}, + [2138] = {.lex_state = 52, .external_lex_state = 12}, + [2139] = {.lex_state = 52, .external_lex_state = 12}, + [2140] = {.lex_state = 52, .external_lex_state = 13}, + [2141] = {.lex_state = 52, .external_lex_state = 12}, + [2142] = {.lex_state = 52, .external_lex_state = 12}, + [2143] = {.lex_state = 52, .external_lex_state = 13}, + [2144] = {.lex_state = 52, .external_lex_state = 12}, + [2145] = {.lex_state = 52, .external_lex_state = 13}, + [2146] = {.lex_state = 52, .external_lex_state = 13}, + [2147] = {.lex_state = 52, .external_lex_state = 12}, + [2148] = {.lex_state = 52, .external_lex_state = 12}, + [2149] = {.lex_state = 52, .external_lex_state = 9}, + [2150] = {.lex_state = 52, .external_lex_state = 9}, + [2151] = {.lex_state = 52, .external_lex_state = 12}, + [2152] = {.lex_state = 52, .external_lex_state = 12}, + [2153] = {.lex_state = 52, .external_lex_state = 12}, + [2154] = {.lex_state = 52, .external_lex_state = 12}, [2155] = {.lex_state = 52, .external_lex_state = 12}, - [2156] = {.lex_state = 52, .external_lex_state = 13}, - [2157] = {.lex_state = 52, .external_lex_state = 13}, - [2158] = {.lex_state = 52, .external_lex_state = 13}, - [2159] = {.lex_state = 52, .external_lex_state = 14}, - [2160] = {.lex_state = 52, .external_lex_state = 13}, - [2161] = {.lex_state = 52, .external_lex_state = 13}, - [2162] = {.lex_state = 52, .external_lex_state = 13}, + [2156] = {.lex_state = 52, .external_lex_state = 12}, + [2157] = {.lex_state = 52, .external_lex_state = 12}, + [2158] = {.lex_state = 52, .external_lex_state = 12}, + [2159] = {.lex_state = 52, .external_lex_state = 12}, + [2160] = {.lex_state = 52, .external_lex_state = 12}, + [2161] = {.lex_state = 52, .external_lex_state = 12}, + [2162] = {.lex_state = 52, .external_lex_state = 12}, [2163] = {.lex_state = 52, .external_lex_state = 13}, - [2164] = {.lex_state = 52, .external_lex_state = 13}, + [2164] = {.lex_state = 52, .external_lex_state = 18}, [2165] = {.lex_state = 52, .external_lex_state = 13}, [2166] = {.lex_state = 52, .external_lex_state = 13}, [2167] = {.lex_state = 52, .external_lex_state = 13}, - [2168] = {.lex_state = 52, .external_lex_state = 12}, - [2169] = {.lex_state = 52, .external_lex_state = 12}, - [2170] = {.lex_state = 52, .external_lex_state = 12}, - [2171] = {.lex_state = 52, .external_lex_state = 12}, - [2172] = {.lex_state = 52, .external_lex_state = 12}, - [2173] = {.lex_state = 52, .external_lex_state = 12}, - [2174] = {.lex_state = 52, .external_lex_state = 12}, - [2175] = {.lex_state = 52, .external_lex_state = 12}, + [2168] = {.lex_state = 52, .external_lex_state = 13}, + [2169] = {.lex_state = 52, .external_lex_state = 13}, + [2170] = {.lex_state = 52, .external_lex_state = 13}, + [2171] = {.lex_state = 52, .external_lex_state = 13}, + [2172] = {.lex_state = 52, .external_lex_state = 13}, + [2173] = {.lex_state = 52, .external_lex_state = 14}, + [2174] = {.lex_state = 52, .external_lex_state = 14}, + [2175] = {.lex_state = 52, .external_lex_state = 14}, [2176] = {.lex_state = 52, .external_lex_state = 13}, [2177] = {.lex_state = 52, .external_lex_state = 14}, - [2178] = {.lex_state = 52, .external_lex_state = 13}, - [2179] = {.lex_state = 52, .external_lex_state = 12}, + [2178] = {.lex_state = 52, .external_lex_state = 15}, + [2179] = {.lex_state = 52, .external_lex_state = 9}, [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 12}, - [2182] = {.lex_state = 52, .external_lex_state = 13}, - [2183] = {.lex_state = 52, .external_lex_state = 12}, - [2184] = {.lex_state = 52, .external_lex_state = 12}, - [2185] = {.lex_state = 52, .external_lex_state = 12}, - [2186] = {.lex_state = 52, .external_lex_state = 12}, - [2187] = {.lex_state = 52, .external_lex_state = 13}, - [2188] = {.lex_state = 52, .external_lex_state = 12}, - [2189] = {.lex_state = 52, .external_lex_state = 12}, - [2190] = {.lex_state = 52, .external_lex_state = 12}, - [2191] = {.lex_state = 52, .external_lex_state = 12}, - [2192] = {.lex_state = 52, .external_lex_state = 12}, + [2181] = {.lex_state = 52, .external_lex_state = 13}, + [2182] = {.lex_state = 52, .external_lex_state = 18}, + [2183] = {.lex_state = 52, .external_lex_state = 13}, + [2184] = {.lex_state = 52, .external_lex_state = 14}, + [2185] = {.lex_state = 52, .external_lex_state = 9}, + [2186] = {.lex_state = 52, .external_lex_state = 9}, + [2187] = {.lex_state = 52, .external_lex_state = 15}, + [2188] = {.lex_state = 52, .external_lex_state = 13}, + [2189] = {.lex_state = 52, .external_lex_state = 9}, + [2190] = {.lex_state = 52, .external_lex_state = 9}, + [2191] = {.lex_state = 52, .external_lex_state = 13}, + [2192] = {.lex_state = 52, .external_lex_state = 13}, [2193] = {.lex_state = 52, .external_lex_state = 13}, - [2194] = {.lex_state = 52, .external_lex_state = 12}, - [2195] = {.lex_state = 52, .external_lex_state = 13}, - [2196] = {.lex_state = 52, .external_lex_state = 13}, - [2197] = {.lex_state = 52, .external_lex_state = 12}, + [2194] = {.lex_state = 52, .external_lex_state = 13}, + [2195] = {.lex_state = 52, .external_lex_state = 14}, + [2196] = {.lex_state = 52, .external_lex_state = 14}, + [2197] = {.lex_state = 52, .external_lex_state = 9}, [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 12}, - [2200] = {.lex_state = 52, .external_lex_state = 13}, - [2201] = {.lex_state = 52, .external_lex_state = 13}, - [2202] = {.lex_state = 52, .external_lex_state = 12}, - [2203] = {.lex_state = 52, .external_lex_state = 13}, - [2204] = {.lex_state = 52, .external_lex_state = 13}, - [2205] = {.lex_state = 52, .external_lex_state = 13}, - [2206] = {.lex_state = 52, .external_lex_state = 13}, - [2207] = {.lex_state = 52, .external_lex_state = 13}, - [2208] = {.lex_state = 52, .external_lex_state = 14}, - [2209] = {.lex_state = 52, .external_lex_state = 14}, - [2210] = {.lex_state = 52, .external_lex_state = 14}, - [2211] = {.lex_state = 52, .external_lex_state = 14}, - [2212] = {.lex_state = 52, .external_lex_state = 13}, - [2213] = {.lex_state = 52, .external_lex_state = 14}, - [2214] = {.lex_state = 52, .external_lex_state = 14}, + [2199] = {.lex_state = 52, .external_lex_state = 14}, + [2200] = {.lex_state = 52, .external_lex_state = 14}, + [2201] = {.lex_state = 52, .external_lex_state = 14}, + [2202] = {.lex_state = 52, .external_lex_state = 15}, + [2203] = {.lex_state = 52, .external_lex_state = 18}, + [2204] = {.lex_state = 52, .external_lex_state = 14}, + [2205] = {.lex_state = 7, .external_lex_state = 15}, + [2206] = {.lex_state = 7, .external_lex_state = 15}, + [2207] = {.lex_state = 52, .external_lex_state = 14}, + [2208] = {.lex_state = 52, .external_lex_state = 15}, + [2209] = {.lex_state = 52, .external_lex_state = 13}, + [2210] = {.lex_state = 52, .external_lex_state = 13}, + [2211] = {.lex_state = 52, .external_lex_state = 12}, + [2212] = {.lex_state = 52, .external_lex_state = 15}, + [2213] = {.lex_state = 52, .external_lex_state = 9}, + [2214] = {.lex_state = 52, .external_lex_state = 15}, [2215] = {.lex_state = 52, .external_lex_state = 14}, [2216] = {.lex_state = 52, .external_lex_state = 14}, - [2217] = {.lex_state = 52, .external_lex_state = 14}, - [2218] = {.lex_state = 52, .external_lex_state = 14}, + [2217] = {.lex_state = 52, .external_lex_state = 18}, + [2218] = {.lex_state = 52, .external_lex_state = 9}, [2219] = {.lex_state = 52, .external_lex_state = 14}, [2220] = {.lex_state = 52, .external_lex_state = 14}, [2221] = {.lex_state = 52, .external_lex_state = 14}, - [2222] = {.lex_state = 52, .external_lex_state = 13}, - [2223] = {.lex_state = 52, .external_lex_state = 13}, - [2224] = {.lex_state = 52, .external_lex_state = 13}, - [2225] = {.lex_state = 52, .external_lex_state = 14}, + [2222] = {.lex_state = 52, .external_lex_state = 14}, + [2223] = {.lex_state = 52, .external_lex_state = 18}, + [2224] = {.lex_state = 52, .external_lex_state = 14}, + [2225] = {.lex_state = 52, .external_lex_state = 9}, [2226] = {.lex_state = 52, .external_lex_state = 14}, [2227] = {.lex_state = 52, .external_lex_state = 14}, - [2228] = {.lex_state = 52, .external_lex_state = 13}, - [2229] = {.lex_state = 52, .external_lex_state = 13}, + [2228] = {.lex_state = 52, .external_lex_state = 14}, + [2229] = {.lex_state = 52, .external_lex_state = 14}, [2230] = {.lex_state = 52, .external_lex_state = 14}, [2231] = {.lex_state = 52, .external_lex_state = 14}, - [2232] = {.lex_state = 52, .external_lex_state = 13}, - [2233] = {.lex_state = 52, .external_lex_state = 14}, - [2234] = {.lex_state = 52, .external_lex_state = 13}, + [2232] = {.lex_state = 52, .external_lex_state = 15}, + [2233] = {.lex_state = 52, .external_lex_state = 15}, + [2234] = {.lex_state = 52, .external_lex_state = 15}, [2235] = {.lex_state = 52, .external_lex_state = 13}, - [2236] = {.lex_state = 52, .external_lex_state = 14}, - [2237] = {.lex_state = 52, .external_lex_state = 14}, - [2238] = {.lex_state = 52, .external_lex_state = 14}, - [2239] = {.lex_state = 52, .external_lex_state = 13}, - [2240] = {.lex_state = 52, .external_lex_state = 15}, - [2241] = {.lex_state = 52, .external_lex_state = 15}, - [2242] = {.lex_state = 52, .external_lex_state = 15}, - [2243] = {.lex_state = 52, .external_lex_state = 9}, - [2244] = {.lex_state = 52, .external_lex_state = 12}, - [2245] = {.lex_state = 52, .external_lex_state = 14}, - [2246] = {.lex_state = 52, .external_lex_state = 15}, + [2236] = {.lex_state = 52, .external_lex_state = 15}, + [2237] = {.lex_state = 52, .external_lex_state = 13}, + [2238] = {.lex_state = 52, .external_lex_state = 15}, + [2239] = {.lex_state = 52, .external_lex_state = 15}, + [2240] = {.lex_state = 52, .external_lex_state = 14}, + [2241] = {.lex_state = 52, .external_lex_state = 14}, + [2242] = {.lex_state = 52, .external_lex_state = 13}, + [2243] = {.lex_state = 52, .external_lex_state = 12}, + [2244] = {.lex_state = 52, .external_lex_state = 13}, + [2245] = {.lex_state = 52, .external_lex_state = 12}, + [2246] = {.lex_state = 52, .external_lex_state = 14}, [2247] = {.lex_state = 52, .external_lex_state = 13}, - [2248] = {.lex_state = 52, .external_lex_state = 12}, - [2249] = {.lex_state = 52, .external_lex_state = 9}, - [2250] = {.lex_state = 52, .external_lex_state = 13}, - [2251] = {.lex_state = 52, .external_lex_state = 13}, - [2252] = {.lex_state = 52, .external_lex_state = 9}, - [2253] = {.lex_state = 52, .external_lex_state = 13}, + [2248] = {.lex_state = 52, .external_lex_state = 14}, + [2249] = {.lex_state = 52, .external_lex_state = 15}, + [2250] = {.lex_state = 52, .external_lex_state = 12}, + [2251] = {.lex_state = 52, .external_lex_state = 12}, + [2252] = {.lex_state = 52, .external_lex_state = 12}, + [2253] = {.lex_state = 52, .external_lex_state = 12}, [2254] = {.lex_state = 52, .external_lex_state = 13}, - [2255] = {.lex_state = 52, .external_lex_state = 15}, - [2256] = {.lex_state = 52, .external_lex_state = 15}, - [2257] = {.lex_state = 52, .external_lex_state = 9}, - [2258] = {.lex_state = 52, .external_lex_state = 12}, - [2259] = {.lex_state = 52, .external_lex_state = 12}, - [2260] = {.lex_state = 52, .external_lex_state = 15}, - [2261] = {.lex_state = 52, .external_lex_state = 9}, - [2262] = {.lex_state = 52, .external_lex_state = 12}, - [2263] = {.lex_state = 52, .external_lex_state = 13}, - [2264] = {.lex_state = 52, .external_lex_state = 15}, - [2265] = {.lex_state = 52, .external_lex_state = 13}, + [2255] = {.lex_state = 52, .external_lex_state = 13}, + [2256] = {.lex_state = 52, .external_lex_state = 12}, + [2257] = {.lex_state = 52, .external_lex_state = 12}, + [2258] = {.lex_state = 52, .external_lex_state = 15}, + [2259] = {.lex_state = 9, .external_lex_state = 17}, + [2260] = {.lex_state = 52, .external_lex_state = 9}, + [2261] = {.lex_state = 52, .external_lex_state = 13}, + [2262] = {.lex_state = 8, .external_lex_state = 15}, + [2263] = {.lex_state = 52, .external_lex_state = 9}, + [2264] = {.lex_state = 52, .external_lex_state = 13}, + [2265] = {.lex_state = 3, .external_lex_state = 12}, [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 14}, - [2268] = {.lex_state = 52, .external_lex_state = 15}, - [2269] = {.lex_state = 52, .external_lex_state = 14}, + [2267] = {.lex_state = 52, .external_lex_state = 12}, + [2268] = {.lex_state = 52, .external_lex_state = 9}, + [2269] = {.lex_state = 52, .external_lex_state = 15}, [2270] = {.lex_state = 52, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 13}, - [2272] = {.lex_state = 52, .external_lex_state = 9}, - [2273] = {.lex_state = 52, .external_lex_state = 12}, + [2271] = {.lex_state = 52, .external_lex_state = 12}, + [2272] = {.lex_state = 52, .external_lex_state = 15}, + [2273] = {.lex_state = 52, .external_lex_state = 13}, [2274] = {.lex_state = 52, .external_lex_state = 13}, - [2275] = {.lex_state = 52, .external_lex_state = 12}, + [2275] = {.lex_state = 52, .external_lex_state = 15}, [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 15}, - [2278] = {.lex_state = 52, .external_lex_state = 13}, - [2279] = {.lex_state = 52, .external_lex_state = 15}, - [2280] = {.lex_state = 52, .external_lex_state = 14}, - [2281] = {.lex_state = 52, .external_lex_state = 14}, + [2277] = {.lex_state = 52, .external_lex_state = 14}, + [2278] = {.lex_state = 3, .external_lex_state = 12}, + [2279] = {.lex_state = 52, .external_lex_state = 12}, + [2280] = {.lex_state = 9, .external_lex_state = 17}, + [2281] = {.lex_state = 3, .external_lex_state = 12}, [2282] = {.lex_state = 52, .external_lex_state = 13}, - [2283] = {.lex_state = 52, .external_lex_state = 13}, - [2284] = {.lex_state = 52, .external_lex_state = 12}, + [2283] = {.lex_state = 52, .external_lex_state = 12}, + [2284] = {.lex_state = 52, .external_lex_state = 13}, [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 9}, + [2286] = {.lex_state = 52, .external_lex_state = 14}, [2287] = {.lex_state = 52, .external_lex_state = 14}, - [2288] = {.lex_state = 52, .external_lex_state = 14}, - [2289] = {.lex_state = 52, .external_lex_state = 14}, - [2290] = {.lex_state = 52, .external_lex_state = 13}, - [2291] = {.lex_state = 52, .external_lex_state = 13}, - [2292] = {.lex_state = 8, .external_lex_state = 15}, - [2293] = {.lex_state = 52, .external_lex_state = 9}, - [2294] = {.lex_state = 8, .external_lex_state = 15}, - [2295] = {.lex_state = 52, .external_lex_state = 14}, - [2296] = {.lex_state = 52, .external_lex_state = 14}, - [2297] = {.lex_state = 3, .external_lex_state = 12}, - [2298] = {.lex_state = 52, .external_lex_state = 9}, - [2299] = {.lex_state = 52, .external_lex_state = 12}, - [2300] = {.lex_state = 52, .external_lex_state = 12}, + [2288] = {.lex_state = 3, .external_lex_state = 12}, + [2289] = {.lex_state = 52, .external_lex_state = 12}, + [2290] = {.lex_state = 52, .external_lex_state = 15}, + [2291] = {.lex_state = 52, .external_lex_state = 12}, + [2292] = {.lex_state = 52, .external_lex_state = 13}, + [2293] = {.lex_state = 8, .external_lex_state = 15}, + [2294] = {.lex_state = 52, .external_lex_state = 9}, + [2295] = {.lex_state = 52, .external_lex_state = 13}, + [2296] = {.lex_state = 52, .external_lex_state = 13}, + [2297] = {.lex_state = 52, .external_lex_state = 12}, + [2298] = {.lex_state = 52, .external_lex_state = 13}, + [2299] = {.lex_state = 52, .external_lex_state = 9}, + [2300] = {.lex_state = 52, .external_lex_state = 9}, [2301] = {.lex_state = 52, .external_lex_state = 13}, - [2302] = {.lex_state = 8, .external_lex_state = 15}, + [2302] = {.lex_state = 52, .external_lex_state = 12}, [2303] = {.lex_state = 52, .external_lex_state = 13}, - [2304] = {.lex_state = 52, .external_lex_state = 13}, - [2305] = {.lex_state = 52, .external_lex_state = 13}, - [2306] = {.lex_state = 52, .external_lex_state = 12}, - [2307] = {.lex_state = 52, .external_lex_state = 13}, - [2308] = {.lex_state = 52, .external_lex_state = 13}, - [2309] = {.lex_state = 52, .external_lex_state = 14}, - [2310] = {.lex_state = 8, .external_lex_state = 15}, + [2304] = {.lex_state = 52, .external_lex_state = 15}, + [2305] = {.lex_state = 52, .external_lex_state = 12}, + [2306] = {.lex_state = 52, .external_lex_state = 9}, + [2307] = {.lex_state = 52, .external_lex_state = 12}, + [2308] = {.lex_state = 52, .external_lex_state = 9}, + [2309] = {.lex_state = 52, .external_lex_state = 13}, + [2310] = {.lex_state = 52, .external_lex_state = 9}, [2311] = {.lex_state = 52, .external_lex_state = 14}, - [2312] = {.lex_state = 52, .external_lex_state = 12}, - [2313] = {.lex_state = 52, .external_lex_state = 13}, - [2314] = {.lex_state = 52, .external_lex_state = 12}, - [2315] = {.lex_state = 52, .external_lex_state = 12}, + [2312] = {.lex_state = 52, .external_lex_state = 13}, + [2313] = {.lex_state = 52, .external_lex_state = 12}, + [2314] = {.lex_state = 52, .external_lex_state = 13}, + [2315] = {.lex_state = 52, .external_lex_state = 13}, [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 15}, - [2318] = {.lex_state = 52, .external_lex_state = 12}, - [2319] = {.lex_state = 52, .external_lex_state = 15}, - [2320] = {.lex_state = 52, .external_lex_state = 15}, - [2321] = {.lex_state = 52, .external_lex_state = 12}, - [2322] = {.lex_state = 52, .external_lex_state = 13}, - [2323] = {.lex_state = 3, .external_lex_state = 12}, + [2317] = {.lex_state = 52, .external_lex_state = 13}, + [2318] = {.lex_state = 52, .external_lex_state = 13}, + [2319] = {.lex_state = 52, .external_lex_state = 12}, + [2320] = {.lex_state = 52, .external_lex_state = 14}, + [2321] = {.lex_state = 52, .external_lex_state = 14}, + [2322] = {.lex_state = 52, .external_lex_state = 14}, + [2323] = {.lex_state = 52, .external_lex_state = 13}, [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 3, .external_lex_state = 12}, - [2326] = {.lex_state = 3, .external_lex_state = 12}, - [2327] = {.lex_state = 3, .external_lex_state = 12}, - [2328] = {.lex_state = 52, .external_lex_state = 19}, - [2329] = {.lex_state = 52, .external_lex_state = 15}, - [2330] = {.lex_state = 3, .external_lex_state = 12}, - [2331] = {.lex_state = 3, .external_lex_state = 12}, - [2332] = {.lex_state = 52, .external_lex_state = 14}, - [2333] = {.lex_state = 9, .external_lex_state = 17}, + [2325] = {.lex_state = 52, .external_lex_state = 13}, + [2326] = {.lex_state = 52, .external_lex_state = 13}, + [2327] = {.lex_state = 52, .external_lex_state = 14}, + [2328] = {.lex_state = 52, .external_lex_state = 14}, + [2329] = {.lex_state = 52, .external_lex_state = 14}, + [2330] = {.lex_state = 52, .external_lex_state = 14}, + [2331] = {.lex_state = 52, .external_lex_state = 19}, + [2332] = {.lex_state = 52, .external_lex_state = 12}, + [2333] = {.lex_state = 52, .external_lex_state = 14}, [2334] = {.lex_state = 52, .external_lex_state = 9}, - [2335] = {.lex_state = 52, .external_lex_state = 14}, + [2335] = {.lex_state = 52, .external_lex_state = 13}, [2336] = {.lex_state = 52, .external_lex_state = 13}, - [2337] = {.lex_state = 52, .external_lex_state = 15}, - [2338] = {.lex_state = 52, .external_lex_state = 15}, - [2339] = {.lex_state = 52, .external_lex_state = 13}, + [2337] = {.lex_state = 52, .external_lex_state = 13}, + [2338] = {.lex_state = 52, .external_lex_state = 13}, + [2339] = {.lex_state = 52, .external_lex_state = 9}, [2340] = {.lex_state = 52, .external_lex_state = 13}, - [2341] = {.lex_state = 52, .external_lex_state = 12}, - [2342] = {.lex_state = 52, .external_lex_state = 19}, - [2343] = {.lex_state = 52, .external_lex_state = 19}, - [2344] = {.lex_state = 52, .external_lex_state = 14}, - [2345] = {.lex_state = 52, .external_lex_state = 15}, + [2341] = {.lex_state = 52, .external_lex_state = 9}, + [2342] = {.lex_state = 52, .external_lex_state = 14}, + [2343] = {.lex_state = 52, .external_lex_state = 14}, + [2344] = {.lex_state = 52, .external_lex_state = 13}, + [2345] = {.lex_state = 52, .external_lex_state = 13}, [2346] = {.lex_state = 52, .external_lex_state = 15}, - [2347] = {.lex_state = 52, .external_lex_state = 13}, - [2348] = {.lex_state = 52, .external_lex_state = 15}, - [2349] = {.lex_state = 52, .external_lex_state = 15}, - [2350] = {.lex_state = 52, .external_lex_state = 12}, - [2351] = {.lex_state = 52, .external_lex_state = 14}, - [2352] = {.lex_state = 52, .external_lex_state = 14}, - [2353] = {.lex_state = 52, .external_lex_state = 14}, - [2354] = {.lex_state = 52, .external_lex_state = 12}, - [2355] = {.lex_state = 52, .external_lex_state = 9}, - [2356] = {.lex_state = 52, .external_lex_state = 15}, - [2357] = {.lex_state = 52, .external_lex_state = 14}, + [2347] = {.lex_state = 52, .external_lex_state = 12}, + [2348] = {.lex_state = 52, .external_lex_state = 12}, + [2349] = {.lex_state = 52, .external_lex_state = 14}, + [2350] = {.lex_state = 52, .external_lex_state = 9}, + [2351] = {.lex_state = 52, .external_lex_state = 13}, + [2352] = {.lex_state = 52, .external_lex_state = 12}, + [2353] = {.lex_state = 52, .external_lex_state = 13}, + [2354] = {.lex_state = 52, .external_lex_state = 13}, + [2355] = {.lex_state = 52, .external_lex_state = 13}, + [2356] = {.lex_state = 52, .external_lex_state = 13}, + [2357] = {.lex_state = 52, .external_lex_state = 12}, [2358] = {.lex_state = 52, .external_lex_state = 14}, - [2359] = {.lex_state = 52, .external_lex_state = 14}, - [2360] = {.lex_state = 52, .external_lex_state = 9}, + [2359] = {.lex_state = 52, .external_lex_state = 9}, + [2360] = {.lex_state = 52, .external_lex_state = 14}, [2361] = {.lex_state = 52, .external_lex_state = 13}, [2362] = {.lex_state = 52, .external_lex_state = 13}, - [2363] = {.lex_state = 52, .external_lex_state = 12}, + [2363] = {.lex_state = 52, .external_lex_state = 15}, [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 12}, - [2366] = {.lex_state = 52, .external_lex_state = 13}, - [2367] = {.lex_state = 52, .external_lex_state = 14}, - [2368] = {.lex_state = 52, .external_lex_state = 14}, - [2369] = {.lex_state = 52, .external_lex_state = 13}, + [2365] = {.lex_state = 52, .external_lex_state = 14}, + [2366] = {.lex_state = 52, .external_lex_state = 19}, + [2367] = {.lex_state = 52, .external_lex_state = 13}, + [2368] = {.lex_state = 52, .external_lex_state = 13}, + [2369] = {.lex_state = 52, .external_lex_state = 15}, [2370] = {.lex_state = 52, .external_lex_state = 13}, - [2371] = {.lex_state = 52, .external_lex_state = 13}, - [2372] = {.lex_state = 52, .external_lex_state = 9}, - [2373] = {.lex_state = 52, .external_lex_state = 14}, - [2374] = {.lex_state = 3, .external_lex_state = 12}, + [2371] = {.lex_state = 9, .external_lex_state = 17}, + [2372] = {.lex_state = 52, .external_lex_state = 14}, + [2373] = {.lex_state = 52, .external_lex_state = 13}, + [2374] = {.lex_state = 52, .external_lex_state = 9}, [2375] = {.lex_state = 52, .external_lex_state = 13}, - [2376] = {.lex_state = 52, .external_lex_state = 13}, - [2377] = {.lex_state = 9, .external_lex_state = 17}, - [2378] = {.lex_state = 52, .external_lex_state = 13}, + [2376] = {.lex_state = 52, .external_lex_state = 9}, + [2377] = {.lex_state = 52, .external_lex_state = 13}, + [2378] = {.lex_state = 52, .external_lex_state = 14}, [2379] = {.lex_state = 52, .external_lex_state = 13}, - [2380] = {.lex_state = 52, .external_lex_state = 13}, + [2380] = {.lex_state = 52, .external_lex_state = 12}, [2381] = {.lex_state = 52, .external_lex_state = 13}, - [2382] = {.lex_state = 52, .external_lex_state = 13}, - [2383] = {.lex_state = 52, .external_lex_state = 14}, + [2382] = {.lex_state = 52, .external_lex_state = 14}, + [2383] = {.lex_state = 52, .external_lex_state = 13}, [2384] = {.lex_state = 52, .external_lex_state = 14}, - [2385] = {.lex_state = 52, .external_lex_state = 14}, - [2386] = {.lex_state = 52, .external_lex_state = 13}, - [2387] = {.lex_state = 52, .external_lex_state = 14}, - [2388] = {.lex_state = 52, .external_lex_state = 14}, + [2385] = {.lex_state = 52, .external_lex_state = 9}, + [2386] = {.lex_state = 52, .external_lex_state = 12}, + [2387] = {.lex_state = 52, .external_lex_state = 19}, + [2388] = {.lex_state = 52, .external_lex_state = 13}, [2389] = {.lex_state = 52, .external_lex_state = 13}, - [2390] = {.lex_state = 52, .external_lex_state = 13}, + [2390] = {.lex_state = 52, .external_lex_state = 19}, [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 9, .external_lex_state = 17}, - [2393] = {.lex_state = 52, .external_lex_state = 9}, + [2392] = {.lex_state = 52, .external_lex_state = 15}, + [2393] = {.lex_state = 52, .external_lex_state = 12}, [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 14}, - [2396] = {.lex_state = 52, .external_lex_state = 13}, - [2397] = {.lex_state = 52, .external_lex_state = 13}, - [2398] = {.lex_state = 52, .external_lex_state = 15}, - [2399] = {.lex_state = 52, .external_lex_state = 13}, - [2400] = {.lex_state = 52, .external_lex_state = 12}, - [2401] = {.lex_state = 52, .external_lex_state = 13}, - [2402] = {.lex_state = 52, .external_lex_state = 12}, - [2403] = {.lex_state = 52, .external_lex_state = 13}, - [2404] = {.lex_state = 52, .external_lex_state = 9}, - [2405] = {.lex_state = 52, .external_lex_state = 12}, - [2406] = {.lex_state = 52, .external_lex_state = 13}, - [2407] = {.lex_state = 52, .external_lex_state = 13}, + [2395] = {.lex_state = 52, .external_lex_state = 13}, + [2396] = {.lex_state = 52, .external_lex_state = 12}, + [2397] = {.lex_state = 52, .external_lex_state = 14}, + [2398] = {.lex_state = 52, .external_lex_state = 14}, + [2399] = {.lex_state = 52, .external_lex_state = 15}, + [2400] = {.lex_state = 52, .external_lex_state = 9}, + [2401] = {.lex_state = 52, .external_lex_state = 19}, + [2402] = {.lex_state = 52, .external_lex_state = 13}, + [2403] = {.lex_state = 52, .external_lex_state = 15}, + [2404] = {.lex_state = 52, .external_lex_state = 14}, + [2405] = {.lex_state = 52, .external_lex_state = 9}, + [2406] = {.lex_state = 52, .external_lex_state = 12}, + [2407] = {.lex_state = 52, .external_lex_state = 14}, [2408] = {.lex_state = 52, .external_lex_state = 14}, - [2409] = {.lex_state = 52, .external_lex_state = 15}, + [2409] = {.lex_state = 52, .external_lex_state = 14}, [2410] = {.lex_state = 52, .external_lex_state = 14}, - [2411] = {.lex_state = 52, .external_lex_state = 12}, - [2412] = {.lex_state = 52, .external_lex_state = 12}, + [2411] = {.lex_state = 52, .external_lex_state = 15}, + [2412] = {.lex_state = 3, .external_lex_state = 12}, [2413] = {.lex_state = 52, .external_lex_state = 12}, - [2414] = {.lex_state = 52, .external_lex_state = 13}, - [2415] = {.lex_state = 52, .external_lex_state = 9}, - [2416] = {.lex_state = 52, .external_lex_state = 13}, - [2417] = {.lex_state = 52, .external_lex_state = 19}, + [2414] = {.lex_state = 52, .external_lex_state = 14}, + [2415] = {.lex_state = 52, .external_lex_state = 14}, + [2416] = {.lex_state = 52, .external_lex_state = 14}, + [2417] = {.lex_state = 52, .external_lex_state = 13}, [2418] = {.lex_state = 52, .external_lex_state = 13}, - [2419] = {.lex_state = 52, .external_lex_state = 19}, - [2420] = {.lex_state = 52, .external_lex_state = 13}, - [2421] = {.lex_state = 52, .external_lex_state = 15}, - [2422] = {.lex_state = 9, .external_lex_state = 17}, + [2419] = {.lex_state = 52, .external_lex_state = 13}, + [2420] = {.lex_state = 52, .external_lex_state = 12}, + [2421] = {.lex_state = 52, .external_lex_state = 12}, + [2422] = {.lex_state = 52, .external_lex_state = 13}, [2423] = {.lex_state = 52, .external_lex_state = 13}, - [2424] = {.lex_state = 52, .external_lex_state = 14}, - [2425] = {.lex_state = 52, .external_lex_state = 14}, - [2426] = {.lex_state = 52, .external_lex_state = 15}, - [2427] = {.lex_state = 52, .external_lex_state = 13}, - [2428] = {.lex_state = 52, .external_lex_state = 13}, - [2429] = {.lex_state = 52, .external_lex_state = 9}, - [2430] = {.lex_state = 52, .external_lex_state = 9}, - [2431] = {.lex_state = 52, .external_lex_state = 14}, - [2432] = {.lex_state = 52, .external_lex_state = 14}, - [2433] = {.lex_state = 52, .external_lex_state = 13}, + [2424] = {.lex_state = 52, .external_lex_state = 15}, + [2425] = {.lex_state = 52, .external_lex_state = 13}, + [2426] = {.lex_state = 3, .external_lex_state = 12}, + [2427] = {.lex_state = 52, .external_lex_state = 12}, + [2428] = {.lex_state = 52, .external_lex_state = 14}, + [2429] = {.lex_state = 52, .external_lex_state = 15}, + [2430] = {.lex_state = 52, .external_lex_state = 15}, + [2431] = {.lex_state = 52, .external_lex_state = 9}, + [2432] = {.lex_state = 52, .external_lex_state = 13}, + [2433] = {.lex_state = 52, .external_lex_state = 15}, [2434] = {.lex_state = 52, .external_lex_state = 13}, - [2435] = {.lex_state = 52, .external_lex_state = 12}, - [2436] = {.lex_state = 52, .external_lex_state = 13}, - [2437] = {.lex_state = 52, .external_lex_state = 13}, - [2438] = {.lex_state = 52, .external_lex_state = 12}, - [2439] = {.lex_state = 52, .external_lex_state = 12}, - [2440] = {.lex_state = 52, .external_lex_state = 15}, - [2441] = {.lex_state = 52, .external_lex_state = 9}, - [2442] = {.lex_state = 52, .external_lex_state = 14}, + [2435] = {.lex_state = 52, .external_lex_state = 13}, + [2436] = {.lex_state = 52, .external_lex_state = 9}, + [2437] = {.lex_state = 8, .external_lex_state = 15}, + [2438] = {.lex_state = 52, .external_lex_state = 13}, + [2439] = {.lex_state = 52, .external_lex_state = 13}, + [2440] = {.lex_state = 8, .external_lex_state = 15}, + [2441] = {.lex_state = 8, .external_lex_state = 15}, + [2442] = {.lex_state = 8, .external_lex_state = 15}, [2443] = {.lex_state = 52, .external_lex_state = 13}, - [2444] = {.lex_state = 52, .external_lex_state = 12}, - [2445] = {.lex_state = 52, .external_lex_state = 9}, - [2446] = {.lex_state = 52, .external_lex_state = 12}, + [2444] = {.lex_state = 52, .external_lex_state = 14}, + [2445] = {.lex_state = 52, .external_lex_state = 14}, + [2446] = {.lex_state = 52, .external_lex_state = 14}, [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 14}, - [2449] = {.lex_state = 52, .external_lex_state = 9}, - [2450] = {.lex_state = 52, .external_lex_state = 13}, - [2451] = {.lex_state = 52, .external_lex_state = 14}, - [2452] = {.lex_state = 3, .external_lex_state = 12}, - [2453] = {.lex_state = 52, .external_lex_state = 9}, + [2448] = {.lex_state = 52, .external_lex_state = 13}, + [2449] = {.lex_state = 8, .external_lex_state = 15}, + [2450] = {.lex_state = 52, .external_lex_state = 15}, + [2451] = {.lex_state = 52, .external_lex_state = 15}, + [2452] = {.lex_state = 52, .external_lex_state = 9}, + [2453] = {.lex_state = 52, .external_lex_state = 15}, [2454] = {.lex_state = 52, .external_lex_state = 12}, - [2455] = {.lex_state = 52, .external_lex_state = 15}, - [2456] = {.lex_state = 52, .external_lex_state = 12}, - [2457] = {.lex_state = 52, .external_lex_state = 12}, + [2455] = {.lex_state = 52, .external_lex_state = 14}, + [2456] = {.lex_state = 52, .external_lex_state = 19}, + [2457] = {.lex_state = 52, .external_lex_state = 15}, [2458] = {.lex_state = 52, .external_lex_state = 15}, - [2459] = {.lex_state = 52, .external_lex_state = 15}, - [2460] = {.lex_state = 52, .external_lex_state = 13}, - [2461] = {.lex_state = 52, .external_lex_state = 19}, - [2462] = {.lex_state = 52, .external_lex_state = 13}, - [2463] = {.lex_state = 52, .external_lex_state = 13}, + [2459] = {.lex_state = 52, .external_lex_state = 12}, + [2460] = {.lex_state = 52, .external_lex_state = 9}, + [2461] = {.lex_state = 52, .external_lex_state = 14}, + [2462] = {.lex_state = 52, .external_lex_state = 12}, + [2463] = {.lex_state = 52, .external_lex_state = 14}, [2464] = {.lex_state = 52, .external_lex_state = 12}, - [2465] = {.lex_state = 52, .external_lex_state = 12}, - [2466] = {.lex_state = 52, .external_lex_state = 14}, - [2467] = {.lex_state = 52, .external_lex_state = 14}, - [2468] = {.lex_state = 52, .external_lex_state = 14}, - [2469] = {.lex_state = 52, .external_lex_state = 13}, - [2470] = {.lex_state = 8, .external_lex_state = 15}, - [2471] = {.lex_state = 52, .external_lex_state = 13}, - [2472] = {.lex_state = 52, .external_lex_state = 14}, + [2465] = {.lex_state = 52, .external_lex_state = 13}, + [2466] = {.lex_state = 52, .external_lex_state = 13}, + [2467] = {.lex_state = 52, .external_lex_state = 12}, + [2468] = {.lex_state = 52, .external_lex_state = 13}, + [2469] = {.lex_state = 52, .external_lex_state = 14}, + [2470] = {.lex_state = 52, .external_lex_state = 15}, + [2471] = {.lex_state = 52, .external_lex_state = 19}, + [2472] = {.lex_state = 52, .external_lex_state = 13}, [2473] = {.lex_state = 52, .external_lex_state = 13}, - [2474] = {.lex_state = 52, .external_lex_state = 13}, + [2474] = {.lex_state = 52, .external_lex_state = 14}, [2475] = {.lex_state = 52, .external_lex_state = 14}, - [2476] = {.lex_state = 52, .external_lex_state = 14}, - [2477] = {.lex_state = 52, .external_lex_state = 13}, - [2478] = {.lex_state = 52, .external_lex_state = 12}, - [2479] = {.lex_state = 52, .external_lex_state = 15}, - [2480] = {.lex_state = 52, .external_lex_state = 19}, - [2481] = {.lex_state = 52, .external_lex_state = 14}, - [2482] = {.lex_state = 9, .external_lex_state = 17}, - [2483] = {.lex_state = 8, .external_lex_state = 15}, - [2484] = {.lex_state = 52, .external_lex_state = 14}, - [2485] = {.lex_state = 52, .external_lex_state = 14}, - [2486] = {.lex_state = 8, .external_lex_state = 15}, - [2487] = {.lex_state = 52, .external_lex_state = 19}, - [2488] = {.lex_state = 8, .external_lex_state = 15}, - [2489] = {.lex_state = 52, .external_lex_state = 9}, - [2490] = {.lex_state = 52, .external_lex_state = 13}, - [2491] = {.lex_state = 52, .external_lex_state = 13}, - [2492] = {.lex_state = 52, .external_lex_state = 13}, - [2493] = {.lex_state = 52, .external_lex_state = 12}, - [2494] = {.lex_state = 52, .external_lex_state = 13}, - [2495] = {.lex_state = 52, .external_lex_state = 9}, - [2496] = {.lex_state = 52, .external_lex_state = 13}, + [2476] = {.lex_state = 9, .external_lex_state = 17}, + [2477] = {.lex_state = 52, .external_lex_state = 14}, + [2478] = {.lex_state = 52, .external_lex_state = 15}, + [2479] = {.lex_state = 52, .external_lex_state = 13}, + [2480] = {.lex_state = 52, .external_lex_state = 14}, + [2481] = {.lex_state = 52, .external_lex_state = 19}, + [2482] = {.lex_state = 52, .external_lex_state = 13}, + [2483] = {.lex_state = 52, .external_lex_state = 15}, + [2484] = {.lex_state = 8, .external_lex_state = 15}, + [2485] = {.lex_state = 52, .external_lex_state = 15}, + [2486] = {.lex_state = 52, .external_lex_state = 13}, + [2487] = {.lex_state = 52, .external_lex_state = 13}, + [2488] = {.lex_state = 9, .external_lex_state = 17}, + [2489] = {.lex_state = 52, .external_lex_state = 13}, + [2490] = {.lex_state = 3, .external_lex_state = 12}, + [2491] = {.lex_state = 3, .external_lex_state = 12}, + [2492] = {.lex_state = 3, .external_lex_state = 12}, + [2493] = {.lex_state = 52, .external_lex_state = 15}, + [2494] = {.lex_state = 52, .external_lex_state = 15}, + [2495] = {.lex_state = 52, .external_lex_state = 15}, + [2496] = {.lex_state = 52, .external_lex_state = 14}, [2497] = {.lex_state = 52, .external_lex_state = 12}, - [2498] = {.lex_state = 52, .external_lex_state = 14}, - [2499] = {.lex_state = 52, .external_lex_state = 9}, - [2500] = {.lex_state = 52, .external_lex_state = 9}, - [2501] = {.lex_state = 52, .external_lex_state = 9}, + [2498] = {.lex_state = 52, .external_lex_state = 9}, + [2499] = {.lex_state = 9, .external_lex_state = 15}, + [2500] = {.lex_state = 52, .external_lex_state = 15}, + [2501] = {.lex_state = 52, .external_lex_state = 15}, [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 9}, - [2504] = {.lex_state = 52, .external_lex_state = 9}, - [2505] = {.lex_state = 52, .external_lex_state = 9}, - [2506] = {.lex_state = 52, .external_lex_state = 9}, - [2507] = {.lex_state = 52, .external_lex_state = 15}, - [2508] = {.lex_state = 52, .external_lex_state = 13}, - [2509] = {.lex_state = 52, .external_lex_state = 15}, - [2510] = {.lex_state = 52, .external_lex_state = 12}, - [2511] = {.lex_state = 52, .external_lex_state = 13}, - [2512] = {.lex_state = 52, .external_lex_state = 9}, + [2503] = {.lex_state = 52, .external_lex_state = 14}, + [2504] = {.lex_state = 52, .external_lex_state = 15}, + [2505] = {.lex_state = 52, .external_lex_state = 12}, + [2506] = {.lex_state = 52, .external_lex_state = 12}, + [2507] = {.lex_state = 52, .external_lex_state = 9}, + [2508] = {.lex_state = 52, .external_lex_state = 9}, + [2509] = {.lex_state = 52, .external_lex_state = 12}, + [2510] = {.lex_state = 52, .external_lex_state = 15}, + [2511] = {.lex_state = 52, .external_lex_state = 18}, + [2512] = {.lex_state = 52, .external_lex_state = 15}, [2513] = {.lex_state = 52, .external_lex_state = 9}, - [2514] = {.lex_state = 52, .external_lex_state = 9}, - [2515] = {.lex_state = 52, .external_lex_state = 9}, - [2516] = {.lex_state = 52, .external_lex_state = 15}, - [2517] = {.lex_state = 52, .external_lex_state = 12}, - [2518] = {.lex_state = 52, .external_lex_state = 15}, - [2519] = {.lex_state = 52, .external_lex_state = 12}, - [2520] = {.lex_state = 52, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 18}, - [2522] = {.lex_state = 52, .external_lex_state = 14}, - [2523] = {.lex_state = 9, .external_lex_state = 15}, - [2524] = {.lex_state = 52, .external_lex_state = 15}, - [2525] = {.lex_state = 52, .external_lex_state = 15}, - [2526] = {.lex_state = 52, .external_lex_state = 15}, - [2527] = {.lex_state = 9, .external_lex_state = 15}, - [2528] = {.lex_state = 52, .external_lex_state = 9}, - [2529] = {.lex_state = 52, .external_lex_state = 14}, - [2530] = {.lex_state = 52, .external_lex_state = 14}, - [2531] = {.lex_state = 52, .external_lex_state = 15}, - [2532] = {.lex_state = 52, .external_lex_state = 14}, - [2533] = {.lex_state = 52, .external_lex_state = 15}, - [2534] = {.lex_state = 52, .external_lex_state = 18}, - [2535] = {.lex_state = 52, .external_lex_state = 14}, - [2536] = {.lex_state = 52, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 15}, + [2514] = {.lex_state = 52, .external_lex_state = 14}, + [2515] = {.lex_state = 52, .external_lex_state = 13}, + [2516] = {.lex_state = 52, .external_lex_state = 18}, + [2517] = {.lex_state = 52, .external_lex_state = 18}, + [2518] = {.lex_state = 52, .external_lex_state = 18}, + [2519] = {.lex_state = 52, .external_lex_state = 9}, + [2520] = {.lex_state = 9, .external_lex_state = 15}, + [2521] = {.lex_state = 52, .external_lex_state = 9}, + [2522] = {.lex_state = 52, .external_lex_state = 15}, + [2523] = {.lex_state = 52, .external_lex_state = 18}, + [2524] = {.lex_state = 52, .external_lex_state = 18}, + [2525] = {.lex_state = 52, .external_lex_state = 18}, + [2526] = {.lex_state = 52, .external_lex_state = 18}, + [2527] = {.lex_state = 52, .external_lex_state = 9}, + [2528] = {.lex_state = 52, .external_lex_state = 13}, + [2529] = {.lex_state = 52, .external_lex_state = 15}, + [2530] = {.lex_state = 52, .external_lex_state = 9}, + [2531] = {.lex_state = 52, .external_lex_state = 18}, + [2532] = {.lex_state = 52, .external_lex_state = 9}, + [2533] = {.lex_state = 52, .external_lex_state = 13}, + [2534] = {.lex_state = 52, .external_lex_state = 9}, + [2535] = {.lex_state = 52, .external_lex_state = 18}, + [2536] = {.lex_state = 9, .external_lex_state = 15}, + [2537] = {.lex_state = 52, .external_lex_state = 13}, [2538] = {.lex_state = 52, .external_lex_state = 15}, [2539] = {.lex_state = 52, .external_lex_state = 15}, - [2540] = {.lex_state = 52, .external_lex_state = 15}, - [2541] = {.lex_state = 9, .external_lex_state = 15}, - [2542] = {.lex_state = 52, .external_lex_state = 15}, + [2540] = {.lex_state = 52, .external_lex_state = 12}, + [2541] = {.lex_state = 52, .external_lex_state = 9}, + [2542] = {.lex_state = 52, .external_lex_state = 13}, [2543] = {.lex_state = 9, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 18}, + [2544] = {.lex_state = 52, .external_lex_state = 15}, [2545] = {.lex_state = 9, .external_lex_state = 15}, - [2546] = {.lex_state = 52, .external_lex_state = 13}, - [2547] = {.lex_state = 9, .external_lex_state = 15}, - [2548] = {.lex_state = 52, .external_lex_state = 13}, - [2549] = {.lex_state = 52, .external_lex_state = 14}, - [2550] = {.lex_state = 52, .external_lex_state = 18}, - [2551] = {.lex_state = 52, .external_lex_state = 15}, - [2552] = {.lex_state = 9, .external_lex_state = 15}, - [2553] = {.lex_state = 52, .external_lex_state = 14}, - [2554] = {.lex_state = 52, .external_lex_state = 14}, - [2555] = {.lex_state = 52, .external_lex_state = 18}, - [2556] = {.lex_state = 52, .external_lex_state = 9}, - [2557] = {.lex_state = 52, .external_lex_state = 9}, - [2558] = {.lex_state = 52, .external_lex_state = 9}, - [2559] = {.lex_state = 52, .external_lex_state = 13}, - [2560] = {.lex_state = 52, .external_lex_state = 18}, - [2561] = {.lex_state = 52, .external_lex_state = 13}, - [2562] = {.lex_state = 52, .external_lex_state = 13}, - [2563] = {.lex_state = 52, .external_lex_state = 13}, - [2564] = {.lex_state = 52, .external_lex_state = 15}, - [2565] = {.lex_state = 52, .external_lex_state = 12}, + [2546] = {.lex_state = 52, .external_lex_state = 15}, + [2547] = {.lex_state = 52, .external_lex_state = 15}, + [2548] = {.lex_state = 52, .external_lex_state = 14}, + [2549] = {.lex_state = 52, .external_lex_state = 15}, + [2550] = {.lex_state = 52, .external_lex_state = 15}, + [2551] = {.lex_state = 9, .external_lex_state = 15}, + [2552] = {.lex_state = 52, .external_lex_state = 13}, + [2553] = {.lex_state = 52, .external_lex_state = 9}, + [2554] = {.lex_state = 52, .external_lex_state = 15}, + [2555] = {.lex_state = 52, .external_lex_state = 13}, + [2556] = {.lex_state = 52, .external_lex_state = 14}, + [2557] = {.lex_state = 52, .external_lex_state = 13}, + [2558] = {.lex_state = 52, .external_lex_state = 13}, + [2559] = {.lex_state = 52, .external_lex_state = 14}, + [2560] = {.lex_state = 52, .external_lex_state = 14}, + [2561] = {.lex_state = 9, .external_lex_state = 15}, + [2562] = {.lex_state = 52, .external_lex_state = 18}, + [2563] = {.lex_state = 9, .external_lex_state = 15}, + [2564] = {.lex_state = 9, .external_lex_state = 15}, + [2565] = {.lex_state = 52, .external_lex_state = 15}, [2566] = {.lex_state = 52, .external_lex_state = 15}, - [2567] = {.lex_state = 52, .external_lex_state = 13}, + [2567] = {.lex_state = 9, .external_lex_state = 15}, [2568] = {.lex_state = 52, .external_lex_state = 15}, - [2569] = {.lex_state = 52, .external_lex_state = 12}, - [2570] = {.lex_state = 52, .external_lex_state = 13}, + [2569] = {.lex_state = 52, .external_lex_state = 13}, + [2570] = {.lex_state = 52, .external_lex_state = 14}, [2571] = {.lex_state = 52, .external_lex_state = 9}, - [2572] = {.lex_state = 52, .external_lex_state = 15}, + [2572] = {.lex_state = 52, .external_lex_state = 18}, [2573] = {.lex_state = 52, .external_lex_state = 13}, [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 13}, + [2575] = {.lex_state = 52, .external_lex_state = 12}, [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 9, .external_lex_state = 15}, + [2577] = {.lex_state = 52, .external_lex_state = 15}, [2578] = {.lex_state = 52, .external_lex_state = 9}, [2579] = {.lex_state = 52, .external_lex_state = 18}, - [2580] = {.lex_state = 9, .external_lex_state = 15}, - [2581] = {.lex_state = 52, .external_lex_state = 15}, - [2582] = {.lex_state = 52, .external_lex_state = 18}, - [2583] = {.lex_state = 52, .external_lex_state = 18}, - [2584] = {.lex_state = 52, .external_lex_state = 18}, - [2585] = {.lex_state = 52, .external_lex_state = 15}, - [2586] = {.lex_state = 52, .external_lex_state = 18}, - [2587] = {.lex_state = 52, .external_lex_state = 13}, - [2588] = {.lex_state = 52, .external_lex_state = 18}, - [2589] = {.lex_state = 52, .external_lex_state = 15}, - [2590] = {.lex_state = 52, .external_lex_state = 18}, + [2580] = {.lex_state = 52, .external_lex_state = 15}, + [2581] = {.lex_state = 52, .external_lex_state = 18}, + [2582] = {.lex_state = 52, .external_lex_state = 13}, + [2583] = {.lex_state = 52, .external_lex_state = 13}, + [2584] = {.lex_state = 52, .external_lex_state = 9}, + [2585] = {.lex_state = 52, .external_lex_state = 9}, + [2586] = {.lex_state = 52, .external_lex_state = 9}, + [2587] = {.lex_state = 52, .external_lex_state = 15}, + [2588] = {.lex_state = 52, .external_lex_state = 15}, + [2589] = {.lex_state = 52, .external_lex_state = 18}, + [2590] = {.lex_state = 52, .external_lex_state = 15}, [2591] = {.lex_state = 52, .external_lex_state = 15}, - [2592] = {.lex_state = 9, .external_lex_state = 15}, - [2593] = {.lex_state = 52, .external_lex_state = 18}, - [2594] = {.lex_state = 52, .external_lex_state = 18}, - [2595] = {.lex_state = 52, .external_lex_state = 18}, - [2596] = {.lex_state = 52, .external_lex_state = 13}, + [2592] = {.lex_state = 52, .external_lex_state = 14}, + [2593] = {.lex_state = 52, .external_lex_state = 13}, + [2594] = {.lex_state = 52, .external_lex_state = 15}, + [2595] = {.lex_state = 52, .external_lex_state = 9}, + [2596] = {.lex_state = 52, .external_lex_state = 9}, [2597] = {.lex_state = 52, .external_lex_state = 15}, - [2598] = {.lex_state = 52, .external_lex_state = 13}, - [2599] = {.lex_state = 52, .external_lex_state = 9}, + [2598] = {.lex_state = 52, .external_lex_state = 18}, + [2599] = {.lex_state = 52, .external_lex_state = 13}, [2600] = {.lex_state = 52, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 15}, + [2601] = {.lex_state = 52, .external_lex_state = 13}, [2602] = {.lex_state = 52, .external_lex_state = 13}, - [2603] = {.lex_state = 52, .external_lex_state = 13}, - [2604] = {.lex_state = 52, .external_lex_state = 15}, - [2605] = {.lex_state = 4, .external_lex_state = 15}, + [2603] = {.lex_state = 52, .external_lex_state = 12}, + [2604] = {.lex_state = 52, .external_lex_state = 14}, + [2605] = {.lex_state = 52, .external_lex_state = 12}, [2606] = {.lex_state = 52, .external_lex_state = 13}, - [2607] = {.lex_state = 52, .external_lex_state = 15}, - [2608] = {.lex_state = 52, .external_lex_state = 15}, + [2607] = {.lex_state = 52, .external_lex_state = 12}, + [2608] = {.lex_state = 52, .external_lex_state = 12}, [2609] = {.lex_state = 52, .external_lex_state = 15}, - [2610] = {.lex_state = 52, .external_lex_state = 15}, + [2610] = {.lex_state = 52, .external_lex_state = 13}, [2611] = {.lex_state = 4, .external_lex_state = 15}, [2612] = {.lex_state = 52, .external_lex_state = 15}, - [2613] = {.lex_state = 52, .external_lex_state = 15}, - [2614] = {.lex_state = 4, .external_lex_state = 15}, - [2615] = {.lex_state = 52, .external_lex_state = 13}, - [2616] = {.lex_state = 52, .external_lex_state = 14}, - [2617] = {.lex_state = 52, .external_lex_state = 12}, + [2613] = {.lex_state = 52, .external_lex_state = 13}, + [2614] = {.lex_state = 52, .external_lex_state = 13}, + [2615] = {.lex_state = 52, .external_lex_state = 14}, + [2616] = {.lex_state = 52, .external_lex_state = 12}, + [2617] = {.lex_state = 52, .external_lex_state = 15}, [2618] = {.lex_state = 52, .external_lex_state = 12}, - [2619] = {.lex_state = 52, .external_lex_state = 15}, + [2619] = {.lex_state = 52, .external_lex_state = 12}, [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 15}, + [2621] = {.lex_state = 52, .external_lex_state = 12}, [2622] = {.lex_state = 52, .external_lex_state = 13}, - [2623] = {.lex_state = 52, .external_lex_state = 14}, - [2624] = {.lex_state = 52, .external_lex_state = 12}, - [2625] = {.lex_state = 52, .external_lex_state = 12}, - [2626] = {.lex_state = 52, .external_lex_state = 13}, - [2627] = {.lex_state = 52, .external_lex_state = 12}, - [2628] = {.lex_state = 52, .external_lex_state = 12}, - [2629] = {.lex_state = 52, .external_lex_state = 13}, - [2630] = {.lex_state = 52, .external_lex_state = 12}, - [2631] = {.lex_state = 52, .external_lex_state = 15}, - [2632] = {.lex_state = 52, .external_lex_state = 12}, + [2623] = {.lex_state = 52, .external_lex_state = 13}, + [2624] = {.lex_state = 52, .external_lex_state = 15}, + [2625] = {.lex_state = 52, .external_lex_state = 13}, + [2626] = {.lex_state = 52, .external_lex_state = 14}, + [2627] = {.lex_state = 52, .external_lex_state = 13}, + [2628] = {.lex_state = 52, .external_lex_state = 14}, + [2629] = {.lex_state = 52, .external_lex_state = 15}, + [2630] = {.lex_state = 52, .external_lex_state = 15}, + [2631] = {.lex_state = 52, .external_lex_state = 13}, + [2632] = {.lex_state = 52, .external_lex_state = 15}, [2633] = {.lex_state = 52, .external_lex_state = 13}, - [2634] = {.lex_state = 52, .external_lex_state = 14}, + [2634] = {.lex_state = 52, .external_lex_state = 12}, [2635] = {.lex_state = 52, .external_lex_state = 13}, - [2636] = {.lex_state = 52, .external_lex_state = 13}, - [2637] = {.lex_state = 52, .external_lex_state = 14}, - [2638] = {.lex_state = 52, .external_lex_state = 12}, - [2639] = {.lex_state = 52, .external_lex_state = 12}, - [2640] = {.lex_state = 52, .external_lex_state = 14}, - [2641] = {.lex_state = 52, .external_lex_state = 12}, + [2636] = {.lex_state = 52, .external_lex_state = 15}, + [2637] = {.lex_state = 52, .external_lex_state = 12}, + [2638] = {.lex_state = 4, .external_lex_state = 15}, + [2639] = {.lex_state = 52, .external_lex_state = 15}, + [2640] = {.lex_state = 52, .external_lex_state = 15}, + [2641] = {.lex_state = 52, .external_lex_state = 15}, [2642] = {.lex_state = 52, .external_lex_state = 15}, - [2643] = {.lex_state = 52, .external_lex_state = 14}, - [2644] = {.lex_state = 52, .external_lex_state = 13}, - [2645] = {.lex_state = 52, .external_lex_state = 14}, + [2643] = {.lex_state = 52, .external_lex_state = 12}, + [2644] = {.lex_state = 52, .external_lex_state = 15}, + [2645] = {.lex_state = 52, .external_lex_state = 15}, [2646] = {.lex_state = 52, .external_lex_state = 15}, - [2647] = {.lex_state = 52, .external_lex_state = 14}, - [2648] = {.lex_state = 52, .external_lex_state = 15}, - [2649] = {.lex_state = 52, .external_lex_state = 13}, + [2647] = {.lex_state = 52, .external_lex_state = 13}, + [2648] = {.lex_state = 52, .external_lex_state = 14}, + [2649] = {.lex_state = 52, .external_lex_state = 14}, [2650] = {.lex_state = 52, .external_lex_state = 15}, [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 12}, - [2653] = {.lex_state = 52, .external_lex_state = 15}, + [2652] = {.lex_state = 52, .external_lex_state = 13}, + [2653] = {.lex_state = 52, .external_lex_state = 12}, [2654] = {.lex_state = 52, .external_lex_state = 14}, - [2655] = {.lex_state = 52, .external_lex_state = 12}, - [2656] = {.lex_state = 52, .external_lex_state = 12}, + [2655] = {.lex_state = 52, .external_lex_state = 15}, + [2656] = {.lex_state = 52, .external_lex_state = 15}, [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 12}, - [2659] = {.lex_state = 52, .external_lex_state = 15}, - [2660] = {.lex_state = 52, .external_lex_state = 15}, - [2661] = {.lex_state = 52, .external_lex_state = 12}, - [2662] = {.lex_state = 52, .external_lex_state = 12}, + [2658] = {.lex_state = 52, .external_lex_state = 15}, + [2659] = {.lex_state = 52, .external_lex_state = 12}, + [2660] = {.lex_state = 52, .external_lex_state = 13}, + [2661] = {.lex_state = 52, .external_lex_state = 14}, + [2662] = {.lex_state = 52, .external_lex_state = 15}, [2663] = {.lex_state = 52, .external_lex_state = 14}, - [2664] = {.lex_state = 52, .external_lex_state = 15}, + [2664] = {.lex_state = 52, .external_lex_state = 14}, [2665] = {.lex_state = 52, .external_lex_state = 12}, - [2666] = {.lex_state = 52, .external_lex_state = 15}, - [2667] = {.lex_state = 52, .external_lex_state = 12}, + [2666] = {.lex_state = 52, .external_lex_state = 12}, + [2667] = {.lex_state = 52, .external_lex_state = 15}, [2668] = {.lex_state = 52, .external_lex_state = 12}, - [2669] = {.lex_state = 52, .external_lex_state = 15}, - [2670] = {.lex_state = 52, .external_lex_state = 14}, - [2671] = {.lex_state = 52, .external_lex_state = 12}, + [2669] = {.lex_state = 52, .external_lex_state = 12}, + [2670] = {.lex_state = 52, .external_lex_state = 12}, + [2671] = {.lex_state = 52, .external_lex_state = 15}, [2672] = {.lex_state = 52, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 15}, - [2674] = {.lex_state = 52, .external_lex_state = 14}, + [2673] = {.lex_state = 52, .external_lex_state = 12}, + [2674] = {.lex_state = 52, .external_lex_state = 15}, [2675] = {.lex_state = 52, .external_lex_state = 12}, [2676] = {.lex_state = 52, .external_lex_state = 15}, [2677] = {.lex_state = 52, .external_lex_state = 15}, - [2678] = {.lex_state = 52, .external_lex_state = 14}, + [2678] = {.lex_state = 52, .external_lex_state = 12}, [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 15}, - [2681] = {.lex_state = 52, .external_lex_state = 13}, - [2682] = {.lex_state = 52, .external_lex_state = 13}, - [2683] = {.lex_state = 52, .external_lex_state = 15}, - [2684] = {.lex_state = 52, .external_lex_state = 13}, + [2680] = {.lex_state = 52, .external_lex_state = 13}, + [2681] = {.lex_state = 52, .external_lex_state = 14}, + [2682] = {.lex_state = 52, .external_lex_state = 15}, + [2683] = {.lex_state = 4, .external_lex_state = 15}, + [2684] = {.lex_state = 52, .external_lex_state = 15}, [2685] = {.lex_state = 52, .external_lex_state = 15}, - [2686] = {.lex_state = 52, .external_lex_state = 13}, - [2687] = {.lex_state = 52, .external_lex_state = 15}, + [2686] = {.lex_state = 52, .external_lex_state = 15}, + [2687] = {.lex_state = 52, .external_lex_state = 14}, [2688] = {.lex_state = 52, .external_lex_state = 15}, - [2689] = {.lex_state = 52, .external_lex_state = 15}, - [2690] = {.lex_state = 4, .external_lex_state = 15}, - [2691] = {.lex_state = 4, .external_lex_state = 15}, - [2692] = {.lex_state = 52, .external_lex_state = 15}, - [2693] = {.lex_state = 52, .external_lex_state = 13}, - [2694] = {.lex_state = 52, .external_lex_state = 15}, - [2695] = {.lex_state = 52, .external_lex_state = 14}, + [2689] = {.lex_state = 52, .external_lex_state = 13}, + [2690] = {.lex_state = 52, .external_lex_state = 12}, + [2691] = {.lex_state = 52, .external_lex_state = 15}, + [2692] = {.lex_state = 52, .external_lex_state = 13}, + [2693] = {.lex_state = 52, .external_lex_state = 15}, + [2694] = {.lex_state = 52, .external_lex_state = 12}, + [2695] = {.lex_state = 52, .external_lex_state = 15}, [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 13}, - [2698] = {.lex_state = 52, .external_lex_state = 15}, - [2699] = {.lex_state = 52, .external_lex_state = 13}, - [2700] = {.lex_state = 52, .external_lex_state = 12}, - [2701] = {.lex_state = 52, .external_lex_state = 15}, - [2702] = {.lex_state = 52, .external_lex_state = 15}, - [2703] = {.lex_state = 52, .external_lex_state = 12}, - [2704] = {.lex_state = 52, .external_lex_state = 15}, + [2697] = {.lex_state = 52, .external_lex_state = 15}, + [2698] = {.lex_state = 52, .external_lex_state = 12}, + [2699] = {.lex_state = 52, .external_lex_state = 15}, + [2700] = {.lex_state = 52, .external_lex_state = 13}, + [2701] = {.lex_state = 52, .external_lex_state = 13}, + [2702] = {.lex_state = 52, .external_lex_state = 12}, + [2703] = {.lex_state = 52, .external_lex_state = 14}, + [2704] = {.lex_state = 52, .external_lex_state = 14}, [2705] = {.lex_state = 52, .external_lex_state = 15}, [2706] = {.lex_state = 52, .external_lex_state = 12}, [2707] = {.lex_state = 52, .external_lex_state = 13}, [2708] = {.lex_state = 52, .external_lex_state = 15}, - [2709] = {.lex_state = 52, .external_lex_state = 12}, - [2710] = {.lex_state = 52, .external_lex_state = 15}, - [2711] = {.lex_state = 4, .external_lex_state = 15}, + [2709] = {.lex_state = 52, .external_lex_state = 15}, + [2710] = {.lex_state = 52, .external_lex_state = 12}, + [2711] = {.lex_state = 52, .external_lex_state = 15}, [2712] = {.lex_state = 52, .external_lex_state = 15}, [2713] = {.lex_state = 52, .external_lex_state = 13}, - [2714] = {.lex_state = 52, .external_lex_state = 15}, + [2714] = {.lex_state = 52, .external_lex_state = 12}, [2715] = {.lex_state = 52, .external_lex_state = 15}, [2716] = {.lex_state = 52, .external_lex_state = 15}, [2717] = {.lex_state = 52, .external_lex_state = 15}, [2718] = {.lex_state = 52, .external_lex_state = 15}, [2719] = {.lex_state = 52, .external_lex_state = 15}, - [2720] = {.lex_state = 52, .external_lex_state = 13}, - [2721] = {.lex_state = 52, .external_lex_state = 15}, - [2722] = {.lex_state = 52, .external_lex_state = 12}, - [2723] = {.lex_state = 52, .external_lex_state = 15}, + [2720] = {.lex_state = 52, .external_lex_state = 15}, + [2721] = {.lex_state = 52, .external_lex_state = 13}, + [2722] = {.lex_state = 52, .external_lex_state = 15}, + [2723] = {.lex_state = 52, .external_lex_state = 14}, [2724] = {.lex_state = 52, .external_lex_state = 15}, - [2725] = {.lex_state = 52, .external_lex_state = 15}, + [2725] = {.lex_state = 52, .external_lex_state = 14}, [2726] = {.lex_state = 52, .external_lex_state = 13}, - [2727] = {.lex_state = 52, .external_lex_state = 15}, - [2728] = {.lex_state = 52, .external_lex_state = 15}, + [2727] = {.lex_state = 52, .external_lex_state = 12}, + [2728] = {.lex_state = 52, .external_lex_state = 12}, [2729] = {.lex_state = 52, .external_lex_state = 15}, - [2730] = {.lex_state = 52, .external_lex_state = 13}, - [2731] = {.lex_state = 52, .external_lex_state = 15}, - [2732] = {.lex_state = 52, .external_lex_state = 12}, - [2733] = {.lex_state = 52, .external_lex_state = 15}, + [2730] = {.lex_state = 52, .external_lex_state = 15}, + [2731] = {.lex_state = 52, .external_lex_state = 13}, + [2732] = {.lex_state = 52, .external_lex_state = 15}, + [2733] = {.lex_state = 52, .external_lex_state = 14}, [2734] = {.lex_state = 52, .external_lex_state = 15}, - [2735] = {.lex_state = 52, .external_lex_state = 13}, - [2736] = {.lex_state = 52, .external_lex_state = 15}, - [2737] = {.lex_state = 52, .external_lex_state = 12}, - [2738] = {.lex_state = 52, .external_lex_state = 13}, + [2735] = {.lex_state = 52, .external_lex_state = 15}, + [2736] = {.lex_state = 52, .external_lex_state = 13}, + [2737] = {.lex_state = 52, .external_lex_state = 14}, + [2738] = {.lex_state = 52, .external_lex_state = 15}, [2739] = {.lex_state = 52, .external_lex_state = 12}, - [2740] = {.lex_state = 52, .external_lex_state = 14}, - [2741] = {.lex_state = 52, .external_lex_state = 14}, + [2740] = {.lex_state = 52, .external_lex_state = 15}, + [2741] = {.lex_state = 52, .external_lex_state = 12}, [2742] = {.lex_state = 52, .external_lex_state = 12}, - [2743] = {.lex_state = 52, .external_lex_state = 15}, + [2743] = {.lex_state = 52, .external_lex_state = 14}, [2744] = {.lex_state = 52, .external_lex_state = 12}, - [2745] = {.lex_state = 52, .external_lex_state = 12}, - [2746] = {.lex_state = 4, .external_lex_state = 15}, - [2747] = {.lex_state = 52, .external_lex_state = 14}, + [2745] = {.lex_state = 52, .external_lex_state = 15}, + [2746] = {.lex_state = 52, .external_lex_state = 12}, + [2747] = {.lex_state = 52, .external_lex_state = 15}, [2748] = {.lex_state = 52, .external_lex_state = 15}, - [2749] = {.lex_state = 52, .external_lex_state = 15}, + [2749] = {.lex_state = 52, .external_lex_state = 13}, [2750] = {.lex_state = 52, .external_lex_state = 15}, - [2751] = {.lex_state = 52, .external_lex_state = 13}, + [2751] = {.lex_state = 4, .external_lex_state = 15}, [2752] = {.lex_state = 52, .external_lex_state = 15}, [2753] = {.lex_state = 52, .external_lex_state = 15}, - [2754] = {.lex_state = 52, .external_lex_state = 13}, - [2755] = {.lex_state = 52, .external_lex_state = 12}, - [2756] = {.lex_state = 52, .external_lex_state = 14}, - [2757] = {.lex_state = 52, .external_lex_state = 13}, - [2758] = {.lex_state = 52, .external_lex_state = 12}, - [2759] = {.lex_state = 52, .external_lex_state = 15}, + [2754] = {.lex_state = 52, .external_lex_state = 14}, + [2755] = {.lex_state = 52, .external_lex_state = 15}, + [2756] = {.lex_state = 52, .external_lex_state = 15}, + [2757] = {.lex_state = 52, .external_lex_state = 12}, + [2758] = {.lex_state = 52, .external_lex_state = 15}, + [2759] = {.lex_state = 52, .external_lex_state = 12}, [2760] = {.lex_state = 52, .external_lex_state = 15}, [2761] = {.lex_state = 52, .external_lex_state = 15}, - [2762] = {.lex_state = 52, .external_lex_state = 13}, - [2763] = {.lex_state = 52, .external_lex_state = 14}, + [2762] = {.lex_state = 52, .external_lex_state = 12}, + [2763] = {.lex_state = 52, .external_lex_state = 13}, [2764] = {.lex_state = 52, .external_lex_state = 15}, [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 15}, - [2767] = {.lex_state = 52, .external_lex_state = 14}, - [2768] = {.lex_state = 52, .external_lex_state = 15}, - [2769] = {.lex_state = 52, .external_lex_state = 12}, - [2770] = {.lex_state = 52, .external_lex_state = 13}, - [2771] = {.lex_state = 52, .external_lex_state = 15}, - [2772] = {.lex_state = 52, .external_lex_state = 12}, - [2773] = {.lex_state = 52, .external_lex_state = 15}, - [2774] = {.lex_state = 52, .external_lex_state = 13}, + [2766] = {.lex_state = 52, .external_lex_state = 12}, + [2767] = {.lex_state = 52, .external_lex_state = 15}, + [2768] = {.lex_state = 52, .external_lex_state = 12}, + [2769] = {.lex_state = 52, .external_lex_state = 15}, + [2770] = {.lex_state = 52, .external_lex_state = 15}, + [2771] = {.lex_state = 4, .external_lex_state = 15}, + [2772] = {.lex_state = 52, .external_lex_state = 15}, + [2773] = {.lex_state = 4, .external_lex_state = 15}, + [2774] = {.lex_state = 52, .external_lex_state = 15}, [2775] = {.lex_state = 4, .external_lex_state = 15}, - [2776] = {.lex_state = 52, .external_lex_state = 12}, - [2777] = {.lex_state = 52, .external_lex_state = 15}, + [2776] = {.lex_state = 52, .external_lex_state = 15}, + [2777] = {.lex_state = 4, .external_lex_state = 15}, [2778] = {.lex_state = 52, .external_lex_state = 15}, [2779] = {.lex_state = 52, .external_lex_state = 15}, [2780] = {.lex_state = 52, .external_lex_state = 15}, [2781] = {.lex_state = 52, .external_lex_state = 15}, - [2782] = {.lex_state = 52, .external_lex_state = 15}, + [2782] = {.lex_state = 52, .external_lex_state = 13}, [2783] = {.lex_state = 52, .external_lex_state = 15}, [2784] = {.lex_state = 52, .external_lex_state = 15}, [2785] = {.lex_state = 52, .external_lex_state = 15}, @@ -10257,11 +10257,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2787] = {.lex_state = 52, .external_lex_state = 15}, [2788] = {.lex_state = 52, .external_lex_state = 15}, [2789] = {.lex_state = 52, .external_lex_state = 15}, - [2790] = {.lex_state = 52, .external_lex_state = 14}, + [2790] = {.lex_state = 52, .external_lex_state = 15}, [2791] = {.lex_state = 52, .external_lex_state = 15}, - [2792] = {.lex_state = 52, .external_lex_state = 15}, - [2793] = {.lex_state = 52, .external_lex_state = 12}, - [2794] = {.lex_state = 52, .external_lex_state = 12}, + [2792] = {.lex_state = 52, .external_lex_state = 14}, + [2793] = {.lex_state = 52, .external_lex_state = 13}, + [2794] = {.lex_state = 52, .external_lex_state = 13}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10375,72 +10375,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(2777), - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1782), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1782), + [sym_module] = STATE(2753), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1791), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10489,72 +10489,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(850), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(727), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10603,72 +10603,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(755), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10717,72 +10717,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(824), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(755), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10827,26 +10827,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [5] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -10854,49 +10854,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2576), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(809), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10941,76 +10941,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [6] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(689), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(738), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11055,76 +11055,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [7] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(748), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11173,72 +11173,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [8] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(759), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(750), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11287,72 +11287,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [9] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(753), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11397,76 +11397,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [10] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(723), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(758), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11515,72 +11515,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [11] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(722), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(702), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11625,76 +11625,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [12] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(678), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(674), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11739,76 +11739,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [13] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(762), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11857,72 +11857,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(815), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(765), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11967,76 +11967,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [15] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(763), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(766), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12081,76 +12081,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(804), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(723), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12199,72 +12199,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(837), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(711), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12309,76 +12309,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [18] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(839), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(773), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12423,76 +12423,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [19] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(828), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(681), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12537,26 +12537,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [20] = { [sym__statement] = STATE(69), [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(69), [sym_match_statement] = STATE(69), [sym_for_statement] = STATE(69), @@ -12564,49 +12564,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(69), [sym_with_statement] = STATE(69), [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(69), [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(812), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(682), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12651,76 +12651,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [21] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(614), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(777), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12769,72 +12769,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [22] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), [sym_block] = STATE(714), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12879,76 +12879,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(843), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2579), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12993,76 +12993,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [24] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(772), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(783), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13107,76 +13107,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(789), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13221,26 +13221,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [26] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13248,49 +13248,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(704), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2511), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13335,26 +13335,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [27] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13362,49 +13362,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2517), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13449,76 +13449,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [28] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(1785), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(792), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13563,26 +13563,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [29] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -13590,49 +13590,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(682), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(687), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13677,26 +13677,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [30] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_for_statement] = STATE(66), @@ -13704,49 +13704,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(66), [sym_with_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2582), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(611), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13791,76 +13791,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [31] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(626), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2523), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13905,26 +13905,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [32] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -13932,49 +13932,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(728), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2524), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14019,140 +14019,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [33] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(653), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1826), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(81), - }, - [34] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -14160,49 +14046,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(713), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(2535), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14247,76 +14133,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [35] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2584), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [34] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(620), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14361,76 +14247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [36] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [35] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14478,73 +14364,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [37] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [36] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14592,73 +14478,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [38] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(1802), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [37] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(822), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14703,76 +14589,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [39] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(770), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [38] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(829), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14817,76 +14703,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [40] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(782), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [39] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(835), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14934,73 +14820,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [41] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [40] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(837), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15045,76 +14931,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [42] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(686), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [41] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(839), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15159,76 +15045,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [43] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(691), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [42] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(843), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15273,76 +15159,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [44] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(785), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [43] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15390,73 +15276,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [45] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [44] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(651), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15501,76 +15387,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [46] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [45] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(790), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15615,76 +15501,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [47] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(705), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [46] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15729,76 +15615,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(667), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [47] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(788), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15843,76 +15729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [49] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(685), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [48] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(1776), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15960,23 +15846,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [50] = { + [49] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15984,49 +15870,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16071,76 +15957,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(794), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [50] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(761), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16185,76 +16071,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [51] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16299,76 +16185,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [53] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2595), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [52] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16413,76 +16299,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [54] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2593), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [53] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(842), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16527,76 +16413,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(81), + }, + [54] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(707), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [55] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(737), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(739), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16645,72 +16645,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [56] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(827), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(752), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16755,76 +16755,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [57] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(735), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(754), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16873,72 +16873,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [58] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(672), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16983,76 +16983,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, [59] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(2588), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(677), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17097,76 +17097,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, [60] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(1822), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17211,76 +17211,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, [61] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1826), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1796), + [sym_block] = STATE(688), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17325,76 +17325,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [62] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1782), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1782), - [ts_builtin_sym_end] = ACTIONS(117), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17408,19 +17407,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17439,74 +17438,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(81), }, [63] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17555,184 +17555,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [64] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_from] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_assert] = ACTIONS(139), - [anon_sym_return] = ACTIONS(142), - [anon_sym_del] = ACTIONS(145), - [anon_sym_raise] = ACTIONS(148), - [anon_sym_pass] = ACTIONS(151), - [anon_sym_break] = ACTIONS(154), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_if] = ACTIONS(160), - [anon_sym_match] = ACTIONS(163), - [anon_sym_async] = ACTIONS(166), - [anon_sym_for] = ACTIONS(169), - [anon_sym_while] = ACTIONS(172), - [anon_sym_try] = ACTIONS(175), - [anon_sym_with] = ACTIONS(178), - [anon_sym_def] = ACTIONS(181), - [anon_sym_global] = ACTIONS(184), - [anon_sym_nonlocal] = ACTIONS(187), - [anon_sym_exec] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_class] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_not] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(205), - [anon_sym_lambda] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(220), - [sym_integer] = ACTIONS(223), - [sym_float] = ACTIONS(220), - [anon_sym_await] = ACTIONS(226), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_none] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(229), - [sym_string_start] = ACTIONS(231), - }, - [65] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1791), + [ts_builtin_sym_end] = ACTIONS(121), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17746,19 +17634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17777,75 +17665,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(234), [sym_string_start] = ACTIONS(81), }, + [65] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), + [sym_identifier] = ACTIONS(123), + [anon_sym_import] = ACTIONS(126), + [anon_sym_from] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_print] = ACTIONS(138), + [anon_sym_assert] = ACTIONS(141), + [anon_sym_return] = ACTIONS(144), + [anon_sym_del] = ACTIONS(147), + [anon_sym_raise] = ACTIONS(150), + [anon_sym_pass] = ACTIONS(153), + [anon_sym_break] = ACTIONS(156), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_match] = ACTIONS(165), + [anon_sym_async] = ACTIONS(168), + [anon_sym_for] = ACTIONS(171), + [anon_sym_while] = ACTIONS(174), + [anon_sym_try] = ACTIONS(177), + [anon_sym_with] = ACTIONS(180), + [anon_sym_def] = ACTIONS(183), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_not] = ACTIONS(213), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_lambda] = ACTIONS(216), + [anon_sym_yield] = ACTIONS(219), + [sym_ellipsis] = ACTIONS(222), + [sym_integer] = ACTIONS(225), + [sym_float] = ACTIONS(222), + [anon_sym_await] = ACTIONS(228), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_none] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(231), + [sym_string_start] = ACTIONS(233), + }, [66] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17896,20 +17896,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17917,62 +17917,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1782), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_decorator] = STATE(1791), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1782), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_from] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_assert] = ACTIONS(139), - [anon_sym_return] = ACTIONS(142), - [anon_sym_del] = ACTIONS(145), - [anon_sym_raise] = ACTIONS(148), - [anon_sym_pass] = ACTIONS(151), - [anon_sym_break] = ACTIONS(154), - [anon_sym_continue] = ACTIONS(157), + [aux_sym_decorated_definition_repeat1] = STATE(1791), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_identifier] = ACTIONS(123), + [anon_sym_import] = ACTIONS(126), + [anon_sym_from] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_print] = ACTIONS(138), + [anon_sym_assert] = ACTIONS(141), + [anon_sym_return] = ACTIONS(144), + [anon_sym_del] = ACTIONS(147), + [anon_sym_raise] = ACTIONS(150), + [anon_sym_pass] = ACTIONS(153), + [anon_sym_break] = ACTIONS(156), + [anon_sym_continue] = ACTIONS(159), [anon_sym_if] = ACTIONS(238), [anon_sym_match] = ACTIONS(241), [anon_sym_async] = ACTIONS(244), @@ -17981,97 +17981,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(253), [anon_sym_with] = ACTIONS(256), [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(184), - [anon_sym_nonlocal] = ACTIONS(187), - [anon_sym_exec] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(205), - [anon_sym_not] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(205), - [anon_sym_lambda] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(220), - [sym_integer] = ACTIONS(223), - [sym_float] = ACTIONS(220), - [anon_sym_await] = ACTIONS(226), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_none] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(201), + [anon_sym_AT] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_not] = ACTIONS(213), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_lambda] = ACTIONS(216), + [anon_sym_yield] = ACTIONS(219), + [sym_ellipsis] = ACTIONS(222), + [sym_integer] = ACTIONS(225), + [sym_float] = ACTIONS(222), + [anon_sym_await] = ACTIONS(228), + [sym_true] = ACTIONS(225), + [sym_false] = ACTIONS(225), + [sym_none] = ACTIONS(225), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(231), + [sym_string_start] = ACTIONS(233), }, [68] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18120,71 +18120,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [69] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18233,71 +18233,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [70] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18346,71 +18346,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [71] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18459,71 +18459,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [72] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1826), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1826), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1796), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1796), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18572,40 +18572,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [73] = { - [sym_named_expression] = STATE(1720), - [sym__named_expression_lhs] = STATE(2711), - [sym_list_splat_pattern] = STATE(1269), - [sym_as_pattern] = STATE(1720), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1720), - [sym_boolean_operator] = STATE(1720), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_comparison_operator] = STATE(1720), - [sym_lambda] = STATE(1720), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_type] = STATE(2120), + [sym_named_expression] = STATE(1717), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1342), + [sym_as_pattern] = STATE(1717), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1717), + [sym_boolean_operator] = STATE(1717), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_comparison_operator] = STATE(1717), + [sym_lambda] = STATE(1717), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_type] = STATE(2130), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_conditional_expression] = STATE(1720), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_conditional_expression] = STATE(1717), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18618,20 +18618,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(296), + [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(299), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(301), + [anon_sym_type] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(304), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(307), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(312), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -18640,7 +18640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -18649,67 +18649,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(314), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(322), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(325), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [74] = { - [sym_named_expression] = STATE(1720), - [sym__named_expression_lhs] = STATE(2711), - [sym_list_splat_pattern] = STATE(1269), - [sym_as_pattern] = STATE(1720), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1720), - [sym_boolean_operator] = STATE(1720), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_comparison_operator] = STATE(1720), - [sym_lambda] = STATE(1720), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_type] = STATE(2120), + [sym_named_expression] = STATE(1717), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1342), + [sym_as_pattern] = STATE(1717), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1717), + [sym_boolean_operator] = STATE(1717), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_comparison_operator] = STATE(1717), + [sym_lambda] = STATE(1717), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_type] = STATE(2130), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_conditional_expression] = STATE(1720), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_conditional_expression] = STATE(1717), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18721,21 +18721,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(326), - [anon_sym_match] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(299), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(301), + [anon_sym_type] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(304), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(307), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(312), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -18744,7 +18744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -18753,91 +18753,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(314), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(322), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(325), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [75] = { - [sym__simple_statements] = STATE(784), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18880,64 +18880,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [76] = { - [sym__simple_statements] = STATE(840), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18980,64 +18980,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [77] = { - [sym__simple_statements] = STATE(762), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(770), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19080,64 +19080,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [78] = { - [sym__simple_statements] = STATE(771), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(728), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19180,64 +19180,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [79] = { - [sym__simple_statements] = STATE(753), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(731), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19280,64 +19280,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [80] = { - [sym__simple_statements] = STATE(778), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(784), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19380,64 +19380,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [81] = { - [sym__simple_statements] = STATE(790), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(778), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19480,64 +19480,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [82] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(636), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1698), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1130), - [sym_type] = STATE(2072), + [sym__simple_statements] = STATE(741), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1716), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1035), + [sym_type] = STATE(2085), [sym_splat_type] = STATE(2016), [sym_generic_type] = STATE(2016), [sym_union_type] = STATE(2016), [sym_constrained_type] = STATE(2016), [sym_member_type] = STATE(2016), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19580,35 +19580,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [83] = { - [sym_chevron] = STATE(2116), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1118), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(860), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_chevron] = STATE(2186), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_list_splat_pattern] = STATE(1119), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(865), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(383), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19620,14 +19620,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(393), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(395), [anon_sym_async] = ACTIONS(391), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(391), [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(400), @@ -19653,19 +19653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -19679,35 +19679,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [84] = { - [sym_chevron] = STATE(2116), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_list_splat_pattern] = STATE(1118), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(860), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_chevron] = STATE(2186), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_list_splat_pattern] = STATE(1119), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(865), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(383), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19726,7 +19726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(391), [anon_sym_type] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(400), @@ -19752,19 +19752,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -19778,34 +19778,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [85] = { - [sym_named_expression] = STATE(1720), - [sym__named_expression_lhs] = STATE(2711), - [sym_list_splat_pattern] = STATE(1269), - [sym_as_pattern] = STATE(1720), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1720), - [sym_boolean_operator] = STATE(1720), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_comparison_operator] = STATE(1720), - [sym_lambda] = STATE(1720), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_conditional_expression] = STATE(1720), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), + [sym_named_expression] = STATE(1717), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1342), + [sym_as_pattern] = STATE(1717), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1717), + [sym_boolean_operator] = STATE(1717), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_comparison_operator] = STATE(1717), + [sym_lambda] = STATE(1717), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_conditional_expression] = STATE(1717), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19817,21 +19817,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(301), + [anon_sym_type] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(304), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(307), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(312), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -19840,7 +19840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -19849,61 +19849,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(314), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(322), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(325), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [86] = { - [sym_named_expression] = STATE(1720), - [sym__named_expression_lhs] = STATE(2711), - [sym_list_splat_pattern] = STATE(1269), - [sym_as_pattern] = STATE(1720), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1720), - [sym_boolean_operator] = STATE(1720), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_comparison_operator] = STATE(1720), - [sym_lambda] = STATE(1720), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_conditional_expression] = STATE(1720), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), + [sym_named_expression] = STATE(1717), + [sym__named_expression_lhs] = STATE(2775), + [sym_list_splat_pattern] = STATE(1342), + [sym_as_pattern] = STATE(1717), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(970), + [sym_not_operator] = STATE(1717), + [sym_boolean_operator] = STATE(1717), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_comparison_operator] = STATE(1717), + [sym_lambda] = STATE(1717), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_conditional_expression] = STATE(1717), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19915,21 +19915,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(301), + [anon_sym_type] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(304), [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(307), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(307), + [anon_sym_not] = ACTIONS(312), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -19938,7 +19938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -19947,85 +19947,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(314), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(322), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(317), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(325), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [87] = { - [sym__simple_statements] = STATE(1807), - [sym_import_statement] = STATE(2445), - [sym_future_import_statement] = STATE(2445), - [sym_import_from_statement] = STATE(2445), - [sym_print_statement] = STATE(2445), - [sym_assert_statement] = STATE(2445), - [sym_expression_statement] = STATE(2445), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2445), - [sym_delete_statement] = STATE(2445), - [sym_raise_statement] = STATE(2445), - [sym_pass_statement] = STATE(2445), - [sym_break_statement] = STATE(2445), - [sym_continue_statement] = STATE(2445), - [sym_global_statement] = STATE(2445), - [sym_nonlocal_statement] = STATE(2445), - [sym_exec_statement] = STATE(2445), - [sym_type_alias_statement] = STATE(2445), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(2526), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20067,58 +20067,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [88] = { - [sym__simple_statements] = STATE(654), - [sym_import_statement] = STATE(2453), - [sym_future_import_statement] = STATE(2453), - [sym_import_from_statement] = STATE(2453), - [sym_print_statement] = STATE(2453), - [sym_assert_statement] = STATE(2453), - [sym_expression_statement] = STATE(2453), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2453), - [sym_delete_statement] = STATE(2453), - [sym_raise_statement] = STATE(2453), - [sym_pass_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_nonlocal_statement] = STATE(2453), - [sym_exec_statement] = STATE(2453), - [sym_type_alias_statement] = STATE(2453), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(725), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20160,58 +20160,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [89] = { - [sym__simple_statements] = STATE(719), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(830), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20253,58 +20253,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [90] = { - [sym__simple_statements] = STATE(1833), - [sym_import_statement] = STATE(2445), - [sym_future_import_statement] = STATE(2445), - [sym_import_from_statement] = STATE(2445), - [sym_print_statement] = STATE(2445), - [sym_assert_statement] = STATE(2445), - [sym_expression_statement] = STATE(2445), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2445), - [sym_delete_statement] = STATE(2445), - [sym_raise_statement] = STATE(2445), - [sym_pass_statement] = STATE(2445), - [sym_break_statement] = STATE(2445), - [sym_continue_statement] = STATE(2445), - [sym_global_statement] = STATE(2445), - [sym_nonlocal_statement] = STATE(2445), - [sym_exec_statement] = STATE(2445), - [sym_type_alias_statement] = STATE(2445), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20346,58 +20346,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [91] = { - [sym__simple_statements] = STATE(816), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(698), + [sym_import_statement] = STATE(2341), + [sym_future_import_statement] = STATE(2341), + [sym_import_from_statement] = STATE(2341), + [sym_print_statement] = STATE(2341), + [sym_assert_statement] = STATE(2341), + [sym_expression_statement] = STATE(2341), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2341), + [sym_delete_statement] = STATE(2341), + [sym_raise_statement] = STATE(2341), + [sym_pass_statement] = STATE(2341), + [sym_break_statement] = STATE(2341), + [sym_continue_statement] = STATE(2341), + [sym_global_statement] = STATE(2341), + [sym_nonlocal_statement] = STATE(2341), + [sym_exec_statement] = STATE(2341), + [sym_type_alias_statement] = STATE(2341), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20439,58 +20439,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [92] = { - [sym__simple_statements] = STATE(2574), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(832), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20532,58 +20532,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [93] = { - [sym__simple_statements] = STATE(733), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20625,58 +20625,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [94] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(836), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20718,58 +20718,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [95] = { - [sym__simple_statements] = STATE(777), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(779), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20811,58 +20811,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [96] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(838), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20904,58 +20904,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [97] = { - [sym__simple_statements] = STATE(817), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20997,58 +20997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [98] = { - [sym__simple_statements] = STATE(2579), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21090,58 +21090,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [99] = { - [sym__simple_statements] = STATE(702), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21183,58 +21183,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [100] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(618), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21276,58 +21276,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [101] = { - [sym__simple_statements] = STATE(805), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(846), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21369,58 +21369,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [102] = { - [sym__simple_statements] = STATE(814), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(751), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21462,58 +21462,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [103] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21555,337 +21555,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [104] = { - [sym__simple_statements] = STATE(617), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), - [sym_string_start] = ACTIONS(81), - }, - [105] = { - [sym__simple_statements] = STATE(818), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), - [sym_string_start] = ACTIONS(81), - }, - [106] = { - [sym__simple_statements] = STATE(694), - [sym_import_statement] = STATE(2334), - [sym_future_import_statement] = STATE(2334), - [sym_import_from_statement] = STATE(2334), - [sym_print_statement] = STATE(2334), - [sym_assert_statement] = STATE(2334), - [sym_expression_statement] = STATE(2334), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2334), - [sym_delete_statement] = STATE(2334), - [sym_raise_statement] = STATE(2334), - [sym_pass_statement] = STATE(2334), - [sym_break_statement] = STATE(2334), - [sym_continue_statement] = STATE(2334), - [sym_global_statement] = STATE(2334), - [sym_nonlocal_statement] = STATE(2334), - [sym_exec_statement] = STATE(2334), - [sym_type_alias_statement] = STATE(2334), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(493), - [sym__indent] = ACTIONS(495), - [sym_string_start] = ACTIONS(81), - }, - [107] = { [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2334), - [sym_future_import_statement] = STATE(2334), - [sym_import_from_statement] = STATE(2334), - [sym_print_statement] = STATE(2334), - [sym_assert_statement] = STATE(2334), - [sym_expression_statement] = STATE(2334), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2334), - [sym_delete_statement] = STATE(2334), - [sym_raise_statement] = STATE(2334), - [sym_pass_statement] = STATE(2334), - [sym_break_statement] = STATE(2334), - [sym_continue_statement] = STATE(2334), - [sym_global_statement] = STATE(2334), - [sym_nonlocal_statement] = STATE(2334), - [sym_exec_statement] = STATE(2334), - [sym_type_alias_statement] = STATE(2334), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2341), + [sym_future_import_statement] = STATE(2341), + [sym_import_from_statement] = STATE(2341), + [sym_print_statement] = STATE(2341), + [sym_assert_statement] = STATE(2341), + [sym_expression_statement] = STATE(2341), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2341), + [sym_delete_statement] = STATE(2341), + [sym_raise_statement] = STATE(2341), + [sym_pass_statement] = STATE(2341), + [sym_break_statement] = STATE(2341), + [sym_continue_statement] = STATE(2341), + [sym_global_statement] = STATE(2341), + [sym_nonlocal_statement] = STATE(2341), + [sym_exec_statement] = STATE(2341), + [sym_type_alias_statement] = STATE(2341), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21922,63 +21643,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(813), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [105] = { + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(2374), + [sym_future_import_statement] = STATE(2374), + [sym_import_from_statement] = STATE(2374), + [sym_print_statement] = STATE(2374), + [sym_assert_statement] = STATE(2374), + [sym_expression_statement] = STATE(2374), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2374), + [sym_delete_statement] = STATE(2374), + [sym_raise_statement] = STATE(2374), + [sym_pass_statement] = STATE(2374), + [sym_break_statement] = STATE(2374), + [sym_continue_statement] = STATE(2374), + [sym_global_statement] = STATE(2374), + [sym_nonlocal_statement] = STATE(2374), + [sym_exec_statement] = STATE(2374), + [sym_type_alias_statement] = STATE(2374), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22015,63 +21736,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(649), - [sym_import_statement] = STATE(2334), - [sym_future_import_statement] = STATE(2334), - [sym_import_from_statement] = STATE(2334), - [sym_print_statement] = STATE(2334), - [sym_assert_statement] = STATE(2334), - [sym_expression_statement] = STATE(2334), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2334), - [sym_delete_statement] = STATE(2334), - [sym_raise_statement] = STATE(2334), - [sym_pass_statement] = STATE(2334), - [sym_break_statement] = STATE(2334), - [sym_continue_statement] = STATE(2334), - [sym_global_statement] = STATE(2334), - [sym_nonlocal_statement] = STATE(2334), - [sym_exec_statement] = STATE(2334), - [sym_type_alias_statement] = STATE(2334), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [106] = { + [sym__simple_statements] = STATE(793), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22108,63 +21829,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [107] = { + [sym__simple_statements] = STATE(759), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22201,63 +21922,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(829), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [108] = { + [sym__simple_statements] = STATE(797), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22294,63 +22015,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - [sym__indent] = ACTIONS(515), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(793), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [109] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22387,63 +22108,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(517), - [sym__indent] = ACTIONS(519), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(849), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [110] = { + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22480,63 +22201,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(521), - [sym__indent] = ACTIONS(523), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [111] = { + [sym__simple_statements] = STATE(2518), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22573,63 +22294,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(525), - [sym__indent] = ACTIONS(527), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [112] = { + [sym__simple_statements] = STATE(703), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22666,63 +22387,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__indent] = ACTIONS(531), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2583), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [113] = { + [sym__simple_statements] = STATE(615), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22759,63 +22480,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(533), - [sym__indent] = ACTIONS(535), + [sym__newline] = ACTIONS(521), + [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(655), - [sym_import_statement] = STATE(2415), - [sym_future_import_statement] = STATE(2415), - [sym_import_from_statement] = STATE(2415), - [sym_print_statement] = STATE(2415), - [sym_assert_statement] = STATE(2415), - [sym_expression_statement] = STATE(2415), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2415), - [sym_delete_statement] = STATE(2415), - [sym_raise_statement] = STATE(2415), - [sym_pass_statement] = STATE(2415), - [sym_break_statement] = STATE(2415), - [sym_continue_statement] = STATE(2415), - [sym_global_statement] = STATE(2415), - [sym_nonlocal_statement] = STATE(2415), - [sym_exec_statement] = STATE(2415), - [sym_type_alias_statement] = STATE(2415), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [114] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22852,63 +22573,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(537), - [sym__indent] = ACTIONS(539), + [sym__newline] = ACTIONS(525), + [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(707), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [115] = { + [sym__simple_statements] = STATE(669), + [sym_import_statement] = STATE(2436), + [sym_future_import_statement] = STATE(2436), + [sym_import_from_statement] = STATE(2436), + [sym_print_statement] = STATE(2436), + [sym_assert_statement] = STATE(2436), + [sym_expression_statement] = STATE(2436), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2436), + [sym_delete_statement] = STATE(2436), + [sym_raise_statement] = STATE(2436), + [sym_pass_statement] = STATE(2436), + [sym_break_statement] = STATE(2436), + [sym_continue_statement] = STATE(2436), + [sym_global_statement] = STATE(2436), + [sym_nonlocal_statement] = STATE(2436), + [sym_exec_statement] = STATE(2436), + [sym_type_alias_statement] = STATE(2436), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22945,63 +22666,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(541), - [sym__indent] = ACTIONS(543), + [sym__newline] = ACTIONS(529), + [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(810), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [116] = { + [sym__simple_statements] = STATE(2576), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23038,63 +22759,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(545), - [sym__indent] = ACTIONS(547), + [sym__newline] = ACTIONS(533), + [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(2550), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [117] = { + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23131,63 +22852,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(549), - [sym__indent] = ACTIONS(551), + [sym__newline] = ACTIONS(537), + [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(697), - [sym_import_statement] = STATE(2430), - [sym_future_import_statement] = STATE(2430), - [sym_import_from_statement] = STATE(2430), - [sym_print_statement] = STATE(2430), - [sym_assert_statement] = STATE(2430), - [sym_expression_statement] = STATE(2430), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2430), - [sym_delete_statement] = STATE(2430), - [sym_raise_statement] = STATE(2430), - [sym_pass_statement] = STATE(2430), - [sym_break_statement] = STATE(2430), - [sym_continue_statement] = STATE(2430), - [sym_global_statement] = STATE(2430), - [sym_nonlocal_statement] = STATE(2430), - [sym_exec_statement] = STATE(2430), - [sym_type_alias_statement] = STATE(2430), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [118] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23224,63 +22945,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(553), - [sym__indent] = ACTIONS(555), + [sym__newline] = ACTIONS(541), + [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(2453), - [sym_future_import_statement] = STATE(2453), - [sym_import_from_statement] = STATE(2453), - [sym_print_statement] = STATE(2453), - [sym_assert_statement] = STATE(2453), - [sym_expression_statement] = STATE(2453), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2453), - [sym_delete_statement] = STATE(2453), - [sym_raise_statement] = STATE(2453), - [sym_pass_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_nonlocal_statement] = STATE(2453), - [sym_exec_statement] = STATE(2453), - [sym_type_alias_statement] = STATE(2453), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [119] = { + [sym__simple_statements] = STATE(2581), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23317,63 +23038,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(557), - [sym__indent] = ACTIONS(559), + [sym__newline] = ACTIONS(545), + [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(740), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [120] = { + [sym__simple_statements] = STATE(807), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23410,63 +23131,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(561), - [sym__indent] = ACTIONS(563), + [sym__newline] = ACTIONS(549), + [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(738), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [121] = { + [sym__simple_statements] = STATE(1788), + [sym_import_statement] = STATE(2452), + [sym_future_import_statement] = STATE(2452), + [sym_import_from_statement] = STATE(2452), + [sym_print_statement] = STATE(2452), + [sym_assert_statement] = STATE(2452), + [sym_expression_statement] = STATE(2452), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2452), + [sym_delete_statement] = STATE(2452), + [sym_raise_statement] = STATE(2452), + [sym_pass_statement] = STATE(2452), + [sym_break_statement] = STATE(2452), + [sym_continue_statement] = STATE(2452), + [sym_global_statement] = STATE(2452), + [sym_nonlocal_statement] = STATE(2452), + [sym_exec_statement] = STATE(2452), + [sym_type_alias_statement] = STATE(2452), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23503,63 +23224,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(565), - [sym__indent] = ACTIONS(567), + [sym__newline] = ACTIONS(553), + [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(2586), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [122] = { + [sym__simple_statements] = STATE(668), + [sym_import_statement] = STATE(2341), + [sym_future_import_statement] = STATE(2341), + [sym_import_from_statement] = STATE(2341), + [sym_print_statement] = STATE(2341), + [sym_assert_statement] = STATE(2341), + [sym_expression_statement] = STATE(2341), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2341), + [sym_delete_statement] = STATE(2341), + [sym_raise_statement] = STATE(2341), + [sym_pass_statement] = STATE(2341), + [sym_break_statement] = STATE(2341), + [sym_continue_statement] = STATE(2341), + [sym_global_statement] = STATE(2341), + [sym_nonlocal_statement] = STATE(2341), + [sym_exec_statement] = STATE(2341), + [sym_type_alias_statement] = STATE(2341), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23596,63 +23317,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(569), - [sym__indent] = ACTIONS(571), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [123] = { + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23689,63 +23410,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - [sym__indent] = ACTIONS(575), + [sym__newline] = ACTIONS(561), + [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(673), - [sym_import_statement] = STATE(2453), - [sym_future_import_statement] = STATE(2453), - [sym_import_from_statement] = STATE(2453), - [sym_print_statement] = STATE(2453), - [sym_assert_statement] = STATE(2453), - [sym_expression_statement] = STATE(2453), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2453), - [sym_delete_statement] = STATE(2453), - [sym_raise_statement] = STATE(2453), - [sym_pass_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_nonlocal_statement] = STATE(2453), - [sym_exec_statement] = STATE(2453), - [sym_type_alias_statement] = STATE(2453), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [124] = { + [sym__simple_statements] = STATE(685), + [sym_import_statement] = STATE(2436), + [sym_future_import_statement] = STATE(2436), + [sym_import_from_statement] = STATE(2436), + [sym_print_statement] = STATE(2436), + [sym_assert_statement] = STATE(2436), + [sym_expression_statement] = STATE(2436), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2436), + [sym_delete_statement] = STATE(2436), + [sym_raise_statement] = STATE(2436), + [sym_pass_statement] = STATE(2436), + [sym_break_statement] = STATE(2436), + [sym_continue_statement] = STATE(2436), + [sym_global_statement] = STATE(2436), + [sym_nonlocal_statement] = STATE(2436), + [sym_exec_statement] = STATE(2436), + [sym_type_alias_statement] = STATE(2436), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23782,63 +23503,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - [sym__indent] = ACTIONS(579), + [sym__newline] = ACTIONS(565), + [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [125] = { + [sym__simple_statements] = STATE(749), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23875,63 +23596,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - [sym__indent] = ACTIONS(583), + [sym__newline] = ACTIONS(569), + [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(2594), - [sym_import_statement] = STATE(2489), - [sym_future_import_statement] = STATE(2489), - [sym_import_from_statement] = STATE(2489), - [sym_print_statement] = STATE(2489), - [sym_assert_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2489), - [sym_delete_statement] = STATE(2489), - [sym_raise_statement] = STATE(2489), - [sym_pass_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_global_statement] = STATE(2489), - [sym_nonlocal_statement] = STATE(2489), - [sym_exec_statement] = STATE(2489), - [sym_type_alias_statement] = STATE(2489), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [126] = { + [sym__simple_statements] = STATE(791), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23968,63 +23689,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(585), - [sym__indent] = ACTIONS(587), + [sym__newline] = ACTIONS(573), + [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(789), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [127] = { + [sym__simple_statements] = STATE(675), + [sym_import_statement] = STATE(2436), + [sym_future_import_statement] = STATE(2436), + [sym_import_from_statement] = STATE(2436), + [sym_print_statement] = STATE(2436), + [sym_assert_statement] = STATE(2436), + [sym_expression_statement] = STATE(2436), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2436), + [sym_delete_statement] = STATE(2436), + [sym_raise_statement] = STATE(2436), + [sym_pass_statement] = STATE(2436), + [sym_break_statement] = STATE(2436), + [sym_continue_statement] = STATE(2436), + [sym_global_statement] = STATE(2436), + [sym_nonlocal_statement] = STATE(2436), + [sym_exec_statement] = STATE(2436), + [sym_type_alias_statement] = STATE(2436), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24061,63 +23782,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(589), - [sym__indent] = ACTIONS(591), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(791), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [128] = { + [sym__simple_statements] = STATE(2531), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24154,63 +23875,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - [sym__indent] = ACTIONS(595), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [129] = { + [sym__simple_statements] = STATE(648), + [sym_import_statement] = STATE(2260), + [sym_future_import_statement] = STATE(2260), + [sym_import_from_statement] = STATE(2260), + [sym_print_statement] = STATE(2260), + [sym_assert_statement] = STATE(2260), + [sym_expression_statement] = STATE(2260), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2260), + [sym_delete_statement] = STATE(2260), + [sym_raise_statement] = STATE(2260), + [sym_pass_statement] = STATE(2260), + [sym_break_statement] = STATE(2260), + [sym_continue_statement] = STATE(2260), + [sym_global_statement] = STATE(2260), + [sym_nonlocal_statement] = STATE(2260), + [sym_exec_statement] = STATE(2260), + [sym_type_alias_statement] = STATE(2260), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24247,63 +23968,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - [sym__indent] = ACTIONS(599), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(736), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [130] = { + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24340,63 +24061,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - [sym__indent] = ACTIONS(603), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(835), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [131] = { + [sym__simple_statements] = STATE(757), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24433,63 +24154,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(605), - [sym__indent] = ACTIONS(607), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(795), - [sym_import_statement] = STATE(2286), - [sym_future_import_statement] = STATE(2286), - [sym_import_from_statement] = STATE(2286), - [sym_print_statement] = STATE(2286), - [sym_assert_statement] = STATE(2286), - [sym_expression_statement] = STATE(2286), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2286), - [sym_delete_statement] = STATE(2286), - [sym_raise_statement] = STATE(2286), - [sym_pass_statement] = STATE(2286), - [sym_break_statement] = STATE(2286), - [sym_continue_statement] = STATE(2286), - [sym_global_statement] = STATE(2286), - [sym_nonlocal_statement] = STATE(2286), - [sym_exec_statement] = STATE(2286), - [sym_type_alias_statement] = STATE(2286), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [132] = { + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24526,63 +24247,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), + [sym__newline] = ACTIONS(597), + [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [136] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2243), - [sym_future_import_statement] = STATE(2243), - [sym_import_from_statement] = STATE(2243), - [sym_print_statement] = STATE(2243), - [sym_assert_statement] = STATE(2243), - [sym_expression_statement] = STATE(2243), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2243), - [sym_delete_statement] = STATE(2243), - [sym_raise_statement] = STATE(2243), - [sym_pass_statement] = STATE(2243), - [sym_break_statement] = STATE(2243), - [sym_continue_statement] = STATE(2243), - [sym_global_statement] = STATE(2243), - [sym_nonlocal_statement] = STATE(2243), - [sym_exec_statement] = STATE(2243), - [sym_type_alias_statement] = STATE(2243), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [133] = { + [sym__simple_statements] = STATE(1799), + [sym_import_statement] = STATE(2452), + [sym_future_import_statement] = STATE(2452), + [sym_import_from_statement] = STATE(2452), + [sym_print_statement] = STATE(2452), + [sym_assert_statement] = STATE(2452), + [sym_expression_statement] = STATE(2452), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2452), + [sym_delete_statement] = STATE(2452), + [sym_raise_statement] = STATE(2452), + [sym_pass_statement] = STATE(2452), + [sym_break_statement] = STATE(2452), + [sym_continue_statement] = STATE(2452), + [sym_global_statement] = STATE(2452), + [sym_nonlocal_statement] = STATE(2452), + [sym_exec_statement] = STATE(2452), + [sym_type_alias_statement] = STATE(2452), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24619,62 +24340,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [137] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [134] = { + [sym__simple_statements] = STATE(2516), + [sym_import_statement] = STATE(2299), + [sym_future_import_statement] = STATE(2299), + [sym_import_from_statement] = STATE(2299), + [sym_print_statement] = STATE(2299), + [sym_assert_statement] = STATE(2299), + [sym_expression_statement] = STATE(2299), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2299), + [sym_delete_statement] = STATE(2299), + [sym_raise_statement] = STATE(2299), + [sym_pass_statement] = STATE(2299), + [sym_break_statement] = STATE(2299), + [sym_continue_statement] = STATE(2299), + [sym_global_statement] = STATE(2299), + [sym_nonlocal_statement] = STATE(2299), + [sym_exec_statement] = STATE(2299), + [sym_type_alias_statement] = STATE(2299), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24711,61 +24433,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), + [sym__newline] = ACTIONS(605), + [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [138] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [135] = { + [sym__simple_statements] = STATE(824), + [sym_import_statement] = STATE(2294), + [sym_future_import_statement] = STATE(2294), + [sym_import_from_statement] = STATE(2294), + [sym_print_statement] = STATE(2294), + [sym_assert_statement] = STATE(2294), + [sym_expression_statement] = STATE(2294), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2294), + [sym_delete_statement] = STATE(2294), + [sym_raise_statement] = STATE(2294), + [sym_pass_statement] = STATE(2294), + [sym_break_statement] = STATE(2294), + [sym_continue_statement] = STATE(2294), + [sym_global_statement] = STATE(2294), + [sym_nonlocal_statement] = STATE(2294), + [sym_exec_statement] = STATE(2294), + [sym_type_alias_statement] = STATE(2294), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), + [sym_string_start] = ACTIONS(81), + }, + [136] = { + [sym__simple_statements] = STATE(740), + [sym_import_statement] = STATE(2376), + [sym_future_import_statement] = STATE(2376), + [sym_import_from_statement] = STATE(2376), + [sym_print_statement] = STATE(2376), + [sym_assert_statement] = STATE(2376), + [sym_expression_statement] = STATE(2376), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2376), + [sym_delete_statement] = STATE(2376), + [sym_raise_statement] = STATE(2376), + [sym_pass_statement] = STATE(2376), + [sym_break_statement] = STATE(2376), + [sym_continue_statement] = STATE(2376), + [sym_global_statement] = STATE(2376), + [sym_nonlocal_statement] = STATE(2376), + [sym_exec_statement] = STATE(2376), + [sym_type_alias_statement] = STATE(2376), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), + [sym_string_start] = ACTIONS(81), + }, + [137] = { + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(413), + [anon_sym_async] = ACTIONS(415), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(617), + [sym_string_start] = ACTIONS(81), + }, + [138] = { + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24806,57 +24806,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [139] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24897,57 +24897,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [140] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24988,57 +24988,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [141] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25079,57 +25079,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [142] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25170,57 +25170,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [143] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25261,57 +25261,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [144] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25352,57 +25352,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [145] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25443,57 +25443,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [146] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25534,57 +25534,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [147] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25625,57 +25625,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [148] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25716,57 +25716,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [149] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25807,57 +25807,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [150] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25898,57 +25898,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [151] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25989,57 +25989,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [152] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26080,57 +26080,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [153] = { - [sym_import_statement] = STATE(2556), - [sym_future_import_statement] = STATE(2556), - [sym_import_from_statement] = STATE(2556), - [sym_print_statement] = STATE(2556), - [sym_assert_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2775), - [sym_return_statement] = STATE(2556), - [sym_delete_statement] = STATE(2556), - [sym_raise_statement] = STATE(2556), - [sym_pass_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_global_statement] = STATE(2556), - [sym_nonlocal_statement] = STATE(2556), - [sym_exec_statement] = STATE(2556), - [sym_type_alias_statement] = STATE(2556), - [sym_pattern] = STATE(1639), - [sym_tuple_pattern] = STATE(1644), - [sym_list_pattern] = STATE(1644), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(970), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2504), - [sym_augmented_assignment] = STATE(2504), - [sym_pattern_list] = STATE(1651), - [sym_yield] = STATE(2504), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_import_statement] = STATE(2541), + [sym_future_import_statement] = STATE(2541), + [sym_import_from_statement] = STATE(2541), + [sym_print_statement] = STATE(2541), + [sym_assert_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym_named_expression] = STATE(1666), + [sym__named_expression_lhs] = STATE(2751), + [sym_return_statement] = STATE(2541), + [sym_delete_statement] = STATE(2541), + [sym_raise_statement] = STATE(2541), + [sym_pass_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_global_statement] = STATE(2541), + [sym_nonlocal_statement] = STATE(2541), + [sym_exec_statement] = STATE(2541), + [sym_type_alias_statement] = STATE(2541), + [sym_pattern] = STATE(1634), + [sym_tuple_pattern] = STATE(1640), + [sym_list_pattern] = STATE(1640), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1666), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(966), + [sym_not_operator] = STATE(1666), + [sym_boolean_operator] = STATE(1666), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_comparison_operator] = STATE(1666), + [sym_lambda] = STATE(1666), + [sym_assignment] = STATE(2507), + [sym_augmented_assignment] = STATE(2507), + [sym_pattern_list] = STATE(1648), + [sym_yield] = STATE(2507), + [sym_attribute] = STATE(640), + [sym_subscript] = STATE(640), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_conditional_expression] = STATE(1666), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26170,25 +26170,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [154] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(987), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list_splat_pattern] = STATE(1119), + [sym_primary_expression] = STATE(981), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26207,7 +26207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(653), [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(659), @@ -26232,19 +26232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -26258,25 +26258,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [155] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(987), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list_splat_pattern] = STATE(1119), + [sym_primary_expression] = STATE(981), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26288,14 +26288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(655), [anon_sym_async] = ACTIONS(653), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(653), [anon_sym_type] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(659), @@ -26320,19 +26320,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -26346,26 +26346,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [156] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), @@ -26387,7 +26387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(665), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), @@ -26398,7 +26398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(665), [anon_sym_CARET] = ACTIONS(665), [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26420,38 +26420,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(663), [anon_sym_CARET_EQ] = ACTIONS(663), [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [157] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(987), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list_splat_pattern] = STATE(1119), + [sym_primary_expression] = STATE(981), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26509,25 +26509,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [158] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(987), - [sym_binary_operator] = STATE(1130), - [sym_unary_operator] = STATE(1130), - [sym_attribute] = STATE(1130), - [sym_subscript] = STATE(1130), - [sym_call] = STATE(1130), - [sym_list] = STATE(1130), - [sym_set] = STATE(1130), - [sym_tuple] = STATE(1130), - [sym_dictionary] = STATE(1130), - [sym_list_comprehension] = STATE(1130), - [sym_dictionary_comprehension] = STATE(1130), - [sym_set_comprehension] = STATE(1130), - [sym_generator_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [sym_string] = STATE(967), - [sym_await] = STATE(1130), + [sym_list_splat_pattern] = STATE(1119), + [sym_primary_expression] = STATE(981), + [sym_binary_operator] = STATE(1035), + [sym_unary_operator] = STATE(1035), + [sym_attribute] = STATE(1035), + [sym_subscript] = STATE(1035), + [sym_call] = STATE(1035), + [sym_list] = STATE(1035), + [sym_set] = STATE(1035), + [sym_tuple] = STATE(1035), + [sym_dictionary] = STATE(1035), + [sym_list_comprehension] = STATE(1035), + [sym_dictionary_comprehension] = STATE(1035), + [sym_set_comprehension] = STATE(1035), + [sym_generator_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(1035), + [sym_concatenated_string] = STATE(1035), + [sym_string] = STATE(969), + [sym_await] = STATE(1035), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26584,25 +26584,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [159] = { - [sym_list_splat_pattern] = STATE(1183), - [sym_primary_expression] = STATE(989), - [sym_binary_operator] = STATE(1208), - [sym_unary_operator] = STATE(1208), - [sym_attribute] = STATE(1208), - [sym_subscript] = STATE(1208), - [sym_call] = STATE(1208), - [sym_list] = STATE(1208), - [sym_set] = STATE(1208), - [sym_tuple] = STATE(1208), - [sym_dictionary] = STATE(1208), - [sym_list_comprehension] = STATE(1208), - [sym_dictionary_comprehension] = STATE(1208), - [sym_set_comprehension] = STATE(1208), - [sym_generator_expression] = STATE(1208), - [sym_parenthesized_expression] = STATE(1208), - [sym_concatenated_string] = STATE(1208), - [sym_string] = STATE(981), - [sym_await] = STATE(1208), + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1026), + [sym_binary_operator] = STATE(1172), + [sym_unary_operator] = STATE(1172), + [sym_attribute] = STATE(1172), + [sym_subscript] = STATE(1172), + [sym_call] = STATE(1172), + [sym_list] = STATE(1172), + [sym_set] = STATE(1172), + [sym_tuple] = STATE(1172), + [sym_dictionary] = STATE(1172), + [sym_list_comprehension] = STATE(1172), + [sym_dictionary_comprehension] = STATE(1172), + [sym_set_comprehension] = STATE(1172), + [sym_generator_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_concatenated_string] = STATE(1172), + [sym_string] = STATE(975), + [sym_await] = STATE(1172), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -26659,25 +26659,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(704), }, [160] = { - [sym_list_splat_pattern] = STATE(1183), - [sym_primary_expression] = STATE(989), - [sym_binary_operator] = STATE(1208), - [sym_unary_operator] = STATE(1208), - [sym_attribute] = STATE(1208), - [sym_subscript] = STATE(1208), - [sym_call] = STATE(1208), - [sym_list] = STATE(1208), - [sym_set] = STATE(1208), - [sym_tuple] = STATE(1208), - [sym_dictionary] = STATE(1208), - [sym_list_comprehension] = STATE(1208), - [sym_dictionary_comprehension] = STATE(1208), - [sym_set_comprehension] = STATE(1208), - [sym_generator_expression] = STATE(1208), - [sym_parenthesized_expression] = STATE(1208), - [sym_concatenated_string] = STATE(1208), - [sym_string] = STATE(981), - [sym_await] = STATE(1208), + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1026), + [sym_binary_operator] = STATE(1172), + [sym_unary_operator] = STATE(1172), + [sym_attribute] = STATE(1172), + [sym_subscript] = STATE(1172), + [sym_call] = STATE(1172), + [sym_list] = STATE(1172), + [sym_set] = STATE(1172), + [sym_tuple] = STATE(1172), + [sym_dictionary] = STATE(1172), + [sym_list_comprehension] = STATE(1172), + [sym_dictionary_comprehension] = STATE(1172), + [sym_set_comprehension] = STATE(1172), + [sym_generator_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_concatenated_string] = STATE(1172), + [sym_string] = STATE(975), + [sym_await] = STATE(1172), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -26734,26 +26734,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(704), }, [161] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_SEMI] = ACTIONS(663), [anon_sym_DOT] = ACTIONS(665), [anon_sym_from] = ACTIONS(670), @@ -26774,10 +26774,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(312), + [anon_sym_DASH] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), [anon_sym_or] = ACTIONS(670), @@ -26787,7 +26787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26796,39 +26796,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(663), [anon_sym_GT] = ACTIONS(670), [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(663), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [162] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_COMMA] = ACTIONS(663), @@ -26848,11 +26848,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(312), + [anon_sym_DASH] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_PLUS] = ACTIONS(315), [anon_sym_not] = ACTIONS(670), [anon_sym_and] = ACTIONS(670), [anon_sym_or] = ACTIONS(670), @@ -26862,7 +26862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(670), [anon_sym_LT] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(663), @@ -26871,189 +26871,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(663), [anon_sym_GT] = ACTIONS(670), [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(321), [sym_type_conversion] = ACTIONS(663), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [163] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(279), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), [anon_sym_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(706), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), - }, - [164] = { - [sym_list_splat_pattern] = STATE(1183), - [sym_primary_expression] = STATE(989), - [sym_binary_operator] = STATE(1208), - [sym_unary_operator] = STATE(1208), - [sym_attribute] = STATE(1208), - [sym_subscript] = STATE(1208), - [sym_call] = STATE(1208), - [sym_list] = STATE(1208), - [sym_set] = STATE(1208), - [sym_tuple] = STATE(1208), - [sym_dictionary] = STATE(1208), - [sym_list_comprehension] = STATE(1208), - [sym_dictionary_comprehension] = STATE(1208), - [sym_set_comprehension] = STATE(1208), - [sym_generator_expression] = STATE(1208), - [sym_parenthesized_expression] = STATE(1208), - [sym_concatenated_string] = STATE(1208), - [sym_string] = STATE(981), - [sym_await] = STATE(1208), - [sym_identifier] = ACTIONS(684), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_print] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_COLON] = ACTIONS(670), - [anon_sym_match] = ACTIONS(692), - [anon_sym_async] = ACTIONS(690), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(690), - [anon_sym_type] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(706), [anon_sym_SLASH_SLASH] = ACTIONS(706), [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(700), - [sym_integer] = ACTIONS(684), - [sym_float] = ACTIONS(700), - [anon_sym_await] = ACTIONS(702), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_none] = ACTIONS(684), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(704), + [sym_string_start] = ACTIONS(327), }, - [165] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1171), - [sym_unary_operator] = STATE(1171), - [sym_attribute] = STATE(1171), - [sym_subscript] = STATE(1171), - [sym_call] = STATE(1171), - [sym_list] = STATE(1171), - [sym_set] = STATE(1171), - [sym_tuple] = STATE(1171), - [sym_dictionary] = STATE(1171), - [sym_list_comprehension] = STATE(1171), - [sym_dictionary_comprehension] = STATE(1171), - [sym_set_comprehension] = STATE(1171), - [sym_generator_expression] = STATE(1171), - [sym_parenthesized_expression] = STATE(1171), - [sym_concatenated_string] = STATE(1171), - [sym_string] = STATE(982), - [sym_await] = STATE(1171), + [164] = { + [sym_list_splat_pattern] = STATE(1388), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1270), + [sym_unary_operator] = STATE(1270), + [sym_attribute] = STATE(1270), + [sym_subscript] = STATE(1270), + [sym_call] = STATE(1270), + [sym_list] = STATE(1270), + [sym_set] = STATE(1270), + [sym_tuple] = STATE(1270), + [sym_dictionary] = STATE(1270), + [sym_list_comprehension] = STATE(1270), + [sym_dictionary_comprehension] = STATE(1270), + [sym_set_comprehension] = STATE(1270), + [sym_generator_expression] = STATE(1270), + [sym_parenthesized_expression] = STATE(1270), + [sym_concatenated_string] = STATE(1270), + [sym_string] = STATE(1028), + [sym_await] = STATE(1270), [sym_identifier] = ACTIONS(709), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(713), @@ -27064,17 +26991,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(717), [anon_sym_async] = ACTIONS(715), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(715), [anon_sym_type] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(719), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(721), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(721), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -27105,100 +27031,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(729), }, - [166] = { - [sym_list_splat_pattern] = STATE(1264), - [sym_primary_expression] = STATE(1036), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(1003), - [sym_await] = STATE(1381), - [sym_identifier] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1183), - [sym_primary_expression] = STATE(989), - [sym_binary_operator] = STATE(1208), - [sym_unary_operator] = STATE(1208), - [sym_attribute] = STATE(1208), - [sym_subscript] = STATE(1208), - [sym_call] = STATE(1208), - [sym_list] = STATE(1208), - [sym_set] = STATE(1208), - [sym_tuple] = STATE(1208), - [sym_dictionary] = STATE(1208), - [sym_list_comprehension] = STATE(1208), - [sym_dictionary_comprehension] = STATE(1208), - [sym_set_comprehension] = STATE(1208), - [sym_generator_expression] = STATE(1208), - [sym_parenthesized_expression] = STATE(1208), - [sym_concatenated_string] = STATE(1208), - [sym_string] = STATE(981), - [sym_await] = STATE(1208), + [165] = { + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1026), + [sym_binary_operator] = STATE(1172), + [sym_unary_operator] = STATE(1172), + [sym_attribute] = STATE(1172), + [sym_subscript] = STATE(1172), + [sym_call] = STATE(1172), + [sym_list] = STATE(1172), + [sym_set] = STATE(1172), + [sym_tuple] = STATE(1172), + [sym_dictionary] = STATE(1172), + [sym_list_comprehension] = STATE(1172), + [sym_dictionary_comprehension] = STATE(1172), + [sym_set_comprehension] = STATE(1172), + [sym_generator_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_concatenated_string] = STATE(1172), + [sym_string] = STATE(975), + [sym_await] = STATE(1172), [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(686), @@ -27253,51 +27105,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(704), }, - [168] = { - [sym_list_splat_pattern] = STATE(1413), - [sym_primary_expression] = STATE(1125), - [sym_binary_operator] = STATE(1380), - [sym_unary_operator] = STATE(1380), - [sym_attribute] = STATE(1380), - [sym_subscript] = STATE(1380), - [sym_call] = STATE(1380), - [sym_list] = STATE(1380), - [sym_set] = STATE(1380), - [sym_tuple] = STATE(1380), - [sym_dictionary] = STATE(1380), - [sym_list_comprehension] = STATE(1380), - [sym_dictionary_comprehension] = STATE(1380), - [sym_set_comprehension] = STATE(1380), - [sym_generator_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [sym_string] = STATE(1025), - [sym_await] = STATE(1380), - [sym_identifier] = ACTIONS(755), + [166] = { + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), + [anon_sym_else] = ACTIONS(279), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27307,7 +27159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27316,122 +27168,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), - }, - [169] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, - [170] = { - [sym_list_splat_pattern] = STATE(1264), - [sym_primary_expression] = STATE(1036), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(1003), - [sym_await] = STATE(1381), + [167] = { + [sym_list_splat_pattern] = STATE(1203), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), + [sym_string] = STATE(971), + [sym_await] = STATE(1138), [sym_identifier] = ACTIONS(731), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(735), [anon_sym_print] = ACTIONS(737), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(739), [anon_sym_async] = ACTIONS(737), [anon_sym_for] = ACTIONS(279), @@ -27439,12 +27217,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(737), [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(741), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(743), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(743), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27454,7 +27233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(743), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27463,280 +27242,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(749), + [sym_ellipsis] = ACTIONS(747), [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), + [sym_float] = ACTIONS(747), + [anon_sym_await] = ACTIONS(749), [sym_true] = ACTIONS(731), [sym_false] = ACTIONS(731), [sym_none] = ACTIONS(731), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), - }, - [171] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_else] = ACTIONS(670), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), - }, - [172] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_as] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_if] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(670), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(670), - [anon_sym_or] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_is] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_LT_GT] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), - }, - [173] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(676), - [anon_sym_async] = ACTIONS(674), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(674), - [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(751), }, - [174] = { - [sym_list_splat_pattern] = STATE(1413), - [sym_primary_expression] = STATE(1125), - [sym_binary_operator] = STATE(1380), - [sym_unary_operator] = STATE(1380), - [sym_attribute] = STATE(1380), - [sym_subscript] = STATE(1380), - [sym_call] = STATE(1380), - [sym_list] = STATE(1380), - [sym_set] = STATE(1380), - [sym_tuple] = STATE(1380), - [sym_dictionary] = STATE(1380), - [sym_list_comprehension] = STATE(1380), - [sym_dictionary_comprehension] = STATE(1380), - [sym_set_comprehension] = STATE(1380), - [sym_generator_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [sym_string] = STATE(1025), - [sym_await] = STATE(1380), - [sym_identifier] = ACTIONS(755), + [168] = { + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1026), + [sym_binary_operator] = STATE(1172), + [sym_unary_operator] = STATE(1172), + [sym_attribute] = STATE(1172), + [sym_subscript] = STATE(1172), + [sym_call] = STATE(1172), + [sym_list] = STATE(1172), + [sym_set] = STATE(1172), + [sym_tuple] = STATE(1172), + [sym_dictionary] = STATE(1172), + [sym_list_comprehension] = STATE(1172), + [sym_dictionary_comprehension] = STATE(1172), + [sym_set_comprehension] = STATE(1172), + [sym_generator_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_concatenated_string] = STATE(1172), + [sym_string] = STATE(975), + [sym_await] = STATE(1172), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(686), [anon_sym_COMMA] = ACTIONS(706), [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_print] = ACTIONS(690), [anon_sym_GT_GT] = ACTIONS(706), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(670), + [anon_sym_match] = ACTIONS(692), + [anon_sym_async] = ACTIONS(690), [anon_sym_for] = ACTIONS(670), [anon_sym_in] = ACTIONS(665), [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_exec] = ACTIONS(690), + [anon_sym_type] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(696), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(696), [anon_sym_not] = ACTIONS(665), [anon_sym_and] = ACTIONS(665), [anon_sym_or] = ACTIONS(665), @@ -27746,7 +27307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(696), [anon_sym_is] = ACTIONS(665), [anon_sym_LT] = ACTIONS(665), [anon_sym_LT_EQ] = ACTIONS(706), @@ -27755,55 +27316,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(706), [anon_sym_GT] = ACTIONS(665), [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_ellipsis] = ACTIONS(700), + [sym_integer] = ACTIONS(684), + [sym_float] = ACTIONS(700), + [anon_sym_await] = ACTIONS(702), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_none] = ACTIONS(684), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), + [sym_string_start] = ACTIONS(704), }, - [175] = { - [sym_list_splat_pattern] = STATE(1413), - [sym_primary_expression] = STATE(1125), - [sym_binary_operator] = STATE(1380), - [sym_unary_operator] = STATE(1380), - [sym_attribute] = STATE(1380), - [sym_subscript] = STATE(1380), - [sym_call] = STATE(1380), - [sym_list] = STATE(1380), - [sym_set] = STATE(1380), - [sym_tuple] = STATE(1380), - [sym_dictionary] = STATE(1380), - [sym_list_comprehension] = STATE(1380), - [sym_dictionary_comprehension] = STATE(1380), - [sym_set_comprehension] = STATE(1380), - [sym_generator_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [sym_string] = STATE(1025), - [sym_await] = STATE(1380), - [sym_identifier] = ACTIONS(755), + [169] = { + [sym_list_splat_pattern] = STATE(1258), + [sym_primary_expression] = STATE(1122), + [sym_binary_operator] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_attribute] = STATE(1367), + [sym_subscript] = STATE(1367), + [sym_call] = STATE(1367), + [sym_list] = STATE(1367), + [sym_set] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_dictionary] = STATE(1367), + [sym_list_comprehension] = STATE(1367), + [sym_dictionary_comprehension] = STATE(1367), + [sym_set_comprehension] = STATE(1367), + [sym_generator_expression] = STATE(1367), + [sym_parenthesized_expression] = STATE(1367), + [sym_concatenated_string] = STATE(1367), + [sym_string] = STATE(1015), + [sym_await] = STATE(1367), + [sym_identifier] = ACTIONS(753), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LPAREN] = ACTIONS(755), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_print] = ACTIONS(759), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), + [anon_sym_match] = ACTIONS(761), + [anon_sym_async] = ACTIONS(759), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_EQ] = ACTIONS(741), + [anon_sym_exec] = ACTIONS(759), + [anon_sym_type] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(767), @@ -27829,36 +27391,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(755), + [sym_integer] = ACTIONS(753), [sym_float] = ACTIONS(771), [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_none] = ACTIONS(753), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(775), }, - [176] = { - [sym_list_splat_pattern] = STATE(1447), - [sym_primary_expression] = STATE(1195), - [sym_binary_operator] = STATE(1448), - [sym_unary_operator] = STATE(1448), - [sym_attribute] = STATE(1448), - [sym_subscript] = STATE(1448), - [sym_call] = STATE(1448), - [sym_list] = STATE(1448), - [sym_set] = STATE(1448), - [sym_tuple] = STATE(1448), - [sym_dictionary] = STATE(1448), - [sym_list_comprehension] = STATE(1448), - [sym_dictionary_comprehension] = STATE(1448), - [sym_set_comprehension] = STATE(1448), - [sym_generator_expression] = STATE(1448), - [sym_parenthesized_expression] = STATE(1448), - [sym_concatenated_string] = STATE(1448), - [sym_string] = STATE(1069), - [sym_await] = STATE(1448), + [170] = { + [sym_list_splat_pattern] = STATE(1360), + [sym_primary_expression] = STATE(1076), + [sym_binary_operator] = STATE(1365), + [sym_unary_operator] = STATE(1365), + [sym_attribute] = STATE(1365), + [sym_subscript] = STATE(1365), + [sym_call] = STATE(1365), + [sym_list] = STATE(1365), + [sym_set] = STATE(1365), + [sym_tuple] = STATE(1365), + [sym_dictionary] = STATE(1365), + [sym_list_comprehension] = STATE(1365), + [sym_dictionary_comprehension] = STATE(1365), + [sym_set_comprehension] = STATE(1365), + [sym_generator_expression] = STATE(1365), + [sym_parenthesized_expression] = STATE(1365), + [sym_concatenated_string] = STATE(1365), + [sym_string] = STATE(996), + [sym_await] = STATE(1365), [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(779), @@ -27869,9 +27431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(783), @@ -27912,50 +27474,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(797), }, - [177] = { - [sym_list_splat_pattern] = STATE(1413), - [sym_primary_expression] = STATE(1125), - [sym_binary_operator] = STATE(1380), - [sym_unary_operator] = STATE(1380), - [sym_attribute] = STATE(1380), - [sym_subscript] = STATE(1380), - [sym_call] = STATE(1380), - [sym_list] = STATE(1380), - [sym_set] = STATE(1380), - [sym_tuple] = STATE(1380), - [sym_dictionary] = STATE(1380), - [sym_list_comprehension] = STATE(1380), - [sym_dictionary_comprehension] = STATE(1380), - [sym_set_comprehension] = STATE(1380), - [sym_generator_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [sym_string] = STATE(1025), - [sym_await] = STATE(1380), - [sym_identifier] = ACTIONS(755), + [171] = { + [sym_list_splat_pattern] = STATE(1203), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), + [sym_string] = STATE(971), + [sym_await] = STATE(1138), + [sym_identifier] = ACTIONS(731), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(733), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(735), + [anon_sym_print] = ACTIONS(737), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), + [anon_sym_match] = ACTIONS(739), + [anon_sym_async] = ACTIONS(737), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_exec] = ACTIONS(737), + [anon_sym_type] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(741), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(743), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(743), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27965,7 +27527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(743), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27974,110 +27536,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(771), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(771), - [anon_sym_await] = ACTIONS(773), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_ellipsis] = ACTIONS(747), + [sym_integer] = ACTIONS(731), + [sym_float] = ACTIONS(747), + [anon_sym_await] = ACTIONS(749), + [sym_true] = ACTIONS(731), + [sym_false] = ACTIONS(731), + [sym_none] = ACTIONS(731), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(775), + [sym_string_start] = ACTIONS(751), }, - [178] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(279), + [172] = { + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), [anon_sym_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(706), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(316), [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(316), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, - [179] = { - [sym_list_splat_pattern] = STATE(1307), - [sym_primary_expression] = STATE(1121), - [sym_binary_operator] = STATE(1404), - [sym_unary_operator] = STATE(1404), - [sym_attribute] = STATE(1404), - [sym_subscript] = STATE(1404), - [sym_call] = STATE(1404), - [sym_list] = STATE(1404), - [sym_set] = STATE(1404), - [sym_tuple] = STATE(1404), - [sym_dictionary] = STATE(1404), - [sym_list_comprehension] = STATE(1404), - [sym_dictionary_comprehension] = STATE(1404), - [sym_set_comprehension] = STATE(1404), - [sym_generator_expression] = STATE(1404), - [sym_parenthesized_expression] = STATE(1404), - [sym_concatenated_string] = STATE(1404), - [sym_string] = STATE(1022), - [sym_await] = STATE(1404), + [173] = { + [sym_list_splat_pattern] = STATE(1437), + [sym_primary_expression] = STATE(1218), + [sym_binary_operator] = STATE(1442), + [sym_unary_operator] = STATE(1442), + [sym_attribute] = STATE(1442), + [sym_subscript] = STATE(1442), + [sym_call] = STATE(1442), + [sym_list] = STATE(1442), + [sym_set] = STATE(1442), + [sym_tuple] = STATE(1442), + [sym_dictionary] = STATE(1442), + [sym_list_comprehension] = STATE(1442), + [sym_dictionary_comprehension] = STATE(1442), + [sym_set_comprehension] = STATE(1442), + [sym_generator_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_concatenated_string] = STATE(1442), + [sym_string] = STATE(1107), + [sym_await] = STATE(1442), [sym_identifier] = ACTIONS(799), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(801), @@ -28088,9 +27650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(807), [anon_sym_async] = ACTIONS(805), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(805), @@ -28131,29 +27693,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [180] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1171), - [sym_unary_operator] = STATE(1171), - [sym_attribute] = STATE(1171), - [sym_subscript] = STATE(1171), - [sym_call] = STATE(1171), - [sym_list] = STATE(1171), - [sym_set] = STATE(1171), - [sym_tuple] = STATE(1171), - [sym_dictionary] = STATE(1171), - [sym_list_comprehension] = STATE(1171), - [sym_dictionary_comprehension] = STATE(1171), - [sym_set_comprehension] = STATE(1171), - [sym_generator_expression] = STATE(1171), - [sym_parenthesized_expression] = STATE(1171), - [sym_concatenated_string] = STATE(1171), - [sym_string] = STATE(982), - [sym_await] = STATE(1171), + [174] = { + [sym_list_splat_pattern] = STATE(1388), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1270), + [sym_unary_operator] = STATE(1270), + [sym_attribute] = STATE(1270), + [sym_subscript] = STATE(1270), + [sym_call] = STATE(1270), + [sym_list] = STATE(1270), + [sym_set] = STATE(1270), + [sym_tuple] = STATE(1270), + [sym_dictionary] = STATE(1270), + [sym_list_comprehension] = STATE(1270), + [sym_dictionary_comprehension] = STATE(1270), + [sym_set_comprehension] = STATE(1270), + [sym_generator_expression] = STATE(1270), + [sym_parenthesized_expression] = STATE(1270), + [sym_concatenated_string] = STATE(1270), + [sym_string] = STATE(1028), + [sym_await] = STATE(1270), [sym_identifier] = ACTIONS(709), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(713), @@ -28163,17 +27726,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(717), [anon_sym_async] = ACTIONS(715), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(715), [anon_sym_type] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(719), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(721), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(721), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -28204,50 +27766,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(729), }, - [181] = { - [sym_list_splat_pattern] = STATE(1264), - [sym_primary_expression] = STATE(1036), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(1003), - [sym_await] = STATE(1381), - [sym_identifier] = ACTIONS(731), + [175] = { + [sym_list_splat_pattern] = STATE(1258), + [sym_primary_expression] = STATE(1122), + [sym_binary_operator] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_attribute] = STATE(1367), + [sym_subscript] = STATE(1367), + [sym_call] = STATE(1367), + [sym_list] = STATE(1367), + [sym_set] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_dictionary] = STATE(1367), + [sym_list_comprehension] = STATE(1367), + [sym_dictionary_comprehension] = STATE(1367), + [sym_set_comprehension] = STATE(1367), + [sym_generator_expression] = STATE(1367), + [sym_parenthesized_expression] = STATE(1367), + [sym_concatenated_string] = STATE(1367), + [sym_string] = STATE(1015), + [sym_await] = STATE(1367), + [sym_identifier] = ACTIONS(753), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_print] = ACTIONS(759), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), + [anon_sym_match] = ACTIONS(761), + [anon_sym_async] = ACTIONS(759), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_exec] = ACTIONS(759), + [anon_sym_type] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(767), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28257,7 +27819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28266,135 +27828,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(753), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_none] = ACTIONS(753), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(775), }, - [182] = { - [sym_list_splat_pattern] = STATE(1447), - [sym_primary_expression] = STATE(1195), - [sym_binary_operator] = STATE(1448), - [sym_unary_operator] = STATE(1448), - [sym_attribute] = STATE(1448), - [sym_subscript] = STATE(1448), - [sym_call] = STATE(1448), - [sym_list] = STATE(1448), - [sym_set] = STATE(1448), - [sym_tuple] = STATE(1448), - [sym_dictionary] = STATE(1448), - [sym_list_comprehension] = STATE(1448), - [sym_dictionary_comprehension] = STATE(1448), - [sym_set_comprehension] = STATE(1448), - [sym_generator_expression] = STATE(1448), - [sym_parenthesized_expression] = STATE(1448), - [sym_concatenated_string] = STATE(1448), - [sym_string] = STATE(1069), - [sym_await] = STATE(1448), - [sym_identifier] = ACTIONS(777), + [176] = { + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(319), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(319), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(319), + [sym_string_start] = ACTIONS(327), + }, + [177] = { + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_DOT] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_as] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_as] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(665), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(670), - [anon_sym_in] = ACTIONS(665), + [anon_sym_if] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_else] = ACTIONS(670), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_in] = ACTIONS(670), [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(315), [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_not] = ACTIONS(665), - [anon_sym_and] = ACTIONS(665), - [anon_sym_or] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(706), [anon_sym_SLASH_SLASH] = ACTIONS(706), [anon_sym_AMP] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(706), [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_is] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT_GT] = ACTIONS(706), - [sym_ellipsis] = ACTIONS(793), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(793), - [anon_sym_await] = ACTIONS(795), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_is] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_LT_GT] = ACTIONS(663), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(797), + [sym_string_start] = ACTIONS(327), }, - [183] = { - [sym_list_splat_pattern] = STATE(1307), - [sym_primary_expression] = STATE(1121), - [sym_binary_operator] = STATE(1404), - [sym_unary_operator] = STATE(1404), - [sym_attribute] = STATE(1404), - [sym_subscript] = STATE(1404), - [sym_call] = STATE(1404), - [sym_list] = STATE(1404), - [sym_set] = STATE(1404), - [sym_tuple] = STATE(1404), - [sym_dictionary] = STATE(1404), - [sym_list_comprehension] = STATE(1404), - [sym_dictionary_comprehension] = STATE(1404), - [sym_set_comprehension] = STATE(1404), - [sym_generator_expression] = STATE(1404), - [sym_parenthesized_expression] = STATE(1404), - [sym_concatenated_string] = STATE(1404), - [sym_string] = STATE(1022), - [sym_await] = STATE(1404), - [sym_identifier] = ACTIONS(799), + [178] = { + [sym_list_splat_pattern] = STATE(1360), + [sym_primary_expression] = STATE(1076), + [sym_binary_operator] = STATE(1365), + [sym_unary_operator] = STATE(1365), + [sym_attribute] = STATE(1365), + [sym_subscript] = STATE(1365), + [sym_call] = STATE(1365), + [sym_list] = STATE(1365), + [sym_set] = STATE(1365), + [sym_tuple] = STATE(1365), + [sym_dictionary] = STATE(1365), + [sym_list_comprehension] = STATE(1365), + [sym_dictionary_comprehension] = STATE(1365), + [sym_set_comprehension] = STATE(1365), + [sym_generator_expression] = STATE(1365), + [sym_parenthesized_expression] = STATE(1365), + [sym_concatenated_string] = STATE(1365), + [sym_string] = STATE(996), + [sym_await] = STATE(1365), + [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(779), [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_print] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(807), - [anon_sym_async] = ACTIONS(805), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(805), - [anon_sym_type] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(787), [anon_sym_RBRACK] = ACTIONS(284), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(789), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_not] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), @@ -28403,7 +28038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(789), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28412,6 +28047,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(793), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(793), + [anon_sym_await] = ACTIONS(795), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(797), + }, + [179] = { + [sym_list_splat_pattern] = STATE(1388), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1270), + [sym_unary_operator] = STATE(1270), + [sym_attribute] = STATE(1270), + [sym_subscript] = STATE(1270), + [sym_call] = STATE(1270), + [sym_list] = STATE(1270), + [sym_set] = STATE(1270), + [sym_tuple] = STATE(1270), + [sym_dictionary] = STATE(1270), + [sym_list_comprehension] = STATE(1270), + [sym_dictionary_comprehension] = STATE(1270), + [sym_set_comprehension] = STATE(1270), + [sym_generator_expression] = STATE(1270), + [sym_parenthesized_expression] = STATE(1270), + [sym_concatenated_string] = STATE(1270), + [sym_string] = STATE(1028), + [sym_await] = STATE(1270), + [sym_identifier] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_as] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_print] = ACTIONS(715), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(665), + [anon_sym_match] = ACTIONS(717), + [anon_sym_async] = ACTIONS(715), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(715), + [anon_sym_type] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_not] = ACTIONS(665), + [anon_sym_and] = ACTIONS(665), + [anon_sym_or] = ACTIONS(665), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_is] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_LT_GT] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(725), + [sym_integer] = ACTIONS(709), + [sym_float] = ACTIONS(725), + [anon_sym_await] = ACTIONS(727), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_none] = ACTIONS(709), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(729), + }, + [180] = { + [sym_list_splat_pattern] = STATE(1437), + [sym_primary_expression] = STATE(1218), + [sym_binary_operator] = STATE(1442), + [sym_unary_operator] = STATE(1442), + [sym_attribute] = STATE(1442), + [sym_subscript] = STATE(1442), + [sym_call] = STATE(1442), + [sym_list] = STATE(1442), + [sym_set] = STATE(1442), + [sym_tuple] = STATE(1442), + [sym_dictionary] = STATE(1442), + [sym_list_comprehension] = STATE(1442), + [sym_dictionary_comprehension] = STATE(1442), + [sym_set_comprehension] = STATE(1442), + [sym_generator_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_concatenated_string] = STATE(1442), + [sym_string] = STATE(1107), + [sym_await] = STATE(1442), + [sym_identifier] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(706), + [anon_sym_as] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_print] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(665), + [anon_sym_match] = ACTIONS(807), + [anon_sym_async] = ACTIONS(805), + [anon_sym_for] = ACTIONS(670), + [anon_sym_in] = ACTIONS(665), + [anon_sym_STAR_STAR] = ACTIONS(706), + [anon_sym_exec] = ACTIONS(805), + [anon_sym_type] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_not] = ACTIONS(665), + [anon_sym_and] = ACTIONS(665), + [anon_sym_or] = ACTIONS(665), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_is] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_LT_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_LT_GT] = ACTIONS(706), [sym_ellipsis] = ACTIONS(815), [sym_integer] = ACTIONS(799), [sym_float] = ACTIONS(815), @@ -28423,49 +28204,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [184] = { - [sym_list_splat_pattern] = STATE(1264), - [sym_primary_expression] = STATE(1036), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(1003), - [sym_await] = STATE(1381), - [sym_identifier] = ACTIONS(731), + [181] = { + [sym_list_splat_pattern] = STATE(1388), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1270), + [sym_unary_operator] = STATE(1270), + [sym_attribute] = STATE(1270), + [sym_subscript] = STATE(1270), + [sym_call] = STATE(1270), + [sym_list] = STATE(1270), + [sym_set] = STATE(1270), + [sym_tuple] = STATE(1270), + [sym_dictionary] = STATE(1270), + [sym_list_comprehension] = STATE(1270), + [sym_dictionary_comprehension] = STATE(1270), + [sym_set_comprehension] = STATE(1270), + [sym_generator_expression] = STATE(1270), + [sym_parenthesized_expression] = STATE(1270), + [sym_concatenated_string] = STATE(1270), + [sym_string] = STATE(1028), + [sym_await] = STATE(1270), + [sym_identifier] = ACTIONS(709), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(711), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_print] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_print] = ACTIONS(715), [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(739), - [anon_sym_async] = ACTIONS(737), + [anon_sym_match] = ACTIONS(717), + [anon_sym_async] = ACTIONS(715), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(715), + [anon_sym_type] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(725), + [sym_integer] = ACTIONS(709), + [sym_float] = ACTIONS(725), + [anon_sym_await] = ACTIONS(727), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_none] = ACTIONS(709), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(729), + }, + [182] = { + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_print] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_else] = ACTIONS(279), + [anon_sym_match] = ACTIONS(676), + [anon_sym_async] = ACTIONS(674), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(674), + [anon_sym_type] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(327), + }, + [183] = { + [sym_list_splat_pattern] = STATE(1258), + [sym_primary_expression] = STATE(1122), + [sym_binary_operator] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_attribute] = STATE(1367), + [sym_subscript] = STATE(1367), + [sym_call] = STATE(1367), + [sym_list] = STATE(1367), + [sym_set] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_dictionary] = STATE(1367), + [sym_list_comprehension] = STATE(1367), + [sym_dictionary_comprehension] = STATE(1367), + [sym_set_comprehension] = STATE(1367), + [sym_generator_expression] = STATE(1367), + [sym_parenthesized_expression] = STATE(1367), + [sym_concatenated_string] = STATE(1367), + [sym_string] = STATE(1015), + [sym_await] = STATE(1367), + [sym_identifier] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_print] = ACTIONS(759), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(279), + [anon_sym_match] = ACTIONS(761), + [anon_sym_async] = ACTIONS(759), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(737), - [anon_sym_type] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_exec] = ACTIONS(759), + [anon_sym_type] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(765), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(767), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28475,7 +28403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28484,37 +28412,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(731), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_none] = ACTIONS(731), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(753), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_none] = ACTIONS(753), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(775), }, - [185] = { - [sym_list_splat_pattern] = STATE(1307), - [sym_primary_expression] = STATE(1121), - [sym_binary_operator] = STATE(1404), - [sym_unary_operator] = STATE(1404), - [sym_attribute] = STATE(1404), - [sym_subscript] = STATE(1404), - [sym_call] = STATE(1404), - [sym_list] = STATE(1404), - [sym_set] = STATE(1404), - [sym_tuple] = STATE(1404), - [sym_dictionary] = STATE(1404), - [sym_list_comprehension] = STATE(1404), - [sym_dictionary_comprehension] = STATE(1404), - [sym_set_comprehension] = STATE(1404), - [sym_generator_expression] = STATE(1404), - [sym_parenthesized_expression] = STATE(1404), - [sym_concatenated_string] = STATE(1404), - [sym_string] = STATE(1022), - [sym_await] = STATE(1404), + [184] = { + [sym_list_splat_pattern] = STATE(1437), + [sym_primary_expression] = STATE(1218), + [sym_binary_operator] = STATE(1442), + [sym_unary_operator] = STATE(1442), + [sym_attribute] = STATE(1442), + [sym_subscript] = STATE(1442), + [sym_call] = STATE(1442), + [sym_list] = STATE(1442), + [sym_set] = STATE(1442), + [sym_tuple] = STATE(1442), + [sym_dictionary] = STATE(1442), + [sym_list_comprehension] = STATE(1442), + [sym_dictionary_comprehension] = STATE(1442), + [sym_set_comprehension] = STATE(1442), + [sym_generator_expression] = STATE(1442), + [sym_parenthesized_expression] = STATE(1442), + [sym_concatenated_string] = STATE(1442), + [sym_string] = STATE(1107), + [sym_await] = STATE(1442), [sym_identifier] = ACTIONS(799), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(801), @@ -28524,9 +28452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_print] = ACTIONS(805), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(807), [anon_sym_async] = ACTIONS(805), - [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(805), @@ -28567,26 +28495,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(819), }, - [186] = { - [sym_list_splat_pattern] = STATE(1447), - [sym_primary_expression] = STATE(1195), - [sym_binary_operator] = STATE(1448), - [sym_unary_operator] = STATE(1448), - [sym_attribute] = STATE(1448), - [sym_subscript] = STATE(1448), - [sym_call] = STATE(1448), - [sym_list] = STATE(1448), - [sym_set] = STATE(1448), - [sym_tuple] = STATE(1448), - [sym_dictionary] = STATE(1448), - [sym_list_comprehension] = STATE(1448), - [sym_dictionary_comprehension] = STATE(1448), - [sym_set_comprehension] = STATE(1448), - [sym_generator_expression] = STATE(1448), - [sym_parenthesized_expression] = STATE(1448), - [sym_concatenated_string] = STATE(1448), - [sym_string] = STATE(1069), - [sym_await] = STATE(1448), + [185] = { + [sym_list_splat_pattern] = STATE(1360), + [sym_primary_expression] = STATE(1076), + [sym_binary_operator] = STATE(1365), + [sym_unary_operator] = STATE(1365), + [sym_attribute] = STATE(1365), + [sym_subscript] = STATE(1365), + [sym_call] = STATE(1365), + [sym_list] = STATE(1365), + [sym_set] = STATE(1365), + [sym_tuple] = STATE(1365), + [sym_dictionary] = STATE(1365), + [sym_list_comprehension] = STATE(1365), + [sym_dictionary_comprehension] = STATE(1365), + [sym_set_comprehension] = STATE(1365), + [sym_generator_expression] = STATE(1365), + [sym_parenthesized_expression] = STATE(1365), + [sym_concatenated_string] = STATE(1365), + [sym_string] = STATE(996), + [sym_await] = STATE(1365), [sym_identifier] = ACTIONS(777), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(779), @@ -28596,9 +28524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_print] = ACTIONS(783), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(783), @@ -28639,27 +28567,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(797), }, + [186] = { + [sym_list_splat_pattern] = STATE(1258), + [sym_primary_expression] = STATE(1122), + [sym_binary_operator] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_attribute] = STATE(1367), + [sym_subscript] = STATE(1367), + [sym_call] = STATE(1367), + [sym_list] = STATE(1367), + [sym_set] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_dictionary] = STATE(1367), + [sym_list_comprehension] = STATE(1367), + [sym_dictionary_comprehension] = STATE(1367), + [sym_set_comprehension] = STATE(1367), + [sym_generator_expression] = STATE(1367), + [sym_parenthesized_expression] = STATE(1367), + [sym_concatenated_string] = STATE(1367), + [sym_string] = STATE(1015), + [sym_await] = STATE(1367), + [sym_identifier] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_print] = ACTIONS(759), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_match] = ACTIONS(761), + [anon_sym_async] = ACTIONS(759), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(759), + [anon_sym_type] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(753), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_none] = ACTIONS(753), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(775), + }, [187] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_DOT] = ACTIONS(665), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_COMMA] = ACTIONS(663), @@ -28677,7 +28677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(665), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_SLASH] = ACTIONS(665), [anon_sym_PERCENT] = ACTIONS(665), @@ -28685,7 +28685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(665), [anon_sym_CARET] = ACTIONS(665), [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(315), [anon_sym_PLUS_EQ] = ACTIONS(663), [anon_sym_DASH_EQ] = ACTIONS(663), [anon_sym_STAR_EQ] = ACTIONS(663), @@ -28699,56 +28699,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(663), [anon_sym_CARET_EQ] = ACTIONS(663), [anon_sym_PIPE_EQ] = ACTIONS(663), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, [188] = { - [sym_list_splat_pattern] = STATE(1269), - [sym_primary_expression] = STATE(1107), - [sym_binary_operator] = STATE(1339), - [sym_unary_operator] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_subscript] = STATE(1339), - [sym_call] = STATE(1339), - [sym_list] = STATE(1339), - [sym_set] = STATE(1339), - [sym_tuple] = STATE(1339), - [sym_dictionary] = STATE(1339), - [sym_list_comprehension] = STATE(1339), - [sym_dictionary_comprehension] = STATE(1339), - [sym_set_comprehension] = STATE(1339), - [sym_generator_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string] = STATE(1033), - [sym_await] = STATE(1339), - [sym_identifier] = ACTIONS(320), + [sym_list_splat_pattern] = STATE(1342), + [sym_primary_expression] = STATE(1051), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(1010), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(323), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(672), [anon_sym_print] = ACTIONS(674), [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(319), [anon_sym_match] = ACTIONS(676), [anon_sym_async] = ACTIONS(674), [anon_sym_STAR_STAR] = ACTIONS(279), [anon_sym_exec] = ACTIONS(674), [anon_sym_type] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(319), [anon_sym_LBRACK] = ACTIONS(678), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(680), [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), @@ -28756,49 +28756,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_AT_EQ] = ACTIONS(316), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [sym_ellipsis] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(318), + [anon_sym_TILDE] = ACTIONS(315), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_STAR_EQ] = ACTIONS(319), + [anon_sym_SLASH_EQ] = ACTIONS(319), + [anon_sym_AT_EQ] = ACTIONS(319), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(319), + [anon_sym_PERCENT_EQ] = ACTIONS(319), + [anon_sym_STAR_STAR_EQ] = ACTIONS(319), + [anon_sym_GT_GT_EQ] = ACTIONS(319), + [anon_sym_LT_LT_EQ] = ACTIONS(319), + [anon_sym_AMP_EQ] = ACTIONS(319), + [anon_sym_CARET_EQ] = ACTIONS(319), + [anon_sym_PIPE_EQ] = ACTIONS(319), + [sym_ellipsis] = ACTIONS(321), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(321), [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [sym_none] = ACTIONS(323), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(327), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(813), 1, + [0] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, ACTIONS(825), 1, + anon_sym_RPAREN, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(831), 1, - anon_sym_LBRACK, ACTIONS(833), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, ACTIONS(837), 1, @@ -28807,55 +28807,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1409), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1691), 1, sym_expression, - STATE(2410), 1, + STATE(2303), 1, + sym_yield, + STATE(2340), 1, sym_pattern, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2741), 1, + STATE(2625), 1, sym__patterns, - STATE(2790), 1, + STATE(2771), 1, + sym__named_expression_lhs, + STATE(2782), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28863,7 +28864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28878,12 +28879,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 30, - ACTIONS(719), 1, + [126] = 30, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -28905,32 +28906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1668), 1, sym_expression, - STATE(1867), 1, + STATE(1884), 1, sym_pair, - STATE(2444), 1, + STATE(2305), 1, sym_dictionary_splat, - STATE(2605), 1, - sym__named_expression_lhs, - STATE(2662), 1, + STATE(2637), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -28938,16 +28939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, + STATE(2357), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28955,7 +28956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28972,76 +28973,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [248] = 30, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [250] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(833), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_await, ACTIONS(867), 1, - anon_sym_COMMA, - ACTIONS(869), 1, - anon_sym_RBRACE, - STATE(904), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(982), 1, + STATE(1015), 1, sym_string, - STATE(1212), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(1676), 1, sym_expression, - STATE(1837), 1, - sym_pair, - STATE(2244), 1, - sym_dictionary_splat, - STATE(2605), 1, - sym__named_expression_lhs, - STATE(2769), 1, + STATE(2298), 1, + sym_yield, + STATE(2340), 1, + sym_pattern, + STATE(2602), 1, + sym__patterns, + STATE(2613), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1370), 2, + sym_attribute, + sym_subscript, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29049,11 +29053,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29066,78 +29068,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [372] = 30, - ACTIONS(813), 1, + [376] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(881), 1, + anon_sym_RBRACK, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(871), 1, - anon_sym_RBRACK, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1409), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1709), 1, sym_expression, - STATE(2410), 1, + STATE(2382), 1, sym_pattern, - STATE(2654), 1, + STATE(2611), 1, + sym__named_expression_lhs, + STATE(2626), 1, sym__patterns, - STATE(2674), 1, + STATE(2654), 1, sym__collection_elements, - STATE(2690), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29145,7 +29147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29160,79 +29162,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [496] = 31, - ACTIONS(747), 1, + [500] = 30, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(877), 1, - anon_sym_RPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(865), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(891), 1, + anon_sym_COMMA, + ACTIONS(893), 1, + anon_sym_RBRACE, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1378), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1669), 1, sym_expression, - STATE(2250), 1, - sym_pattern, - STATE(2282), 1, - sym_yield, - STATE(2614), 1, - sym__named_expression_lhs, - STATE(2684), 1, - sym__patterns, - STATE(2720), 1, + STATE(1878), 1, + sym_pair, + STATE(2454), 1, + sym_dictionary_splat, + STATE(2675), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, - sym_attribute, - sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, + STATE(2357), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29240,9 +29239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29255,79 +29256,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [622] = 31, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(873), 1, + [624] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(895), 1, - anon_sym_RPAREN, - STATE(965), 1, - sym_primary_expression, - STATE(1003), 1, - sym_string, - STATE(1378), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(641), 1, sym_list_splat_pattern, - STATE(1685), 1, - sym_expression, - STATE(2250), 1, + STATE(966), 1, + sym_primary_expression, + STATE(969), 1, + sym_string, + STATE(1630), 1, + sym_pattern_list, + STATE(1632), 1, sym_pattern, - STATE(2282), 1, - sym_yield, - STATE(2614), 1, + STATE(1778), 1, + sym_expression, + STATE(2751), 1, sym__named_expression_lhs, - STATE(2720), 1, - sym__collection_elements, - STATE(2762), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(640), 2, sym_attribute, sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(415), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2584), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29335,7 +29333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1035), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29350,18 +29348,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [748] = 30, - ACTIONS(813), 1, + [744] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(833), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -29371,57 +29369,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(897), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1409), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1676), 1, sym_expression, - STATE(2410), 1, + STATE(2298), 1, + sym_yield, + STATE(2340), 1, sym_pattern, - STATE(2647), 1, + STATE(2613), 1, sym__collection_elements, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2741), 1, + STATE(2625), 1, sym__patterns, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29429,7 +29428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29444,76 +29443,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 30, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [870] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(879), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_COMMA, - ACTIONS(901), 1, - anon_sym_RBRACE, - STATE(904), 1, + ACTIONS(897), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1712), 1, sym_expression, - STATE(1835), 1, - sym_pair, - STATE(2262), 1, - sym_dictionary_splat, - STATE(2605), 1, + STATE(2382), 1, + sym_pattern, + STATE(2611), 1, sym__named_expression_lhs, STATE(2737), 1, + sym__patterns, + STATE(2792), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1381), 2, + sym_attribute, + sym_subscript, + STATE(2570), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29521,11 +29522,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29538,12 +29537,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [996] = 30, - ACTIONS(719), 1, + [994] = 30, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -29561,36 +29560,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(903), 1, + ACTIONS(899), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(901), 1, anon_sym_RBRACE, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1670), 1, sym_expression, - STATE(1836), 1, + STATE(1866), 1, sym_pair, - STATE(2446), 1, + STATE(2267), 1, sym_dictionary_splat, - STATE(2605), 1, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2652), 1, + STATE(2710), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -29598,114 +29597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1171), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [1120] = 32, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(873), 1, - sym_identifier, - ACTIONS(875), 1, - anon_sym_LPAREN, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, - anon_sym_await, - ACTIONS(907), 1, - anon_sym_RPAREN, - STATE(965), 1, - sym_primary_expression, - STATE(1003), 1, - sym_string, - STATE(1378), 1, - sym_list_splat_pattern, - STATE(1700), 1, - sym_expression, - STATE(2250), 1, - sym_pattern, - STATE(2291), 1, + STATE(2357), 3, sym_list_splat, - STATE(2304), 1, sym_parenthesized_list_splat, - STATE(2460), 1, sym_yield, - STATE(2614), 1, - sym__named_expression_lhs, - STATE(2629), 1, - sym__patterns, - STATE(2686), 1, - sym__collection_elements, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(883), 2, - anon_sym_match, - anon_sym_type, - STATE(1377), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(881), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29713,103 +29614,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [1248] = 30, - ACTIONS(813), 1, - anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(821), 1, - sym_identifier, - ACTIONS(823), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, - anon_sym_STAR, - ACTIONS(831), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, - anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(841), 1, - anon_sym_await, - ACTIONS(909), 1, - anon_sym_RBRACK, - STATE(964), 1, - sym_primary_expression, - STATE(1022), 1, - sym_string, - STATE(1409), 1, - sym_list_splat_pattern, - STATE(1716), 1, - sym_expression, - STATE(2410), 1, - sym_pattern, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2741), 1, - sym__patterns, - STATE(2790), 1, - sym__collection_elements, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(829), 2, - anon_sym_match, - anon_sym_type, - STATE(1411), 2, sym_attribute, sym_subscript, - STATE(2532), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(827), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1776), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1404), 14, - sym_binary_operator, - sym_unary_operator, sym_call, sym_list, sym_set, @@ -29822,7 +29631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1372] = 28, + [1118] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29843,19 +29652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(632), 1, + STATE(641), 1, sym_list_splat_pattern, - STATE(967), 1, - sym_string, - STATE(970), 1, + STATE(966), 1, sym_primary_expression, - STATE(1635), 1, - sym_pattern, - STATE(1637), 1, + STATE(969), 1, + sym_string, + STATE(1630), 1, sym_pattern_list, - STATE(1827), 1, + STATE(1632), 1, + sym_pattern, + STATE(1778), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29866,10 +29675,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(641), 2, + STATE(640), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, @@ -29885,13 +29694,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2557), 5, + STATE(2586), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29899,7 +29708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 14, + STATE(1035), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29914,7 +29723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1492] = 28, + [1238] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29935,19 +29744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(632), 1, + STATE(641), 1, sym_list_splat_pattern, - STATE(967), 1, - sym_string, - STATE(970), 1, + STATE(966), 1, sym_primary_expression, - STATE(1635), 1, - sym_pattern, - STATE(1637), 1, + STATE(969), 1, + sym_string, + STATE(1630), 1, sym_pattern_list, - STATE(1827), 1, + STATE(1632), 1, + sym_pattern, + STATE(1778), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29958,10 +29767,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(413), 2, anon_sym_match, anon_sym_type, - STATE(641), 2, + STATE(640), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, @@ -29977,13 +29786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2515), 5, + STATE(2553), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29991,7 +29800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 14, + STATE(1035), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30006,79 +29815,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1612] = 31, - ACTIONS(747), 1, + [1358] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(833), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(911), 1, + ACTIONS(903), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1378), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1681), 1, sym_expression, - STATE(2250), 1, + STATE(2340), 1, sym_pattern, - STATE(2282), 1, + STATE(2353), 1, sym_yield, - STATE(2614), 1, - sym__named_expression_lhs, - STATE(2629), 1, + STATE(2625), 1, sym__patterns, - STATE(2720), 1, + STATE(2647), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2247), 2, + STATE(2345), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30086,7 +29895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30101,76 +29910,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1738] = 30, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [1484] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(833), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(913), 1, - anon_sym_COMMA, - ACTIONS(915), 1, - anon_sym_RBRACE, - STATE(904), 1, + ACTIONS(905), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(982), 1, + STATE(1015), 1, sym_string, - STATE(1212), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1676), 1, sym_expression, - STATE(1858), 1, - sym_pair, - STATE(2497), 1, - sym_dictionary_splat, - STATE(2605), 1, - sym__named_expression_lhs, - STATE(2793), 1, + STATE(2298), 1, + sym_yield, + STATE(2340), 1, + sym_pattern, + STATE(2606), 1, + sym__patterns, + STATE(2613), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1370), 2, + sym_attribute, + sym_subscript, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30178,11 +29990,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30195,78 +30005,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1862] = 30, - ACTIONS(813), 1, + [1610] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(917), 1, + ACTIONS(907), 1, anon_sym_RBRACK, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1409), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1707), 1, sym_expression, - STATE(2410), 1, + STATE(2382), 1, sym_pattern, - STATE(2690), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2740), 1, + STATE(2628), 1, sym__collection_elements, - STATE(2741), 1, + STATE(2648), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30274,7 +30084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30289,18 +30099,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1986] = 30, - ACTIONS(813), 1, + [1734] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(833), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -30310,57 +30120,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(919), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(909), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1409), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1676), 1, sym_expression, - STATE(2410), 1, + STATE(2298), 1, + sym_yield, + STATE(2340), 1, sym_pattern, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2740), 1, + STATE(2613), 1, sym__collection_elements, - STATE(2741), 1, + STATE(2625), 1, sym__patterns, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30368,7 +30179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30383,78 +30194,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2110] = 30, - ACTIONS(813), 1, + [1860] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(921), 1, + ACTIONS(911), 1, anon_sym_RBRACK, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1409), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1705), 1, sym_expression, - STATE(2410), 1, + STATE(2382), 1, sym_pattern, - STATE(2678), 1, - sym__patterns, - STATE(2690), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2790), 1, + STATE(2648), 1, + sym__patterns, + STATE(2664), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30462,7 +30273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30477,79 +30288,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2234] = 31, - ACTIONS(747), 1, + [1984] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(833), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(923), 1, + ACTIONS(913), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1378), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1676), 1, sym_expression, - STATE(2250), 1, - sym_pattern, - STATE(2282), 1, + STATE(2298), 1, sym_yield, - STATE(2614), 1, - sym__named_expression_lhs, - STATE(2720), 1, + STATE(2340), 1, + sym_pattern, + STATE(2613), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2623), 1, sym__patterns, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2247), 2, + STATE(2345), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30557,7 +30368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30572,78 +30383,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2360] = 30, - ACTIONS(813), 1, + [2110] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(925), 1, + ACTIONS(915), 1, anon_sym_RBRACK, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1409), 1, + STATE(1378), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1707), 1, sym_expression, - STATE(2410), 1, + STATE(2382), 1, sym_pattern, - STATE(2640), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2763), 1, + STATE(2628), 1, + sym__collection_elements, + STATE(2737), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30651,7 +30462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30666,78 +30477,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2484] = 30, - ACTIONS(813), 1, + [2234] = 30, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(823), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(831), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(841), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(927), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(917), 1, + anon_sym_COMMA, + ACTIONS(919), 1, + anon_sym_RBRACE, + STATE(912), 1, sym_primary_expression, - STATE(1022), 1, + STATE(971), 1, sym_string, - STATE(1409), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1656), 1, sym_expression, - STATE(2410), 1, - sym_pattern, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2763), 1, - sym__patterns, - STATE(2790), 1, + STATE(1862), 1, + sym_pair, + STATE(2347), 1, + sym_dictionary_splat, + STATE(2668), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, - sym_attribute, - sym_subscript, - STATE(2532), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2357), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30745,9 +30554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30760,79 +30571,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2608] = 31, - ACTIONS(747), 1, + [2358] = 30, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(965), 1, + ACTIONS(921), 1, + anon_sym_COMMA, + ACTIONS(923), 1, + anon_sym_RBRACE, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1378), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1667), 1, sym_expression, - STATE(2250), 1, - sym_pattern, - STATE(2494), 1, - sym_yield, - STATE(2614), 1, + STATE(1855), 1, + sym_pair, + STATE(2289), 1, + sym_dictionary_splat, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2762), 1, - sym__patterns, - STATE(2774), 1, + STATE(2746), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, - sym_attribute, - sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, + STATE(2357), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30840,9 +30648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30855,76 +30665,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2734] = 30, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [2482] = 32, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(859), 1, + ACTIONS(833), 1, + anon_sym_LBRACK, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(863), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(931), 1, - anon_sym_COMMA, - ACTIONS(933), 1, - anon_sym_RBRACE, - STATE(904), 1, + ACTIONS(925), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(982), 1, + STATE(1015), 1, sym_string, - STATE(1212), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1680), 1, sym_expression, - STATE(1883), 1, - sym_pair, - STATE(2284), 1, - sym_dictionary_splat, - STATE(2605), 1, - sym__named_expression_lhs, - STATE(2732), 1, + STATE(2340), 1, + sym_pattern, + STATE(2379), 1, + sym_list_splat, + STATE(2381), 1, + sym_parenthesized_list_splat, + STATE(2443), 1, + sym_yield, + STATE(2606), 1, + sym__patterns, + STATE(2631), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1370), 2, + sym_attribute, + sym_subscript, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(709), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30932,11 +30746,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30949,80 +30761,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2858] = 32, - ACTIONS(747), 1, + [2610] = 32, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(821), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(833), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(841), 1, anon_sym_await, - ACTIONS(935), 1, + ACTIONS(927), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1378), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1688), 1, sym_expression, - STATE(2250), 1, - sym_pattern, - STATE(2340), 1, + STATE(2242), 1, sym_yield, - STATE(2418), 1, + STATE(2340), 1, + sym_pattern, + STATE(2434), 1, sym_list_splat, - STATE(2492), 1, + STATE(2435), 1, sym_parenthesized_list_splat, - STATE(2614), 1, - sym__named_expression_lhs, - STATE(2682), 1, - sym__collection_elements, - STATE(2713), 1, + STATE(2602), 1, sym__patterns, + STATE(2736), 1, + sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31030,7 +30842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31045,18 +30857,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2986] = 30, - ACTIONS(813), 1, + [2738] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(833), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -31066,57 +30878,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(937), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(929), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1409), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1676), 1, sym_expression, - STATE(2410), 1, + STATE(2298), 1, + sym_yield, + STATE(2340), 1, sym_pattern, - STATE(2637), 1, + STATE(2613), 1, + sym__collection_elements, + STATE(2692), 1, sym__patterns, - STATE(2690), 1, + STATE(2771), 1, sym__named_expression_lhs, - STATE(2790), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31124,7 +30937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31139,79 +30952,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3110] = 31, - ACTIONS(747), 1, + [2864] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(939), 1, - anon_sym_RPAREN, + ACTIONS(931), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1707), 1, sym_expression, - STATE(2250), 1, + STATE(2382), 1, sym_pattern, - STATE(2282), 1, - sym_yield, - STATE(2603), 1, - sym__patterns, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2720), 1, + STATE(2626), 1, + sym__patterns, + STATE(2628), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31219,7 +31031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31234,12 +31046,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3236] = 30, - ACTIONS(719), 1, + [2988] = 30, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -31257,36 +31069,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(933), 1, anon_sym_COMMA, - ACTIONS(943), 1, + ACTIONS(935), 1, anon_sym_RBRACE, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1655), 1, sym_expression, - STATE(1870), 1, + STATE(1836), 1, sym_pair, - STATE(2350), 1, + STATE(2380), 1, sym_dictionary_splat, - STATE(2605), 1, - sym__named_expression_lhs, - STATE(2661), 1, + STATE(2608), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31294,16 +31106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, + STATE(2357), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31311,7 +31123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31328,12 +31140,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3360] = 30, - ACTIONS(719), 1, + [3112] = 30, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -31351,36 +31163,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(865), 1, anon_sym_await, - ACTIONS(945), 1, + ACTIONS(937), 1, anon_sym_COMMA, - ACTIONS(947), 1, + ACTIONS(939), 1, anon_sym_RBRACE, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1663), 1, sym_expression, - STATE(1854), 1, + STATE(1859), 1, sym_pair, - STATE(2405), 1, + STATE(2279), 1, sym_dictionary_splat, - STATE(2605), 1, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2618), 1, + STATE(2757), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31388,16 +31200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, + STATE(2357), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31405,7 +31217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31422,79 +31234,172 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3484] = 31, - ACTIONS(747), 1, + [3236] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(949), 1, - anon_sym_RPAREN, + ACTIONS(941), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1713), 1, sym_expression, - STATE(2250), 1, + STATE(2382), 1, sym_pattern, - STATE(2282), 1, - sym_yield, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2713), 1, + STATE(2737), 1, sym__patterns, - STATE(2720), 1, + STATE(2743), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2247), 2, + STATE(2570), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(875), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, - STATE(2596), 2, + sym_yield, + ACTIONS(777), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1793), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1365), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3360] = 30, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(869), 1, + sym_identifier, + ACTIONS(871), 1, + anon_sym_LPAREN, + ACTIONS(873), 1, + anon_sym_STAR, + ACTIONS(879), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_not, + ACTIONS(885), 1, + anon_sym_lambda, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(889), 1, + anon_sym_await, + ACTIONS(943), 1, + anon_sym_RBRACK, + STATE(965), 1, + sym_primary_expression, + STATE(996), 1, + sym_string, + STATE(1378), 1, + sym_list_splat_pattern, + STATE(1707), 1, + sym_expression, + STATE(2382), 1, + sym_pattern, + STATE(2611), 1, + sym__named_expression_lhs, + STATE(2628), 1, + sym__collection_elements, + STATE(2737), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(877), 2, + anon_sym_match, + anon_sym_type, + STATE(1381), 2, + sym_attribute, + sym_subscript, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31502,7 +31407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31517,18 +31422,18 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3610] = 30, - ACTIONS(813), 1, + [3484] = 31, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(821), 1, sym_identifier, ACTIONS(823), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(831), 1, + ACTIONS(833), 1, anon_sym_LBRACK, ACTIONS(835), 1, anon_sym_not, @@ -31538,57 +31443,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(841), 1, anon_sym_await, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(945), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1409), 1, + STATE(1369), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1681), 1, sym_expression, - STATE(2410), 1, + STATE(2340), 1, sym_pattern, - STATE(2654), 1, + STATE(2353), 1, + sym_yield, + STATE(2625), 1, sym__patterns, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2790), 1, + STATE(2647), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(829), 2, + ACTIONS(831), 2, anon_sym_match, anon_sym_type, - STATE(1411), 2, + STATE(1370), 2, sym_attribute, sym_subscript, - STATE(2532), 2, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(829), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31596,7 +31502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 14, + STATE(1367), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31611,79 +31517,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 31, - ACTIONS(747), 1, + [3610] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_RPAREN, + ACTIONS(947), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1707), 1, sym_expression, - STATE(2250), 1, + STATE(2382), 1, sym_pattern, - STATE(2251), 1, - sym_yield, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2757), 1, + STATE(2628), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2649), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31691,7 +31596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31706,79 +31611,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3860] = 31, - ACTIONS(747), 1, + [3734] = 30, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(869), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(955), 1, - anon_sym_RPAREN, + ACTIONS(949), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, STATE(1378), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1707), 1, sym_expression, - STATE(2250), 1, + STATE(2382), 1, sym_pattern, - STATE(2251), 1, - sym_yield, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2757), 1, + STATE(2628), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2703), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(1377), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2596), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31786,7 +31690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1365), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31801,76 +31705,170 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3986] = 28, - ACTIONS(9), 1, + [3858] = 30, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(869), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(879), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(632), 1, - sym_list_splat_pattern, - STATE(967), 1, - sym_string, - STATE(970), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(1635), 1, - sym_pattern, - STATE(1637), 1, - sym_pattern_list, - STATE(1827), 1, + STATE(996), 1, + sym_string, + STATE(1378), 1, + sym_list_splat_pattern, + STATE(1713), 1, sym_expression, - STATE(2775), 1, + STATE(2382), 1, + sym_pattern, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2737), 1, + sym__patterns, + STATE(2743), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(413), 2, + ACTIONS(877), 2, anon_sym_match, anon_sym_type, - STATE(641), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(415), 3, + ACTIONS(875), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2558), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, + STATE(1793), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1365), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3982] = 30, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(845), 1, + anon_sym_LPAREN, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(953), 1, + anon_sym_COMMA, + ACTIONS(955), 1, + anon_sym_RBRACE, + STATE(912), 1, + sym_primary_expression, + STATE(971), 1, + sym_string, + STATE(1203), 1, + sym_list_splat_pattern, + STATE(1671), 1, + sym_expression, + STATE(1845), 1, + sym_pair, + STATE(2307), 1, + sym_dictionary_splat, + STATE(2643), 1, + sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2357), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - STATE(1659), 7, + ACTIONS(731), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31878,9 +31876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31894,11 +31894,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(312), 1, + ACTIONS(315), 1, anon_sym_TILDE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(957), 1, sym_identifier, @@ -31910,18 +31910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(971), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1306), 1, + STATE(1352), 1, sym_list_splat_pattern, - STATE(1618), 1, - sym_pattern, - STATE(1621), 1, + STATE(1591), 1, sym_primary_expression, + STATE(1610), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(680), 2, @@ -31930,22 +31930,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(967), 2, anon_sym_match, anon_sym_type, - STATE(1305), 2, + STATE(1353), 2, sym_attribute, sym_subscript, - STATE(1602), 2, + STATE(1592), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(965), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31979,11 +31979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(312), 1, + ACTIONS(315), 1, anon_sym_TILDE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(957), 1, sym_identifier, @@ -31995,18 +31995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(971), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1306), 1, + STATE(1352), 1, sym_list_splat_pattern, - STATE(1618), 1, - sym_pattern, - STATE(1621), 1, + STATE(1591), 1, sym_primary_expression, + STATE(1610), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(680), 2, @@ -32015,22 +32015,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(967), 2, anon_sym_match, anon_sym_type, - STATE(1305), 2, + STATE(1353), 2, sym_attribute, sym_subscript, - STATE(1602), 2, + STATE(1592), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(965), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32064,13 +32064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32086,28 +32086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32115,18 +32115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32134,7 +32134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32152,13 +32152,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4434] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32174,28 +32174,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(993), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32203,18 +32203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32222,7 +32222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32240,13 +32240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4548] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32262,28 +32262,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(995), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32291,18 +32291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32310,7 +32310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32328,13 +32328,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4662] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32350,28 +32350,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(997), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32379,18 +32379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32398,7 +32398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32415,73 +32415,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4776] = 27, - ACTIONS(698), 1, + [4776] = 26, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(999), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1001), 1, - anon_sym_LPAREN, - ACTIONS(1003), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_LBRACK, - ACTIONS(1011), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1015), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(999), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(981), 1, + STATE(1107), 1, sym_string, - STATE(1173), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1768), 1, sym_expression, - STATE(2533), 1, - sym_pattern, - STATE(2746), 1, + STATE(2012), 1, + sym_type, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1007), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1179), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(696), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1005), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2061), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1762), 7, + STATE(2107), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32489,9 +32486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 14, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32504,14 +32503,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4892] = 26, - ACTIONS(779), 1, + [4890] = 26, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32525,30 +32524,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1017), 1, + ACTIONS(1001), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32556,18 +32555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32575,7 +32574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32592,69 +32591,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5006] = 26, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [5004] = 27, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1003), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1005), 1, + anon_sym_LPAREN, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(1013), 1, + anon_sym_LBRACK, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, ACTIONS(1019), 1, - anon_sym_RBRACK, - STATE(979), 1, + anon_sym_await, + STATE(909), 1, sym_primary_expression, - STATE(1069), 1, + STATE(975), 1, sym_string, - STATE(1447), 1, + STATE(1139), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1737), 1, sym_expression, - STATE(2092), 1, - sym_type, - STATE(2611), 1, + STATE(2500), 1, + sym_pattern, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1011), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(1140), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1009), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, + STATE(2009), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, STATE(1767), 7, sym_named_expression, sym_as_pattern, @@ -32663,11 +32665,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1172), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32681,13 +32681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5120] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32703,28 +32703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(1021), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32732,18 +32732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32751,7 +32751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32769,13 +32769,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5234] = 26, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -32791,28 +32791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(1023), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32820,18 +32820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32839,7 +32839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32863,31 +32863,31 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(863), 1, anon_sym_yield, - ACTIONS(999), 1, + ACTIONS(1003), 1, sym_identifier, - ACTIONS(1001), 1, + ACTIONS(1005), 1, anon_sym_LPAREN, - ACTIONS(1003), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1013), 1, anon_sym_LBRACK, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1015), 1, + ACTIONS(1019), 1, anon_sym_await, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1173), 1, + STATE(1139), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1737), 1, sym_expression, - STATE(2533), 1, + STATE(2500), 1, sym_pattern, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32895,20 +32895,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1007), 2, + ACTIONS(1011), 2, anon_sym_match, anon_sym_type, - STATE(1179), 2, + STATE(1140), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1005), 3, + ACTIONS(1009), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -32917,12 +32917,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2066), 4, + STATE(1997), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1762), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32930,7 +32930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 14, + STATE(1172), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32945,156 +32945,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5464] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, + [5464] = 27, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, ACTIONS(1025), 1, sym_identifier, ACTIONS(1027), 1, - anon_sym_STAR, - ACTIONS(1033), 1, - anon_sym_STAR_STAR, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - STATE(963), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1413), 1, - sym_list_splat_pattern, - STATE(1737), 1, - sym_expression, - STATE(1955), 1, - sym_type, - STATE(2691), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1954), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1380), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [5575] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1029), 1, anon_sym_RPAREN, - ACTIONS(1047), 1, + ACTIONS(1031), 1, anon_sym_COMMA, - ACTIONS(1049), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1039), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1879), 1, sym_expression, - STATE(2397), 1, + STATE(2325), 1, sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2394), 3, + STATE(2323), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33102,7 +33016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33119,14 +33033,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5690] = 25, - ACTIONS(779), 1, + [5579] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -33140,28 +33054,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(1946), 1, + STATE(2012), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33169,18 +33083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33188,7 +33102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33205,154 +33119,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5801] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(975), 1, + [5690] = 25, + ACTIONS(275), 1, sym_identifier, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - STATE(979), 1, - sym_primary_expression, - STATE(1069), 1, - sym_string, - STATE(1447), 1, - sym_list_splat_pattern, - STATE(1757), 1, - sym_expression, - STATE(1999), 1, - sym_type, - STATE(2611), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2011), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1767), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1448), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [5912] = 25, - ACTIONS(67), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(649), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1063), 1, - anon_sym_STAR_STAR, - STATE(860), 1, + ACTIONS(1049), 1, + anon_sym_not, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1761), 1, sym_expression, - STATE(1897), 1, + STATE(2449), 1, sym_type, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1899), 5, + STATE(2016), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33360,7 +33188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33377,16 +33205,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6023] = 25, + [5801] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -33394,40 +33222,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1761), 1, sym_expression, - STATE(2294), 1, + STATE(2484), 1, sym_type, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, @@ -33438,7 +33266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33446,7 +33274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33463,68 +33291,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6134] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, + [5912] = 28, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(977), 1, + ACTIONS(827), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(1055), 1, + anon_sym_RPAREN, + ACTIONS(1061), 1, anon_sym_await, - STATE(979), 1, + STATE(963), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1015), 1, sym_string, - STATE(1447), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1694), 1, sym_expression, - STATE(1997), 1, - sym_type, - STATE(2611), 1, + STATE(2298), 1, + sym_yield, + STATE(2423), 1, + sym_with_item, + STATE(2613), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1767), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33532,7 +33363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33549,68 +33380,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6245] = 25, - ACTIONS(757), 1, + [6029] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1033), 1, + ACTIONS(983), 1, anon_sym_STAR_STAR, - ACTIONS(1035), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(963), 1, + STATE(976), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1107), 1, sym_string, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1768), 1, sym_expression, - STATE(1986), 1, + STATE(1922), 1, sym_type, - STATE(2691), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1954), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33618,7 +33449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33635,16 +33466,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6356] = 25, + [6140] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -33652,40 +33483,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1761), 1, sym_expression, - STATE(2302), 1, + STATE(2085), 1, sym_type, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, @@ -33696,7 +33527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33704,7 +33535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33721,70 +33552,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6467] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [6251] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1063), 1, + sym_identifier, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1069), 1, - anon_sym_RPAREN, - ACTIONS(1071), 1, - anon_sym_COMMA, - STATE(965), 1, + STATE(865), 1, sym_primary_expression, - STATE(1003), 1, + STATE(969), 1, sym_string, - STATE(1264), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1738), 1, sym_expression, - STATE(2434), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(1994), 1, + sym_type, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2437), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1894), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33792,7 +33621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33809,70 +33638,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6582] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [6362] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1073), 1, - anon_sym_RPAREN, - ACTIONS(1075), 1, - anon_sym_COMMA, - STATE(965), 1, + ACTIONS(1049), 1, + anon_sym_not, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1761), 1, sym_expression, - STATE(2370), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2262), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1053), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2369), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33880,7 +33707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33897,70 +33724,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6697] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [6473] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1077), 1, - anon_sym_RPAREN, - ACTIONS(1079), 1, - anon_sym_COMMA, - STATE(965), 1, + ACTIONS(1049), 1, + anon_sym_not, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1761), 1, sym_expression, - STATE(2266), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(1995), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1053), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2265), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33968,7 +33793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33985,68 +33810,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6812] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, + [6584] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, + ACTIONS(1063), 1, + sym_identifier, ACTIONS(1065), 1, anon_sym_STAR, ACTIONS(1067), 1, - anon_sym_not, - STATE(968), 1, + anon_sym_STAR_STAR, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1738), 1, sym_expression, - STATE(2470), 1, + STATE(1972), 1, sym_type, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1894), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34054,7 +33879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34071,7 +33896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6923] = 25, + [6695] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -34086,23 +33911,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1059), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1063), 1, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1738), 1, sym_expression, - STATE(2067), 1, + STATE(1974), 1, sym_type, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34126,13 +33951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1899), 5, + STATE(1894), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34140,7 +33965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34157,61 +33982,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7034] = 22, - ACTIONS(307), 1, + [6806] = 25, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(312), 1, - anon_sym_TILDE, - ACTIONS(324), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1081), 1, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1069), 1, sym_identifier, - ACTIONS(1083), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, + ACTIONS(1071), 1, anon_sym_STAR, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1077), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, anon_sym_await, - STATE(1033), 1, + STATE(967), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1467), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1594), 1, - sym_primary_expression, - STATE(1643), 1, - sym_pattern, + STATE(1724), 1, + sym_expression, + STATE(1981), 1, + sym_type, + STATE(2638), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1089), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - STATE(1468), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1087), 3, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1945), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34224,86 +34068,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(973), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7139] = 27, - ACTIONS(743), 1, + [6917] = 25, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1041), 1, + ACTIONS(1069), 1, sym_identifier, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(1071), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1077), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1095), 1, - anon_sym_RPAREN, - ACTIONS(1097), 1, - anon_sym_COMMA, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1724), 1, sym_expression, - STATE(2239), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2108), 1, + sym_type, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2399), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1945), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34311,7 +34137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34328,68 +34154,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7254] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, + [7028] = 27, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(341), 1, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1029), 1, + anon_sym_RPAREN, + ACTIONS(1031), 1, + anon_sym_COMMA, + ACTIONS(1039), 1, anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_not, - STATE(968), 1, + ACTIONS(1089), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1015), 1, sym_string, - STATE(1269), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1677), 1, sym_expression, - STATE(2310), 1, - sym_type, - STATE(2711), 1, + STATE(2325), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1087), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1085), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2323), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1720), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34397,7 +34225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34414,14 +34242,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7365] = 25, - ACTIONS(779), 1, + [7143] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -34435,28 +34263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(2092), 1, + STATE(2060), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -34464,18 +34292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34483,7 +34311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34500,70 +34328,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7476] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [7254] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1099), 1, - anon_sym_RPAREN, - ACTIONS(1101), 1, - anon_sym_COMMA, - STATE(965), 1, + ACTIONS(1049), 1, + anon_sym_not, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1690), 1, + STATE(1761), 1, sym_expression, - STATE(2463), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2442), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1053), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2462), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34571,7 +34397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34588,68 +34414,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7591] = 25, - ACTIONS(67), 1, + [7365] = 27, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1083), 1, anon_sym_STAR, - ACTIONS(1063), 1, - anon_sym_STAR_STAR, - STATE(860), 1, + ACTIONS(1089), 1, + anon_sym_await, + ACTIONS(1091), 1, + anon_sym_RPAREN, + ACTIONS(1093), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(967), 1, + STATE(1015), 1, sym_string, - STATE(1118), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1682), 1, sym_expression, - STATE(1896), 1, - sym_type, - STATE(2775), 1, + STATE(2466), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2465), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1899), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1659), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34657,7 +34485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34674,70 +34502,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7702] = 27, - ACTIONS(743), 1, + [7480] = 25, + ACTIONS(686), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1041), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1049), 1, - anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1103), 1, - anon_sym_RPAREN, + ACTIONS(1097), 1, + anon_sym_from, ACTIONS(1105), 1, - anon_sym_COMMA, - STATE(965), 1, + anon_sym_await, + STATE(909), 1, sym_primary_expression, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1264), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1732), 1, sym_expression, - STATE(2362), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2001), 1, + sym_expression_list, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2361), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + ACTIONS(1099), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34745,7 +34571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34762,80 +34588,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7817] = 25, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [7591] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(315), 1, + anon_sym_TILDE, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, ACTIONS(1107), 1, sym_identifier, ACTIONS(1109), 1, - anon_sym_from, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_STAR, ACTIONS(1117), 1, + anon_sym_LBRACK, + ACTIONS(1119), 1, anon_sym_await, - STATE(946), 1, - sym_primary_expression, - STATE(981), 1, + STATE(1010), 1, sym_string, - STATE(1183), 1, + STATE(1481), 1, sym_list_splat_pattern, - STATE(1728), 1, - sym_expression, - STATE(2085), 1, - sym_expression_list, - STATE(2746), 1, - sym__named_expression_lhs, + STATE(1616), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, + ACTIONS(680), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, + STATE(1482), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1111), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1762), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1208), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34848,80 +34655,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7928] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(959), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7696] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(315), 1, + anon_sym_TILDE, + ACTIONS(327), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(1107), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_STAR_STAR, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1117), 1, + anon_sym_LBRACK, + ACTIONS(1119), 1, anon_sym_await, - STATE(979), 1, - sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1481), 1, sym_list_splat_pattern, - STATE(1757), 1, - sym_expression, - STATE(1923), 1, - sym_type, - STATE(2611), 1, - sym__named_expression_lhs, + STATE(1616), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(789), 3, + ACTIONS(680), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(1482), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1767), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34934,16 +34738,32 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8039] = 25, + ACTIONS(973), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7801] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -34951,40 +34771,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1761), 1, sym_expression, - STATE(2065), 1, + STATE(2293), 1, sym_type, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, @@ -34995,7 +34815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35003,7 +34823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35020,42 +34840,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8150] = 27, + [7912] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(1039), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, - anon_sym_RPAREN, - ACTIONS(1079), 1, - anon_sym_COMMA, - ACTIONS(1119), 1, - sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1089), 1, anon_sym_await, + ACTIONS(1121), 1, + anon_sym_RPAREN, + ACTIONS(1123), 1, + anon_sym_COMMA, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1687), 1, sym_expression, - STATE(2266), 1, + STATE(2274), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35063,27 +34883,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2265), 3, + STATE(2273), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35091,7 +34911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35108,68 +34928,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8265] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [8027] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, - anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - STATE(968), 1, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1069), 1, + sym_identifier, + ACTIONS(1071), 1, + anon_sym_STAR, + ACTIONS(1077), 1, + anon_sym_STAR_STAR, + ACTIONS(1079), 1, + anon_sym_await, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1724), 1, sym_expression, - STATE(2486), 1, + STATE(1957), 1, sym_type, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1945), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35177,7 +34997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35194,68 +35014,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8376] = 25, - ACTIONS(779), 1, + [8138] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(975), 1, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1069), 1, sym_identifier, - ACTIONS(977), 1, + ACTIONS(1071), 1, anon_sym_STAR, - ACTIONS(983), 1, + ACTIONS(1077), 1, anon_sym_STAR_STAR, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(979), 1, + STATE(967), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1724), 1, sym_expression, - STATE(1940), 1, + STATE(1960), 1, sym_type, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(1945), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35263,7 +35083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35280,68 +35100,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8487] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, + [8249] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, + ACTIONS(1063), 1, + sym_identifier, ACTIONS(1065), 1, anon_sym_STAR, ACTIONS(1067), 1, - anon_sym_not, - STATE(968), 1, + anon_sym_STAR_STAR, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1738), 1, sym_expression, - STATE(2488), 1, + STATE(1979), 1, sym_type, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(1894), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35349,7 +35169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35366,38 +35186,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8598] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, + [8360] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, - anon_sym_STAR, - ACTIONS(1033), 1, - anon_sym_STAR_STAR, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, + anon_sym_STAR, + ACTIONS(1089), 1, anon_sym_await, + ACTIONS(1125), 1, + anon_sym_RPAREN, + ACTIONS(1127), 1, + anon_sym_COMMA, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1693), 1, sym_expression, - STATE(2063), 1, - sym_type, - STATE(2691), 1, + STATE(2317), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35405,29 +35229,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2316), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1954), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35435,7 +35257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35452,68 +35274,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8709] = 25, - ACTIONS(67), 1, + [8475] = 27, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1083), 1, anon_sym_STAR, - ACTIONS(1063), 1, - anon_sym_STAR_STAR, - STATE(860), 1, + ACTIONS(1089), 1, + anon_sym_await, + ACTIONS(1129), 1, + anon_sym_RPAREN, + ACTIONS(1131), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(967), 1, + STATE(1015), 1, sym_string, - STATE(1118), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1698), 1, sym_expression, - STATE(1926), 1, - sym_type, - STATE(2775), 1, + STATE(2355), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2354), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1899), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1659), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35521,7 +35345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35538,68 +35362,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8820] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, + [8590] = 27, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(341), 1, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_STAR_STAR, - ACTIONS(668), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_not, - STATE(968), 1, + ACTIONS(1089), 1, + anon_sym_await, + ACTIONS(1133), 1, + anon_sym_RPAREN, + ACTIONS(1135), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1015), 1, sym_string, - STATE(1269), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1702), 1, sym_expression, - STATE(2292), 1, - sym_type, - STATE(2711), 1, + STATE(2389), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1087), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1085), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2388), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1720), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35607,7 +35433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35624,61 +35450,82 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8931] = 22, - ACTIONS(307), 1, + [8705] = 27, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(312), 1, - anon_sym_TILDE, - ACTIONS(324), 1, + ACTIONS(775), 1, sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, + anon_sym_LPAREN, ACTIONS(1081), 1, sym_identifier, ACTIONS(1083), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, + ACTIONS(1089), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(1137), 1, + anon_sym_RPAREN, + ACTIONS(1139), 1, + anon_sym_COMMA, + STATE(963), 1, + sym_primary_expression, + STATE(1015), 1, sym_string, - STATE(1467), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1594), 1, - sym_primary_expression, - STATE(1643), 1, - sym_pattern, + STATE(1708), 1, + sym_expression, + STATE(2370), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1089), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, - STATE(1468), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1087), 3, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + STATE(2336), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1806), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -35691,30 +35538,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(959), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [9036] = 25, - ACTIONS(779), 1, + [8820] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(975), 1, sym_identifier, @@ -35728,28 +35559,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1768), 1, sym_expression, - STATE(1968), 1, + STATE(1958), 1, sym_type, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -35757,18 +35588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2011), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35776,7 +35607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35793,68 +35624,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9147] = 25, - ACTIONS(757), 1, + [8931] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1033), 1, + ACTIONS(983), 1, anon_sym_STAR_STAR, - ACTIONS(1035), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(963), 1, + STATE(976), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1107), 1, sym_string, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1768), 1, sym_expression, - STATE(1903), 1, + STATE(1985), 1, sym_type, - STATE(2691), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1954), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35862,7 +35693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35879,68 +35710,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9258] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(341), 1, - anon_sym_STAR_STAR, - ACTIONS(668), 1, + [9042] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(975), 1, + sym_identifier, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, anon_sym_not, - STATE(968), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, + anon_sym_await, + STATE(976), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1107), 1, sym_string, - STATE(1269), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1768), 1, sym_expression, - STATE(2483), 1, + STATE(1904), 1, sym_type, - STATE(2711), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2016), 5, + STATE(2107), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35948,7 +35779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35965,71 +35796,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9369] = 28, - ACTIONS(743), 1, + [9153] = 27, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1043), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_RPAREN, - ACTIONS(1139), 1, + ACTIONS(1083), 1, + anon_sym_STAR, + ACTIONS(1089), 1, anon_sym_await, - STATE(965), 1, + ACTIONS(1141), 1, + anon_sym_RPAREN, + ACTIONS(1143), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1692), 1, sym_expression, - STATE(2282), 1, - sym_yield, - STATE(2347), 1, - sym_with_item, - STATE(2614), 1, + STATE(2448), 1, + sym_parenthesized_list_splat, + STATE(2771), 1, sym__named_expression_lhs, - STATE(2720), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1087), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1085), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2447), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36037,7 +35867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36054,70 +35884,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9486] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [9268] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_await, - ACTIONS(1141), 1, - anon_sym_RPAREN, - ACTIONS(1143), 1, - anon_sym_COMMA, - STATE(965), 1, + ACTIONS(1049), 1, + anon_sym_not, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1761), 1, sym_expression, - STATE(2490), 1, - sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2437), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1053), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1051), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2491), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36125,7 +35953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36142,16 +35970,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9601] = 25, + [9379] = 25, ACTIONS(275), 1, sym_identifier, - ACTIONS(307), 1, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(341), 1, anon_sym_STAR_STAR, @@ -36159,40 +35987,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1761), 1, sym_expression, - STATE(2072), 1, + STATE(2440), 1, sym_type, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, @@ -36203,7 +36031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_constrained_type, sym_member_type, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36211,7 +36039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36228,69 +36056,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9712] = 27, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [9490] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(341), 1, + anon_sym_STAR_STAR, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1047), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_await, - ACTIONS(1145), 1, - anon_sym_RPAREN, - STATE(965), 1, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1761), 1, sym_expression, - STATE(2414), 1, - sym_yield, - STATE(2614), 1, + STATE(2441), 1, + sym_type, + STATE(2775), 1, sym__named_expression_lhs, - STATE(2615), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1137), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(2016), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36298,7 +36125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36315,40 +36142,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9826] = 26, + [9601] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, ACTIONS(809), 1, anon_sym_LBRACK, ACTIONS(813), 1, anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(975), 1, + sym_identifier, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(983), 1, + anon_sym_STAR_STAR, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, - anon_sym_RBRACK, - ACTIONS(1157), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(964), 1, + STATE(976), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1768), 1, sym_expression, - STATE(2670), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2061), 1, + sym_type, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36356,27 +36181,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(2107), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36384,7 +36211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36401,69 +36228,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9938] = 27, - ACTIONS(743), 1, + [9712] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1159), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1921), 1, sym_expression, - STATE(2460), 1, - sym_yield, - STATE(2614), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2686), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36471,7 +36297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36488,63 +36314,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10052] = 26, - ACTIONS(765), 1, + [9824] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1161), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -36557,7 +36383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36574,40 +36400,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10164] = 26, + [9936] = 28, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1163), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1686), 1, sym_expression, - STATE(2508), 1, + STATE(2264), 1, + sym_yield, + STATE(2314), 1, + sym_list_splat, + STATE(2315), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2700), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36615,27 +36447,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36643,7 +36471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36660,40 +36488,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10276] = 26, + [10052] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1165), 1, + ACTIONS(1055), 1, anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_await, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1676), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2298), 1, + sym_yield, + STATE(2613), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36701,27 +36531,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36729,7 +36558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36746,63 +36575,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10388] = 26, - ACTIONS(765), 1, + [10166] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -36815,7 +36644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36832,70 +36661,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10500] = 28, - ACTIONS(743), 1, + [10278] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1921), 1, sym_expression, - STATE(2253), 1, - sym_list_splat, - STATE(2254), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2494), 1, - sym_yield, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2774), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36903,7 +36730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36920,63 +36747,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10616] = 26, - ACTIONS(765), 1, + [10390] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1155), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -36989,7 +36816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37006,40 +36833,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10728] = 26, + [10502] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1697), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2344), 1, + sym_yield, + STATE(2652), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37047,27 +36876,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37075,7 +36903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37092,68 +36920,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10840] = 26, - ACTIONS(809), 1, + [10616] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(1147), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1157), 1, - anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1167), 1, anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1169), 1, + anon_sym_await, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1307), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1711), 1, sym_expression, - STATE(2674), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2704), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2378), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(799), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37161,7 +36989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37178,40 +37006,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10952] = 26, + [10728] = 28, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1680), 1, sym_expression, - STATE(2508), 1, + STATE(2379), 1, + sym_list_splat, + STATE(2381), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2443), 1, + sym_yield, + STATE(2631), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37219,27 +37053,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37247,7 +37077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37264,63 +37094,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11064] = 26, - ACTIONS(765), 1, + [10844] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1179), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -37333,7 +37163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37350,70 +37180,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11176] = 28, - ACTIONS(743), 1, + [10956] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1921), 1, sym_expression, - STATE(2253), 1, - sym_list_splat, - STATE(2254), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2436), 1, - sym_yield, - STATE(2602), 1, - sym__collection_elements, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37421,7 +37249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37438,63 +37266,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11292] = 26, - ACTIONS(765), 1, + [11068] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -37507,7 +37335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37524,68 +37352,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11404] = 26, - ACTIONS(809), 1, + [11180] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1179), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1921), 1, sym_expression, - STATE(2640), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37593,7 +37421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37610,69 +37438,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11516] = 27, - ACTIONS(743), 1, + [11292] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1921), 1, sym_expression, - STATE(2340), 1, - sym_yield, - STATE(2614), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2682), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37680,7 +37507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37697,40 +37524,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11630] = 26, + [11404] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1688), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2242), 1, + sym_yield, + STATE(2736), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37738,27 +37567,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37766,7 +37594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37783,69 +37611,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11742] = 27, - ACTIONS(743), 1, + [11518] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1161), 1, + anon_sym_LPAREN, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1191), 1, - anon_sym_RPAREN, + ACTIONS(1185), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, - STATE(1264), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1714), 1, sym_expression, - STATE(2251), 1, - sym_yield, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2757), 1, + STATE(2661), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37853,7 +37680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37870,14 +37697,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11856] = 26, - ACTIONS(809), 1, + [11630] = 28, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -37885,53 +37712,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1193), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1157), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1697), 1, sym_expression, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2740), 1, + STATE(2344), 1, + sym_yield, + STATE(2434), 1, + sym_list_splat, + STATE(2435), 1, + sym_parenthesized_list_splat, + STATE(2652), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37939,7 +37768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37956,70 +37785,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11968] = 28, - ACTIONS(743), 1, + [11746] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1159), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1921), 1, sym_expression, - STATE(2291), 1, - sym_list_splat, - STATE(2304), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2460), 1, - sym_yield, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2686), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38027,7 +37854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38044,63 +37871,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12084] = 26, - ACTIONS(765), 1, + [11858] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -38113,7 +37940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38130,70 +37957,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12196] = 28, - ACTIONS(743), 1, + [11970] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1145), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1921), 1, sym_expression, - STATE(2414), 1, - sym_yield, - STATE(2418), 1, - sym_list_splat, - STATE(2492), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2615), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38201,7 +38026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38218,63 +38043,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12312] = 26, - ACTIONS(765), 1, + [12082] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -38287,7 +38112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38304,68 +38129,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12424] = 26, - ACTIONS(809), 1, + [12194] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1199), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1195), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1921), 1, sym_expression, - STATE(2647), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38373,7 +38198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38390,14 +38215,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12536] = 26, - ACTIONS(809), 1, + [12306] = 27, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -38405,53 +38230,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1201), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1197), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1701), 1, sym_expression, - STATE(2690), 1, - sym__named_expression_lhs, - STATE(2790), 1, + STATE(2377), 1, + sym_yield, + STATE(2601), 1, sym__collection_elements, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38459,7 +38285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38476,69 +38302,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12648] = 27, - ACTIONS(743), 1, + [12420] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_RPAREN, - ACTIONS(1139), 1, + ACTIONS(1161), 1, + anon_sym_LPAREN, + ACTIONS(1169), 1, anon_sym_await, + ACTIONS(1199), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, - STATE(1264), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1705), 1, sym_expression, - STATE(2282), 1, - sym_yield, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, - STATE(2720), 1, + STATE(2664), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38546,7 +38371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38563,69 +38388,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12762] = 27, - ACTIONS(743), 1, + [12532] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1921), 1, sym_expression, - STATE(2494), 1, - sym_yield, - STATE(2614), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2774), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38633,7 +38457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38650,63 +38474,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12876] = 26, - ACTIONS(765), 1, + [12644] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -38719,7 +38543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38736,68 +38560,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12988] = 26, - ACTIONS(809), 1, + [12756] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1045), 1, anon_sym_await, ACTIONS(1205), 1, - anon_sym_RBRACK, - STATE(964), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1711), 1, + STATE(1921), 1, sym_expression, - STATE(2616), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38805,7 +38629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38822,63 +38646,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13100] = 26, - ACTIONS(765), 1, + [12868] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -38891,7 +38715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38908,40 +38732,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13212] = 26, + [12980] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1209), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1680), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2443), 1, + sym_yield, + STATE(2631), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38949,27 +38775,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38977,7 +38802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38994,68 +38819,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13324] = 26, - ACTIONS(765), 1, + [13094] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(873), 1, + anon_sym_STAR, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1211), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1209), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1709), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2654), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2378), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39063,7 +38888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39080,68 +38905,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13436] = 26, + [13206] = 28, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1691), 1, sym_expression, - STATE(2508), 1, + STATE(2303), 1, + sym_yield, + STATE(2314), 1, + sym_list_splat, + STATE(2315), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, + STATE(2782), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39149,7 +38976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39166,63 +38993,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13548] = 26, - ACTIONS(765), 1, + [13322] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -39235,7 +39062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39252,63 +39079,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13660] = 26, - ACTIONS(765), 1, + [13434] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -39321,7 +39148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39338,63 +39165,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13772] = 26, - ACTIONS(765), 1, + [13546] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -39407,7 +39234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39424,69 +39251,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13884] = 27, - ACTIONS(743), 1, + [13658] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1921), 1, sym_expression, - STATE(2450), 1, - sym_yield, - STATE(2614), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2681), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39494,7 +39320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39511,68 +39337,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13998] = 26, - ACTIONS(765), 1, + [13770] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(873), 1, + anon_sym_STAR, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1223), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1221), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1707), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2628), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2378), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39580,7 +39406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39597,14 +39423,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14110] = 26, - ACTIONS(809), 1, + [13882] = 27, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(827), 1, anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, @@ -39612,53 +39438,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1225), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1211), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1691), 1, sym_expression, - STATE(2645), 1, - sym__collection_elements, - STATE(2690), 1, + STATE(2303), 1, + sym_yield, + STATE(2771), 1, sym__named_expression_lhs, + STATE(2782), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2391), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39666,7 +39493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39683,68 +39510,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14222] = 26, - ACTIONS(765), 1, + [13996] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(873), 1, + anon_sym_STAR, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1227), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1223), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1673), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2604), 1, + sym__collection_elements, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2378), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39752,7 +39579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39769,63 +39596,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14334] = 26, - ACTIONS(765), 1, + [14108] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -39838,7 +39665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39855,70 +39682,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14446] = 28, - ACTIONS(743), 1, + [14220] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1921), 1, sym_expression, - STATE(2340), 1, - sym_yield, - STATE(2418), 1, - sym_list_splat, - STATE(2492), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2682), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39926,7 +39751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39943,63 +39768,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14562] = 26, - ACTIONS(765), 1, + [14332] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -40012,7 +39837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40029,63 +39854,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14674] = 26, - ACTIONS(765), 1, + [14444] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -40098,7 +39923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40115,40 +39940,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14786] = 26, + [14556] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1686), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2264), 1, + sym_yield, + STATE(2700), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40156,27 +39983,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40184,7 +40010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40201,68 +40027,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14898] = 26, - ACTIONS(765), 1, + [14670] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(873), 1, + anon_sym_STAR, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1237), 1, - anon_sym_RPAREN, - STATE(963), 1, + ACTIONS(1233), 1, + anon_sym_RBRACK, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1712), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2792), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2378), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40270,7 +40096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40287,63 +40113,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15010] = 26, - ACTIONS(765), 1, + [14782] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -40356,7 +40182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40373,70 +40199,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15122] = 28, - ACTIONS(743), 1, + [14894] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1921), 1, sym_expression, - STATE(2291), 1, - sym_list_splat, - STATE(2304), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2450), 1, - sym_yield, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2681), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40444,7 +40268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40461,63 +40285,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15238] = 26, - ACTIONS(765), 1, + [15006] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -40530,7 +40354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40547,63 +40371,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15350] = 26, - ACTIONS(765), 1, + [15118] = 26, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1921), 1, sym_expression, - STATE(2508), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -40616,7 +40440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40633,40 +40457,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15462] = 26, + [15230] = 27, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1681), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2353), 1, + sym_yield, + STATE(2647), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40674,27 +40500,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2345), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40702,7 +40527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40719,69 +40544,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15574] = 27, - ACTIONS(743), 1, + [15344] = 26, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(873), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(1043), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1161), 1, + anon_sym_LPAREN, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1181), 1, - anon_sym_RPAREN, + ACTIONS(1245), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, - STATE(1264), 1, + STATE(1360), 1, sym_list_splat_pattern, STATE(1713), 1, sym_expression, - STATE(2436), 1, - sym_yield, - STATE(2602), 1, - sym__collection_elements, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, + STATE(2743), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2247), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + STATE(2378), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40789,7 +40613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40806,40 +40630,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15688] = 26, + [15456] = 28, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(827), 1, + anon_sym_STAR, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1121), 1, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1129), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1247), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1688), 1, sym_expression, - STATE(2508), 1, + STATE(2242), 1, + sym_yield, + STATE(2434), 1, + sym_list_splat, + STATE(2435), 1, sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2736), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40847,27 +40677,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40875,7 +40701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40892,36 +40718,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15800] = 25, - ACTIONS(711), 1, - anon_sym_LPAREN, + [15572] = 26, ACTIONS(719), 1, anon_sym_LBRACK, ACTIONS(723), 1, anon_sym_LBRACE, ACTIONS(729), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(859), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, anon_sym_STAR, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(1255), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - STATE(904), 1, + ACTIONS(1045), 1, + anon_sym_await, + ACTIONS(1247), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(982), 1, + STATE(1028), 1, sym_string, - STATE(1212), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1921), 1, sym_expression, - STATE(2605), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40929,29 +40759,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1035), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40959,7 +40787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40976,66 +40804,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15909] = 25, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, + [15684] = 28, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, + ACTIONS(827), 1, + anon_sym_STAR, ACTIONS(835), 1, anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1257), 1, - anon_sym_STAR, - ACTIONS(1259), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1197), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1701), 1, sym_expression, - STATE(2690), 1, + STATE(2377), 1, + sym_yield, + STATE(2379), 1, + sym_list_splat, + STATE(2381), 1, + sym_parenthesized_list_splat, + STATE(2601), 1, + sym__collection_elements, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1151), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1057), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(799), 4, + anon_sym_exec, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41043,7 +40875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41060,64 +40892,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16018] = 23, - ACTIONS(686), 1, + [15800] = 25, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1061), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1249), 1, + anon_sym_RPAREN, + ACTIONS(1251), 1, + anon_sym_STAR, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(981), 1, + STATE(1015), 1, sym_string, - STATE(1183), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1783), 1, sym_expression, - STATE(2746), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1057), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + STATE(2105), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, - anon_sym_print, + ACTIONS(1253), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, + anon_sym_for, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1261), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1762), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41125,7 +40959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41142,14 +40976,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16123] = 25, - ACTIONS(787), 1, + [15909] = 25, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(839), 1, + ACTIONS(887), 1, anon_sym_yield, ACTIONS(987), 1, anon_sym_not, @@ -41157,34 +40991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1267), 1, + ACTIONS(1261), 1, anon_sym_STAR, - ACTIONS(1269), 1, + ACTIONS(1263), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1944), 1, sym_expression, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -41192,16 +41026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2549), 3, + STATE(2560), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41209,7 +41043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41226,116 +41060,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16232] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [16018] = 23, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, - sym_primary_expression, - STATE(1269), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(320), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [16329] = 25, ACTIONS(694), 1, anon_sym_LBRACK, ACTIONS(698), 1, anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1011), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, - anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_RBRACE, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1183), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1762), 1, sym_expression, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41343,27 +41095,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2510), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + ACTIONS(1265), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41371,7 +41125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41388,66 +41142,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16438] = 25, - ACTIONS(711), 1, + [16123] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1271), 1, + anon_sym_RBRACK, + ACTIONS(1273), 1, anon_sym_lambda, - ACTIONS(1279), 1, - anon_sym_RBRACE, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1802), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1163), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(1998), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1269), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41455,7 +41209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41472,61 +41226,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16547] = 25, - ACTIONS(787), 1, + [16232] = 25, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_yield, - ACTIONS(987), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1095), 1, + sym_identifier, + ACTIONS(1105), 1, anon_sym_await, ACTIONS(1263), 1, - sym_identifier, - ACTIONS(1265), 1, + anon_sym_RBRACE, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1267), 1, + ACTIONS(1277), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_RBRACK, - STATE(979), 1, + STATE(909), 1, sym_primary_expression, - STATE(1069), 1, + STATE(975), 1, sym_string, - STATE(1447), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1902), 1, sym_expression, - STATE(2611), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2549), 3, + STATE(2509), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(777), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, @@ -41539,7 +41293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41556,66 +41310,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16656] = 25, - ACTIONS(694), 1, + [16341] = 25, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1025), 1, sym_identifier, - ACTIONS(1117), 1, - anon_sym_await, - ACTIONS(1269), 1, - anon_sym_RBRACE, - ACTIONS(1271), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1033), 1, anon_sym_STAR, - STATE(946), 1, + ACTIONS(1039), 1, + anon_sym_STAR_STAR, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1045), 1, + anon_sym_await, + STATE(967), 1, sym_primary_expression, - STATE(981), 1, + STATE(1028), 1, sym_string, - STATE(1183), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1921), 1, sym_expression, - STATE(2746), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1037), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2510), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41623,7 +41377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41640,66 +41394,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16765] = 25, - ACTIONS(733), 1, + [16450] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_RPAREN, - ACTIONS(1283), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1287), 1, + ACTIONS(1273), 1, anon_sym_lambda, + ACTIONS(1281), 1, + anon_sym_RBRACK, STATE(965), 1, sym_primary_expression, - STATE(1003), 1, + STATE(996), 1, sym_string, - STATE(1264), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1802), 1, sym_expression, - STATE(2614), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1135), 2, + ACTIONS(1163), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1137), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2018), 2, + STATE(1998), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1279), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41707,7 +41461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41724,38 +41478,36 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16874] = 25, + [16559] = 25, + ACTIONS(755), 1, + anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_RPAREN, - ACTIONS(1289), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1291), 1, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, + ACTIONS(1255), 1, + anon_sym_lambda, + ACTIONS(1281), 1, + anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1783), 1, sym_expression, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41763,27 +41515,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1057), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2105), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, - anon_sym_print, + ACTIONS(1279), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(755), 4, + anon_sym_for, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41791,7 +41545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41808,66 +41562,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16983] = 25, - ACTIONS(733), 1, + [16668] = 25, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1279), 1, - anon_sym_RPAREN, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1287), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + ACTIONS(1283), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1783), 1, sym_expression, - STATE(2614), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1135), 2, + ACTIONS(1057), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1137), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - STATE(2018), 2, + STATE(2105), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41875,7 +41629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41892,66 +41646,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17092] = 25, - ACTIONS(711), 1, + [16777] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, ACTIONS(1249), 1, + anon_sym_RBRACK, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1273), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACE, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1802), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(851), 2, + ACTIONS(1163), 2, anon_sym_print, anon_sym_exec, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(1998), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1253), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41959,7 +41713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41976,66 +41730,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17201] = 25, - ACTIONS(801), 1, + [16886] = 25, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(835), 1, anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1259), 1, + ACTIONS(1255), 1, anon_sym_lambda, - ACTIONS(1295), 1, - anon_sym_RBRACK, - STATE(964), 1, + ACTIONS(1271), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1783), 1, sym_expression, - STATE(2690), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1151), 2, + ACTIONS(1057), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, + STATE(2105), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1293), 3, + ACTIONS(1269), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42043,7 +41797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42060,57 +41814,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17310] = 25, + [16995] = 25, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(1283), 1, - anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_RBRACE, ACTIONS(1287), 1, + anon_sym_STAR, + ACTIONS(1289), 1, anon_sym_lambda, - STATE(965), 1, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1264), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1824), 1, sym_expression, - STATE(2614), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1135), 2, + ACTIONS(851), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1137), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(2018), 2, + STATE(2093), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, + ACTIONS(1269), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -42119,7 +41873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42127,7 +41881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42144,14 +41898,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17419] = 25, - ACTIONS(711), 1, + [17104] = 25, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -42159,26 +41913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1281), 1, + anon_sym_RBRACE, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_lambda, - ACTIONS(1295), 1, - anon_sym_RBRACE, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1824), 1, sym_expression, - STATE(2605), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(851), 2, @@ -42187,23 +41941,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(2093), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1293), 3, + ACTIONS(1279), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42211,7 +41965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42228,66 +41982,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17528] = 25, - ACTIONS(801), 1, + [17213] = 25, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1259), 1, + ACTIONS(1289), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACK, - STATE(964), 1, + STATE(912), 1, sym_primary_expression, - STATE(1022), 1, + STATE(971), 1, sym_string, - STATE(1307), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1824), 1, sym_expression, - STATE(2690), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1151), 2, + ACTIONS(851), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1153), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, + STATE(2093), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 3, + ACTIONS(1253), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(799), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42295,7 +42049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42312,66 +42066,150 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17637] = 25, - ACTIONS(801), 1, + [17322] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1259), 1, + ACTIONS(1273), 1, anon_sym_lambda, - ACTIONS(1279), 1, + ACTIONS(1283), 1, anon_sym_RBRACK, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1307), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1802), 1, sym_expression, - STATE(2690), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1151), 2, + ACTIONS(1163), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1153), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, + STATE(1998), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(799), 4, + ACTIONS(777), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1793), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1365), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17431] = 25, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1095), 1, + sym_identifier, + ACTIONS(1105), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + anon_sym_STAR, + ACTIONS(1291), 1, + anon_sym_RBRACE, + STATE(909), 1, + sym_primary_expression, + STATE(975), 1, + sym_string, + STATE(1214), 1, + sym_list_splat_pattern, + STATE(1902), 1, + sym_expression, + STATE(2773), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(1103), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1101), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2509), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42379,7 +42217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42396,7 +42234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17746] = 23, + [17540] = 23, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -42405,25 +42243,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1105), 1, anon_sym_await, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1183), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1762), 1, sym_expression, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42431,14 +42269,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -42447,13 +42285,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1297), 5, + ACTIONS(1293), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1762), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42461,7 +42299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42478,61 +42316,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17851] = 25, - ACTIONS(765), 1, + [17645] = 25, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1119), 1, + ACTIONS(1079), 1, + anon_sym_await, + ACTIONS(1263), 1, + anon_sym_RPAREN, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1297), 1, anon_sym_STAR, - ACTIONS(1129), 1, - anon_sym_await, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1936), 1, sym_expression, - STATE(2508), 1, - sym_parenthesized_list_splat, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2511), 3, + STATE(2558), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -42545,7 +42383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42562,57 +42400,135 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17960] = 25, + [17754] = 19, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(319), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(323), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [17851] = 25, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, ACTIONS(1283), 1, - anon_sym_STAR, + anon_sym_RBRACE, ACTIONS(1287), 1, + anon_sym_STAR, + ACTIONS(1289), 1, anon_sym_lambda, - ACTIONS(1295), 1, - anon_sym_RPAREN, - STATE(965), 1, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1264), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1824), 1, sym_expression, - STATE(2614), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1135), 2, + ACTIONS(851), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1137), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(2018), 2, + STATE(2093), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1293), 3, + ACTIONS(1285), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -42621,7 +42537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42629,7 +42545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42646,61 +42562,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18069] = 25, - ACTIONS(765), 1, + [17960] = 25, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(891), 1, + ACTIONS(839), 1, anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1291), 1, anon_sym_RPAREN, - ACTIONS(1289), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1291), 1, + ACTIONS(1297), 1, anon_sym_STAR, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1936), 1, sym_expression, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2558), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -42713,7 +42629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42730,64 +42646,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18178] = 24, - ACTIONS(765), 1, + [18069] = 25, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(891), 1, + ACTIONS(887), 1, anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1121), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1291), 1, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1291), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1107), 1, sym_string, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1944), 1, sym_expression, - STATE(2691), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2560), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(755), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42795,7 +42713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42812,60 +42730,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18284] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, + [18178] = 24, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(839), 1, + anon_sym_yield, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1299), 1, - anon_sym_from, - ACTIONS(1301), 1, + ACTIONS(1297), 1, anon_sym_STAR, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1875), 1, + STATE(1936), 1, sym_expression, - STATE(2567), 1, - sym_expression_list, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(1111), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2558), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -42878,7 +42795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42895,65 +42812,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18392] = 25, - ACTIONS(307), 1, + [18284] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1067), 1, - anon_sym_not, + ACTIONS(1301), 1, + anon_sym_from, ACTIONS(1303), 1, - anon_sym_RBRACE, - STATE(968), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1746), 1, sym_expression, - STATE(2711), 1, + STATE(2359), 1, + sym_expression_list, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2569), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1299), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42961,7 +42878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42978,14 +42895,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18500] = 25, - ACTIONS(307), 1, + [18392] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -42997,46 +42914,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, ACTIONS(1305), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43044,7 +42961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43061,14 +42978,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18608] = 25, - ACTIONS(307), 1, + [18500] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43080,46 +42997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, ACTIONS(1307), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43127,7 +43044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43144,14 +43061,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18716] = 25, - ACTIONS(307), 1, + [18608] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43163,46 +43080,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43210,7 +43127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43227,14 +43144,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18824] = 25, - ACTIONS(307), 1, + [18716] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43246,46 +43163,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43293,7 +43210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43310,147 +43227,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18932] = 25, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [18824] = 25, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1313), 1, - anon_sym_RBRACE, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(2046), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - STATE(2569), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [19040] = 24, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(839), 1, - anon_sym_yield, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_LPAREN, - ACTIONS(1267), 1, + ACTIONS(1313), 1, + anon_sym_from, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(979), 1, + STATE(967), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1911), 1, + STATE(1848), 1, sym_expression, - STATE(2611), 1, + STATE(2555), 1, + sym_expression_list, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1099), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2549), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43458,7 +43293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43475,65 +43310,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19146] = 25, - ACTIONS(67), 1, + [18932] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1315), 1, - anon_sym_from, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_not, ACTIONS(1317), 1, - anon_sym_STAR, - STATE(860), 1, + anon_sym_RBRACE, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1999), 1, sym_expression, - STATE(2528), 1, - sym_expression_list, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1111), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + STATE(2575), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43541,7 +43376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43558,65 +43393,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19254] = 25, - ACTIONS(307), 1, + [19040] = 24, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(863), 1, + anon_sym_yield, + ACTIONS(1015), 1, + anon_sym_not, + ACTIONS(1017), 1, + anon_sym_lambda, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(1105), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(1277), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1319), 1, - anon_sym_RBRACE, - STATE(968), 1, + STATE(909), 1, sym_primary_expression, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1269), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1902), 1, sym_expression, - STATE(2711), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - STATE(2569), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1103), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1101), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2509), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43624,7 +43458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43641,14 +43475,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19362] = 25, - ACTIONS(307), 1, + [19146] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43660,46 +43494,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43707,7 +43541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43724,14 +43558,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19470] = 25, - ACTIONS(307), 1, + [19254] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43743,46 +43577,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1321), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43790,7 +43624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43807,14 +43641,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19578] = 25, - ACTIONS(307), 1, + [19362] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43826,46 +43660,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1323), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43873,7 +43707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43890,7 +43724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19686] = 25, + [19470] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -43907,21 +43741,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1329), 1, + ACTIONS(1325), 1, anon_sym_from, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1829), 1, sym_expression, - STATE(2252), 1, + STATE(2596), 1, sym_expression_list, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43932,7 +43766,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1327), 2, + ACTIONS(1099), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, @@ -43948,7 +43782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43956,7 +43790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43973,14 +43807,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19794] = 25, - ACTIONS(307), 1, + [19578] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -43992,46 +43826,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1331), 1, + ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44039,7 +43873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44056,64 +43890,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19902] = 24, - ACTIONS(694), 1, + [19686] = 25, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1329), 1, + anon_sym_RBRACE, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1999), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + STATE(2575), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19794] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_yield, - ACTIONS(1011), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1271), 1, - anon_sym_LPAREN, - ACTIONS(1273), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_from, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(946), 1, + STATE(976), 1, sym_primary_expression, - STATE(981), 1, + STATE(1107), 1, sym_string, - STATE(1183), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1837), 1, sym_expression, - STATE(2746), 1, + STATE(2502), 1, + sym_expression_list, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(1099), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2510), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44121,7 +44039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44138,14 +44056,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20008] = 25, - ACTIONS(307), 1, + [19902] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44157,46 +44075,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1333), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44204,7 +44122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44221,14 +44139,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20116] = 25, - ACTIONS(307), 1, + [20010] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44240,46 +44158,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1337), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44287,7 +44205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44304,14 +44222,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20224] = 25, - ACTIONS(307), 1, + [20118] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44323,46 +44241,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1339), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44370,7 +44288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44387,14 +44305,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20332] = 25, - ACTIONS(307), 1, + [20226] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -44406,46 +44324,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44453,7 +44371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44470,65 +44388,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20440] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [20334] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1341), 1, - anon_sym_from, - ACTIONS(1343), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - STATE(979), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1343), 1, + anon_sym_RBRACE, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1847), 1, + STATE(1999), 1, sym_expression, - STATE(2530), 1, - sym_expression_list, - STATE(2611), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1111), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + STATE(2575), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44536,7 +44454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44553,65 +44471,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20548] = 25, - ACTIONS(307), 1, + [20442] = 24, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(887), 1, + anon_sym_yield, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(1261), 1, anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(855), 1, - anon_sym_STAR_STAR, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1345), 1, - anon_sym_RBRACE, - STATE(968), 1, + STATE(976), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1107), 1, sym_string, - STATE(1269), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1944), 1, sym_expression, - STATE(2711), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - STATE(2569), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2560), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44619,7 +44536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44636,64 +44553,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20656] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [20548] = 25, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1349), 1, - anon_sym_RBRACK, - STATE(979), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(855), 1, + anon_sym_STAR_STAR, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1345), 1, + anon_sym_RBRACE, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1999), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + STATE(2575), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44701,7 +44619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44718,14 +44636,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20763] = 25, - ACTIONS(779), 1, + [20656] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44733,36 +44651,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1351), 1, + ACTIONS(1349), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44770,12 +44688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44783,7 +44701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44800,14 +44718,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20870] = 25, - ACTIONS(779), 1, + [20763] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44815,36 +44733,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, ACTIONS(1353), 1, - anon_sym_RBRACK, - STATE(979), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1853), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1351), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44852,12 +44769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44865,7 +44782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44882,14 +44799,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20977] = 25, - ACTIONS(779), 1, + [20868] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44897,36 +44814,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44934,12 +44851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44947,7 +44864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44964,14 +44881,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21084] = 25, - ACTIONS(779), 1, + [20975] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -44979,36 +44896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1357), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45016,12 +44933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45029,7 +44946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45046,14 +44963,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21191] = 25, - ACTIONS(779), 1, + [21082] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45061,36 +44978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1359), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45098,12 +45015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45111,7 +45028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45128,14 +45045,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21298] = 25, - ACTIONS(779), 1, + [21189] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45143,36 +45060,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1361), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45180,12 +45097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45193,7 +45110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45210,63 +45127,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21405] = 24, - ACTIONS(67), 1, + [21296] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, + ACTIONS(1347), 1, + anon_sym_COLON, ACTIONS(1363), 1, - anon_sym_from, - STATE(860), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(967), 1, + STATE(1107), 1, sym_string, - STATE(1118), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1844), 1, sym_expression, - STATE(2775), 1, + STATE(2503), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1261), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45274,7 +45192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45291,14 +45209,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21510] = 25, - ACTIONS(779), 1, + [21403] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45306,36 +45224,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45343,12 +45261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45356,7 +45274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45373,14 +45291,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21617] = 25, - ACTIONS(779), 1, + [21510] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45388,36 +45306,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45425,12 +45343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45438,7 +45356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45455,63 +45373,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21724] = 24, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [21617] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1371), 1, - anon_sym_COLON, - STATE(979), 1, + ACTIONS(1369), 1, + anon_sym_from, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1805), 1, sym_expression, - STATE(2611), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1369), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, + ACTIONS(1265), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45519,7 +45437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45536,14 +45454,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21829] = 24, - ACTIONS(307), 1, + [21722] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -45555,44 +45473,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(855), 1, anon_sym_STAR_STAR, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2046), 1, + STATE(1999), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - STATE(2569), 2, + STATE(2575), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45600,7 +45518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45617,63 +45535,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21934] = 24, - ACTIONS(67), 1, + [21827] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1373), 1, - anon_sym_from, - STATE(860), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1371), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(967), 1, + STATE(1107), 1, sym_string, - STATE(1118), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1844), 1, sym_expression, - STATE(2775), 1, + STATE(2503), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45681,7 +45600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45698,64 +45617,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22039] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [21934] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1375), 1, - anon_sym_RBRACK, - STATE(979), 1, + ACTIONS(1373), 1, + anon_sym_from, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1805), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1293), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45763,7 +45681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45780,66 +45698,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22146] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [22039] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_STAR, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1375), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1107), 1, + sym_string, + STATE(1437), 1, sym_list_splat_pattern, + STATE(1844), 1, + sym_expression, + STATE(2503), 1, + sym_slice, + STATE(2777), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(663), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(674), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(799), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, + STATE(1751), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45856,14 +45780,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22241] = 25, - ACTIONS(779), 1, + [22146] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45871,36 +45795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45908,12 +45832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45921,7 +45845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45938,14 +45862,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22348] = 25, - ACTIONS(779), 1, + [22253] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -45953,36 +45877,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45990,12 +45914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46003,7 +45927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46020,14 +45944,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22455] = 25, - ACTIONS(779), 1, + [22360] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46035,36 +45959,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46072,12 +45996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46085,7 +46009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46102,14 +46026,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22562] = 25, - ACTIONS(779), 1, + [22467] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46117,36 +46041,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46154,12 +46078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46167,7 +46091,83 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22574] = 19, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(663), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46185,13 +46185,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [22669] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46199,36 +46199,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46236,12 +46236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46249,7 +46249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46267,13 +46267,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [22776] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46281,36 +46281,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46318,12 +46318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46331,7 +46331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46348,63 +46348,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22883] = 24, - ACTIONS(67), 1, + [22883] = 25, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(860), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(1389), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(967), 1, + STATE(1107), 1, sym_string, - STATE(1118), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1844), 1, sym_expression, - STATE(2513), 1, - sym_expression_list, - STATE(2775), 1, + STATE(2503), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1389), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46412,7 +46413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46429,14 +46430,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22988] = 25, - ACTIONS(779), 1, + [22990] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46444,36 +46445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46481,12 +46482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46494,7 +46495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46511,14 +46512,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23095] = 25, - ACTIONS(779), 1, + [23097] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46526,36 +46527,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46563,12 +46564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46576,7 +46577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46593,14 +46594,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23202] = 25, - ACTIONS(779), 1, + [23204] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46608,36 +46609,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46645,12 +46646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46658,7 +46659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46675,14 +46676,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23309] = 25, - ACTIONS(779), 1, + [23311] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46690,36 +46691,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1397), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46727,12 +46728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46740,7 +46741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46757,14 +46758,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23416] = 25, - ACTIONS(779), 1, + [23418] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46772,36 +46773,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46809,12 +46810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46822,7 +46823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46839,14 +46840,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23523] = 24, - ACTIONS(779), 1, + [23525] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46854,35 +46855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1403), 1, + ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + ACTIONS(1401), 1, + anon_sym_RBRACK, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1844), 1, sym_expression, - STATE(2611), 1, + STATE(2503), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1401), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46890,12 +46892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46903,7 +46905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46920,14 +46922,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23628] = 25, - ACTIONS(779), 1, + [23632] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -46935,36 +46937,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46972,12 +46974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46985,7 +46987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47002,14 +47004,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23735] = 25, - ACTIONS(779), 1, + [23739] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47017,36 +47019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1407), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47054,12 +47056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47067,83 +47069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23842] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, - sym_primary_expression, - STATE(1269), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(1409), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(320), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47160,14 +47086,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23937] = 25, - ACTIONS(779), 1, + [23846] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47175,36 +47101,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1409), 1, anon_sym_COLON, - ACTIONS(1411), 1, - anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1850), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1407), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47212,12 +47137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47225,7 +47150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47242,14 +47167,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24044] = 25, - ACTIONS(779), 1, + [23951] = 25, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47257,36 +47182,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1413), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47294,12 +47219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47307,7 +47232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47324,64 +47249,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24151] = 25, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [24058] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1415), 1, - anon_sym_RBRACK, - STATE(979), 1, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1815), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2585), 1, + sym_expression_list, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1413), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47389,7 +47313,83 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1035), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24163] = 19, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, + anon_sym_STAR, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(1415), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(323), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47407,13 +47407,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24258] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47421,36 +47421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1417), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47458,12 +47458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47471,7 +47471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47489,13 +47489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24365] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47503,36 +47503,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1419), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47540,12 +47540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47553,7 +47553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47571,13 +47571,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24472] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47585,36 +47585,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1421), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47622,12 +47622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47635,7 +47635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47653,13 +47653,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24579] = 25, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47667,36 +47667,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, ACTIONS(1423), 1, anon_sym_RBRACK, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1844), 1, sym_expression, - STATE(2502), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47704,12 +47704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47717,7 +47717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47735,13 +47735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24686] = 24, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47749,34 +47749,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1820), 1, sym_expression, - STATE(2353), 1, + STATE(2414), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47784,12 +47784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47797,7 +47797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47815,13 +47815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24790] = 24, - ACTIONS(779), 1, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -47829,34 +47829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1844), 1, sym_expression, - STATE(2466), 1, + STATE(2503), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -47864,12 +47864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47877,7 +47877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47894,141 +47894,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24894] = 24, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1909), 1, - sym_expression, - STATE(2256), 1, - sym_with_item, - STATE(2673), 1, - sym_with_clause, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24998] = 23, - ACTIONS(733), 1, + [24894] = 23, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1287), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1830), 1, sym_expression, - STATE(2614), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2106), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48036,7 +47956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48053,62 +47973,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25100] = 24, - ACTIONS(757), 1, + [24996] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1429), 1, - anon_sym_RPAREN, - STATE(963), 1, + STATE(976), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1107), 1, sym_string, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(1914), 1, sym_expression, - STATE(2548), 1, - sym_with_item, - STATE(2691), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48116,7 +48035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48133,14 +48052,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25204] = 24, - ACTIONS(779), 1, + [25098] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -48148,34 +48067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1956), 1, sym_expression, - STATE(2359), 1, - sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1265), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -48183,12 +48101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48196,7 +48114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48213,61 +48131,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25308] = 23, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [25200] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1287), 1, - anon_sym_lambda, - STATE(965), 1, + STATE(865), 1, sym_primary_expression, - STATE(1003), 1, + STATE(969), 1, sym_string, - STATE(1264), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1805), 1, sym_expression, - STATE(2614), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - STATE(2034), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1427), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48275,7 +48193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48292,62 +48210,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25410] = 24, - ACTIONS(307), 1, + [25302] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1805), 1, sym_expression, - STATE(2256), 1, - sym_with_item, - STATE(2680), 1, - sym_with_clause, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48355,7 +48272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48372,62 +48289,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25514] = 24, - ACTIONS(307), 1, + [25404] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, ACTIONS(1431), 1, - anon_sym_COLON, - STATE(968), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1930), 1, sym_expression, - STATE(2585), 1, + STATE(2269), 1, sym_with_item, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, + STATE(2776), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48435,7 +48352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48452,69 +48369,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25618] = 23, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [25508] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1259), 1, - anon_sym_lambda, - STATE(964), 1, - sym_primary_expression, - STATE(1022), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1307), 1, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1804), 1, - sym_expression, - STATE(2690), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(663), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(323), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1776), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1404), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48531,62 +48444,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25720] = 24, - ACTIONS(307), 1, + [25602] = 23, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(968), 1, + ACTIONS(1289), 1, + anon_sym_lambda, + STATE(912), 1, sym_primary_expression, - STATE(1033), 1, + STATE(971), 1, sym_string, - STATE(1269), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1824), 1, sym_expression, - STATE(2256), 1, - sym_with_item, - STATE(2676), 1, - sym_with_clause, - STATE(2711), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + STATE(1988), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48594,7 +48506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48611,61 +48523,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25824] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [25704] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(963), 1, + STATE(865), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1413), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1877), 1, sym_expression, - STATE(2691), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(767), 3, + ACTIONS(1435), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48673,7 +48585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48690,7 +48602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25926] = 24, + [25806] = 23, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -48699,28 +48611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + ACTIONS(1273), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1069), 1, + STATE(996), 1, sym_string, - STATE(1447), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1802), 1, sym_expression, - STATE(2395), 1, - sym_slice, STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, @@ -48729,14 +48637,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, + STATE(1986), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48745,7 +48656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48753,7 +48664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48770,61 +48681,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26030] = 23, - ACTIONS(733), 1, + [25908] = 23, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1131), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1287), 1, + ACTIONS(1255), 1, anon_sym_lambda, - STATE(965), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1783), 1, sym_expression, - STATE(2614), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - STATE(1916), 2, + STATE(1962), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48832,7 +48743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48849,69 +48760,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26132] = 23, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [26010] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(672), 1, anon_sym_STAR, - ACTIONS(1287), 1, - anon_sym_lambda, - STATE(965), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1823), 1, - sym_expression, - STATE(2614), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(319), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - STATE(1990), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(323), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1796), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1381), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48928,103 +48835,28 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26234] = 23, - ACTIONS(67), 1, + [26104] = 20, + ACTIONS(302), 1, + anon_sym_in, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(319), 1, + anon_sym_COMMA, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, - STATE(967), 1, - sym_string, - STATE(1118), 1, - sym_list_splat_pattern, - STATE(1781), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1433), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1659), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1130), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [26336] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(672), 1, anon_sym_STAR, ACTIONS(678), 1, anon_sym_LBRACK, ACTIONS(682), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1107), 1, + STATE(1051), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -49032,16 +48864,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(279), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(1409), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -49049,7 +48878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, @@ -49065,7 +48894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49082,62 +48911,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26430] = 24, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [26200] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1877), 1, sym_expression, - STATE(2502), 1, - sym_slice, - STATE(2611), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1437), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49145,7 +48973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49162,7 +48990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26534] = 23, + [26302] = 23, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -49171,25 +48999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1259), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(976), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1931), 1, sym_expression, - STATE(2690), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49197,17 +49025,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1943), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, + ACTIONS(1407), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49216,7 +49044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49224,7 +49052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49241,140 +49069,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26636] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [26404] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, - sym_primary_expression, - STATE(1269), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(676), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [26730] = 19, - ACTIONS(307), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + ACTIONS(1289), 1, + anon_sym_lambda, + STATE(912), 1, sym_primary_expression, - STATE(1269), 1, + STATE(971), 1, + sym_string, + STATE(1203), 1, sym_list_splat_pattern, + STATE(1824), 1, + sym_expression, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(318), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + STATE(1900), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(731), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, + STATE(1771), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49391,61 +49148,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26824] = 23, - ACTIONS(733), 1, + [26506] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1287), 1, - anon_sym_lambda, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1949), 1, sym_expression, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - STATE(2018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1265), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49453,7 +49210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49470,66 +49227,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26926] = 20, - ACTIONS(294), 1, - anon_sym_in, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_COMMA, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [26608] = 24, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, + ACTIONS(1439), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1028), 1, + sym_string, + STATE(1388), 1, sym_list_splat_pattern, + STATE(1987), 1, + sym_expression, + STATE(2583), 1, + sym_with_item, + STATE(2638), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(709), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49546,7 +49307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27022] = 23, + [26712] = 24, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -49555,25 +49316,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1259), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1795), 1, sym_expression, - STATE(2690), 1, + STATE(2461), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49581,17 +49346,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2064), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49600,7 +49362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49608,7 +49370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49625,61 +49387,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27124] = 23, - ACTIONS(801), 1, + [26816] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1259), 1, + ACTIONS(1289), 1, anon_sym_lambda, - STATE(964), 1, + STATE(912), 1, sym_primary_expression, - STATE(1022), 1, + STATE(971), 1, sym_string, - STATE(1307), 1, + STATE(1203), 1, sym_list_splat_pattern, STATE(1804), 1, sym_expression, - STATE(2690), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1964), 2, + STATE(2090), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49687,7 +49449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49704,62 +49466,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27226] = 24, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [26918] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1930), 1, sym_expression, - STATE(2431), 1, - sym_slice, - STATE(2611), 1, + STATE(2269), 1, + sym_with_item, + STATE(2767), 1, + sym_with_clause, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49767,7 +49529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49784,14 +49546,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27330] = 23, - ACTIONS(779), 1, + [27022] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -49799,33 +49561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1989), 1, + STATE(1956), 1, sym_expression, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, + ACTIONS(1293), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -49833,12 +49595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49846,7 +49608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49863,7 +49625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27432] = 24, + [27124] = 23, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -49872,28 +49634,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + ACTIONS(1273), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1069), 1, + STATE(996), 1, sym_string, - STATE(1447), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1831), 1, sym_expression, - STATE(2481), 1, - sym_slice, STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, @@ -49902,14 +49660,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, + STATE(2048), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49918,7 +49679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49926,7 +49687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49943,7 +49704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27536] = 23, + [27226] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49960,17 +49721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1877), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49981,7 +49742,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(1437), 2, + ACTIONS(1441), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, @@ -49997,7 +49758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50005,7 +49766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50022,61 +49783,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27638] = 23, - ACTIONS(779), 1, + [27328] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(989), 1, - anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1263), 1, - sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(979), 1, + ACTIONS(1289), 1, + anon_sym_lambda, + STATE(912), 1, sym_primary_expression, - STATE(1069), 1, + STATE(971), 1, sym_string, - STATE(1447), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1794), 1, sym_expression, - STATE(2611), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(1439), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, + STATE(2104), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50084,7 +49845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50101,14 +49862,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27740] = 24, - ACTIONS(779), 1, + [27430] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50116,34 +49877,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1909), 1, sym_expression, - STATE(2269), 1, - sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(1443), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50151,12 +49911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50164,7 +49924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50181,61 +49941,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27844] = 23, - ACTIONS(711), 1, + [27532] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1273), 1, anon_sym_lambda, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1801), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(1996), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50243,7 +50003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50260,62 +50020,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27946] = 24, - ACTIONS(307), 1, + [27634] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1441), 1, - anon_sym_COLON, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1877), 1, sym_expression, - STATE(2585), 1, - sym_with_item, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1445), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50323,7 +50082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50340,69 +50099,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28050] = 23, - ACTIONS(67), 1, + [27736] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(672), 1, anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, - STATE(967), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1849), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(1443), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1415), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(323), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1659), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1130), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50419,61 +50174,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28152] = 23, - ACTIONS(711), 1, + [27830] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(904), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1814), 1, sym_expression, - STATE(2605), 1, + STATE(2455), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2057), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50481,7 +50237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50498,61 +50254,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28254] = 23, - ACTIONS(757), 1, + [27934] = 23, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1289), 1, - sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1289), 1, + anon_sym_lambda, + STATE(912), 1, sym_primary_expression, - STATE(1025), 1, + STATE(971), 1, sym_string, - STATE(1413), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1824), 1, sym_expression, - STATE(2691), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(1261), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(767), 3, + STATE(2093), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50560,7 +50316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50577,61 +50333,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28356] = 23, - ACTIONS(801), 1, + [28036] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1259), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(967), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1949), 1, sym_expression, - STATE(2690), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - STATE(2087), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(811), 3, + ACTIONS(1293), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50639,7 +50395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50656,14 +50412,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28458] = 23, - ACTIONS(779), 1, + [28138] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50671,33 +50427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(979), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1803), 1, sym_expression, - STATE(2611), 1, + STATE(2330), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1261), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50705,12 +50462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50718,7 +50475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50735,61 +50492,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28560] = 23, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [28242] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(979), 1, + ACTIONS(1447), 1, + anon_sym_COLON, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1942), 1, + STATE(1930), 1, sym_expression, - STATE(2611), 1, + STATE(2554), 1, + sym_with_item, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1401), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50797,7 +50555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50814,14 +50572,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28662] = 24, - ACTIONS(779), 1, + [28346] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50829,34 +50587,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1784), 1, sym_expression, - STATE(2432), 1, + STATE(2469), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50864,12 +50622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50877,7 +50635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50894,69 +50652,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28766] = 23, - ACTIONS(67), 1, + [28450] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(672), 1, anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, - STATE(967), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1051), 1, + sym_primary_expression, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1849), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(323), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1659), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1130), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50973,14 +50727,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28868] = 24, - ACTIONS(779), 1, + [28544] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -50988,34 +50742,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1790), 1, sym_expression, - STATE(2364), 1, + STATE(2277), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -51023,12 +50777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51036,7 +50790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51053,14 +50807,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28972] = 23, - ACTIONS(779), 1, + [28648] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -51068,33 +50822,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(979), 1, - sym_primary_expression, - STATE(1069), 1, - sym_string, - STATE(1447), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, + sym_primary_expression, + STATE(1107), 1, + sym_string, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1797), 1, sym_expression, - STATE(2611), 1, + STATE(2320), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -51102,12 +50857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51115,7 +50870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51132,14 +50887,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29074] = 24, - ACTIONS(779), 1, + [28752] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -51147,34 +50902,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1800), 1, sym_expression, - STATE(2373), 1, + STATE(2358), 1, sym_slice, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -51182,12 +50937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51195,7 +50950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51212,61 +50967,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29178] = 23, - ACTIONS(711), 1, + [28856] = 24, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(904), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1810), 1, sym_expression, - STATE(2605), 1, + STATE(2391), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(2027), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51274,7 +51030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51291,61 +51047,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29280] = 23, - ACTIONS(67), 1, + [28960] = 24, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(860), 1, + ACTIONS(1347), 1, + anon_sym_COLON, + STATE(976), 1, sym_primary_expression, - STATE(967), 1, + STATE(1107), 1, sym_string, - STATE(1118), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1817), 1, sym_expression, - STATE(2775), 1, + STATE(2408), 1, + sym_slice, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(1447), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51353,7 +51110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51370,62 +51127,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29382] = 24, - ACTIONS(307), 1, + [29064] = 23, + ACTIONS(755), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(968), 1, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1015), 1, sym_string, - STATE(1269), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1827), 1, sym_expression, - STATE(2256), 1, - sym_with_item, - STATE(2711), 1, + STATE(2771), 1, sym__named_expression_lhs, - STATE(2749), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1059), 2, + anon_sym_match, + anon_sym_type, + STATE(2020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1057), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51433,7 +51189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51450,8 +51206,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29486] = 24, - ACTIONS(757), 1, + [29166] = 23, + ACTIONS(755), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -51459,29 +51215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1449), 1, - anon_sym_RPAREN, + ACTIONS(1255), 1, + anon_sym_lambda, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(1783), 1, sym_expression, - STATE(2548), 1, - sym_with_item, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51489,23 +51241,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, + STATE(2105), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51513,7 +51268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51530,61 +51285,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29590] = 23, - ACTIONS(67), 1, + [29268] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1930), 1, sym_expression, + STATE(2269), 1, + sym_with_item, + STATE(2672), 1, + sym_with_clause, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1451), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51592,7 +51348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51609,61 +51365,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29692] = 23, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [29372] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(904), 1, + STATE(970), 1, sym_primary_expression, - STATE(982), 1, + STATE(1010), 1, sym_string, - STATE(1212), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1930), 1, sym_expression, - STATE(2605), 1, + STATE(2269), 1, + sym_with_item, + STATE(2679), 1, + sym_with_clause, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - STATE(1962), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51671,7 +51428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51688,61 +51445,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29794] = 23, - ACTIONS(711), 1, + [29476] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1273), 1, anon_sym_lambda, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1802), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(1978), 2, + STATE(1998), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51750,7 +51507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51767,65 +51524,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29896] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [29578] = 23, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(672), 1, - anon_sym_STAR, - ACTIONS(678), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1107), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + ACTIONS(1255), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1015), 1, + sym_string, + STATE(1258), 1, sym_list_splat_pattern, + STATE(1783), 1, + sym_expression, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + STATE(1899), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(753), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1339), 16, + STATE(1806), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51842,125 +51603,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29990] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1453), 1, - anon_sym_for, - ACTIONS(1455), 1, - anon_sym_with, - ACTIONS(1457), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(316), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [29680] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(787), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30065] = 23, - ACTIONS(307), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(968), 1, + ACTIONS(1273), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1033), 1, + STATE(996), 1, sym_string, - STATE(1269), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1909), 1, + STATE(1802), 1, sym_expression, - STATE(2585), 1, - sym_with_item, - STATE(2711), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1165), 2, + anon_sym_match, + anon_sym_type, + STATE(1901), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1163), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51968,7 +51665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51985,203 +51682,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30166] = 23, - ACTIONS(307), 1, + [29782] = 24, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1459), 1, - anon_sym_COLON, - STATE(968), 1, + ACTIONS(1449), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1987), 1, sym_expression, - STATE(2711), 1, + STATE(2583), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30267] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1461), 1, - anon_sym_for, - ACTIONS(1463), 1, - anon_sym_with, - ACTIONS(1465), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(316), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30342] = 23, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1467), 1, - anon_sym_COLON, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1931), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52189,7 +51745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52206,14 +51762,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30443] = 23, - ACTIONS(307), 1, + [29886] = 24, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52221,45 +51777,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1469), 1, + ACTIONS(1451), 1, anon_sym_COLON, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1885), 1, + STATE(1930), 1, sym_expression, - STATE(2711), 1, + STATE(2554), 1, + sym_with_item, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52267,7 +51825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52284,24 +51842,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30544] = 11, + [29990] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_COLON, - ACTIONS(1471), 1, + ACTIONS(1453), 1, sym_identifier, - ACTIONS(1473), 1, + ACTIONS(1455), 1, sym_string_start, - STATE(2261), 1, + STATE(2385), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(302), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(277), 10, sym__newline, anon_sym_SEMI, @@ -52313,7 +51870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(316), 13, + ACTIONS(319), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52350,14 +51907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [30621] = 23, - ACTIONS(307), 1, + [30065] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52365,45 +51922,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1851), 1, + STATE(1835), 1, sym_expression, - STATE(2610), 1, + STATE(2697), 1, sym_expression_list, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52411,7 +51968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52428,60 +51985,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30722] = 23, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + [30166] = 10, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1457), 1, + anon_sym_for, + ACTIONS(1459), 1, + anon_sym_with, + ACTIONS(1461), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(319), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - ACTIONS(71), 1, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30241] = 23, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1930), 1, sym_expression, - STATE(2514), 1, - sym_expression_list, + STATE(2554), 1, + sym_with_item, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52489,7 +52111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52506,14 +52128,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30823] = 23, - ACTIONS(307), 1, + [30342] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52521,45 +52143,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1475), 1, + ACTIONS(1293), 1, anon_sym_COLON, - STATE(968), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1912), 1, + STATE(1911), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52567,7 +52189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52584,60 +52206,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30924] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [30443] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1265), 1, + anon_sym_COLON, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(1911), 1, sym_expression, - STATE(2548), 1, - sym_with_item, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52645,7 +52267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52662,35 +52284,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31025] = 10, + [30544] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1471), 1, - sym_identifier, - ACTIONS(1473), 1, - sym_string_start, - STATE(2261), 1, - sym_string, + ACTIONS(1463), 1, + anon_sym_for, + ACTIONS(1465), 1, + anon_sym_with, + ACTIONS(1467), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(294), 2, + ACTIONS(302), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(316), 13, + ACTIONS(319), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52704,37 +52315,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, - anon_sym_as, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT, anon_sym_GT, - [31100] = 23, - ACTIONS(307), 1, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30619] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52742,45 +52364,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1477), 1, + ACTIONS(1469), 1, anon_sym_COLON, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1941), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52788,7 +52410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52805,14 +52427,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31201] = 23, - ACTIONS(307), 1, + [30720] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52820,45 +52442,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1869), 1, + STATE(1863), 1, sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - STATE(2728), 1, + STATE(2712), 1, sym_expression_list, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52866,7 +52488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52883,14 +52505,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31302] = 23, - ACTIONS(307), 1, + [30821] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -52898,45 +52520,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + ACTIONS(1471), 1, + anon_sym_COLON, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1941), 1, sym_expression, - STATE(2698), 1, - sym_expression_list, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52944,7 +52566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52961,60 +52583,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31403] = 23, - ACTIONS(307), 1, + [30922] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1781), 1, sym_expression, - STATE(2711), 1, + STATE(2595), 1, + sym_expression_list, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53022,7 +52644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53039,60 +52661,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31504] = 23, - ACTIONS(307), 1, + [31023] = 23, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1987), 1, sym_expression, - STATE(2689), 1, - sym_expression_list, - STATE(2711), 1, + STATE(2583), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53100,7 +52722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53117,14 +52739,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31605] = 23, - ACTIONS(307), 1, + [31124] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53132,45 +52754,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1479), 1, + ACTIONS(1473), 1, anon_sym_COLON, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1941), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53178,7 +52800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53195,14 +52817,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31706] = 23, - ACTIONS(307), 1, + [31225] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53210,45 +52832,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1839), 1, sym_expression, - STATE(2711), 1, + STATE(2641), 1, + sym_expression_list, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53256,7 +52878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53273,58 +52895,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31807] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [31326] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(965), 1, + ACTIONS(1475), 1, + anon_sym_COLON, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1967), 1, sym_expression, - STATE(2614), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1137), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53332,7 +52956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53349,134 +52973,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31905] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, - ACTIONS(1107), 1, + [31427] = 11, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_COLON, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(1453), 1, sym_identifier, - ACTIONS(1117), 1, - anon_sym_await, - STATE(946), 1, - sym_primary_expression, - STATE(981), 1, + ACTIONS(1455), 1, + sym_string_start, + STATE(2385), 1, sym_string, - STATE(1183), 1, - sym_list_splat_pattern, - STATE(1917), 1, - sym_expression, - STATE(2746), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1115), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1113), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1762), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1208), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [32003] = 22, - ACTIONS(711), 1, + ACTIONS(277), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(319), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [31504] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(904), 1, + ACTIONS(1477), 1, + anon_sym_COLON, + STATE(970), 1, sym_primary_expression, - STATE(982), 1, + STATE(1010), 1, sym_string, - STATE(1212), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1941), 1, sym_expression, - STATE(2605), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53484,7 +53100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53501,134 +53117,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32101] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [31605] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(859), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(861), 1, - anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(904), 1, + ACTIONS(1479), 1, + anon_sym_COLON, + STATE(970), 1, sym_primary_expression, - STATE(982), 1, + STATE(1010), 1, sym_string, - STATE(1212), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1947), 1, sym_expression, - STATE(2605), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, - sym_ellipsis, - sym_float, - ACTIONS(853), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1171), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [32199] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, - anon_sym_await, - STATE(946), 1, - sym_primary_expression, - STATE(981), 1, - sym_string, - STATE(1183), 1, - sym_list_splat_pattern, - STATE(1754), 1, - sym_expression, - STATE(2746), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1115), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53636,7 +53178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53653,14 +53195,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32297] = 22, - ACTIONS(307), 1, + [31706] = 23, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53668,43 +53210,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2021), 1, + STATE(1857), 1, sym_expression, - STATE(2711), 1, + STATE(2688), 1, + sym_expression_list, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53712,7 +53256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53729,14 +53273,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32395] = 22, - ACTIONS(307), 1, + [31807] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -53744,43 +53288,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1734), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53788,7 +53332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53805,58 +53349,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32493] = 22, - ACTIONS(711), 1, + [31905] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1821), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53864,7 +53408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53881,58 +53425,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32591] = 22, - ACTIONS(757), 1, + [32003] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1979), 1, + STATE(1823), 1, sym_expression, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53940,7 +53484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53957,58 +53501,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32689] = 22, - ACTIONS(711), 1, + [32101] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(1825), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54016,7 +53560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54033,58 +53577,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32787] = 22, - ACTIONS(757), 1, + [32199] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1826), 1, sym_expression, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54092,7 +53636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54109,58 +53653,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32885] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, - STATE(967), 1, - sym_string, - STATE(1118), 1, - sym_list_splat_pattern, - STATE(1849), 1, - sym_expression, - STATE(2775), 1, - sym__named_expression_lhs, + [32297] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(705), 1, + sym_else_clause, + STATE(747), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + STATE(622), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, - anon_sym_print, - anon_sym_async, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(77), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32369] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_finally, + ACTIONS(1491), 1, + anon_sym_except_STAR, + STATE(705), 1, + sym_else_clause, + STATE(747), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(623), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32441] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(883), 1, + anon_sym_not, + ACTIONS(885), 1, + anon_sym_lambda, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, + anon_sym_STAR, + STATE(965), 1, + sym_primary_expression, + STATE(996), 1, + sym_string, + STATE(1360), 1, + sym_list_splat_pattern, + STATE(1787), 1, + sym_expression, + STATE(2611), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(1165), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1163), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54168,7 +53838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54185,58 +53855,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32983] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [32539] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(885), 1, + anon_sym_lambda, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(968), 1, + STATE(965), 1, sym_primary_expression, - STATE(1033), 1, + STATE(996), 1, sym_string, - STATE(1269), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(2037), 1, + STATE(1816), 1, sym_expression, - STATE(2711), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1165), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1163), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54244,7 +53914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54261,58 +53931,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33081] = 22, - ACTIONS(711), 1, + [32637] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(1159), 1, + sym_identifier, + ACTIONS(1169), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(904), 1, + STATE(965), 1, sym_primary_expression, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1777), 1, sym_expression, - STATE(2605), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54320,7 +53990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54337,14 +54007,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33179] = 22, - ACTIONS(711), 1, + [32735] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -54354,28 +54024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1739), 1, sym_expression, - STATE(2605), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54383,12 +54053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54396,7 +54066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54413,14 +54083,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33277] = 22, - ACTIONS(711), 1, + [32833] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, ACTIONS(843), 1, sym_identifier, @@ -54430,28 +54100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(865), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(904), 1, + STATE(912), 1, sym_primary_expression, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1752), 1, sym_expression, - STATE(2605), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54459,12 +54129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54472,7 +54142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54489,58 +54159,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33375] = 22, - ACTIONS(67), 1, + [32931] = 22, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(860), 1, + STATE(912), 1, sym_primary_expression, - STATE(967), 1, + STATE(971), 1, sym_string, - STATE(1118), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(1753), 1, sym_expression, - STATE(2775), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54548,7 +54218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54565,58 +54235,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33473] = 22, - ACTIONS(307), 1, + [33029] = 22, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(968), 1, + STATE(912), 1, sym_primary_expression, - STATE(1033), 1, + STATE(971), 1, sym_string, - STATE(1269), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1754), 1, sym_expression, - STATE(2711), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54624,7 +54294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54641,58 +54311,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33571] = 22, - ACTIONS(307), 1, + [33127] = 22, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(968), 1, + STATE(912), 1, sym_primary_expression, - STATE(1033), 1, + STATE(971), 1, sym_string, - STATE(1269), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1774), 1, sym_expression, - STATE(2711), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(853), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(851), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54700,7 +54370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54717,49 +54387,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33669] = 22, + [33225] = 22, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(965), 1, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1264), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1758), 1, sym_expression, - STATE(2614), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54768,7 +54438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54776,7 +54446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54793,49 +54463,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33767] = 22, + [33323] = 22, ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(965), 1, + STATE(912), 1, sym_primary_expression, - STATE(1003), 1, + STATE(971), 1, sym_string, - STATE(1264), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1759), 1, sym_expression, - STATE(2614), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54844,7 +54514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54852,7 +54522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54869,58 +54539,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33865] = 22, - ACTIONS(307), 1, + [33421] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1805), 1, sym_expression, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54928,7 +54598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54945,7 +54615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33963] = 22, + [33519] = 22, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -54954,25 +54624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1105), 1, anon_sym_await, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1183), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1740), 1, sym_expression, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54980,14 +54650,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54996,7 +54666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55004,7 +54674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55021,58 +54691,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34061] = 22, - ACTIONS(801), 1, + [33617] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1147), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1257), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(909), 1, sym_primary_expression, - STATE(1022), 1, + STATE(975), 1, sym_string, - STATE(1307), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1741), 1, sym_expression, - STATE(2690), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55080,7 +54750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55097,58 +54767,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34159] = 22, - ACTIONS(733), 1, + [33715] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1131), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_STAR, - STATE(965), 1, + STATE(909), 1, sym_primary_expression, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1264), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1818), 1, + STATE(1742), 1, sym_expression, - STATE(2614), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55156,7 +54826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55173,83 +54843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34257] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1931), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [34355] = 22, + [33813] = 22, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -55258,25 +54852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1105), 1, anon_sym_await, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1183), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1743), 1, sym_expression, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -55284,14 +54878,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -55300,7 +54894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55308,7 +54902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55325,58 +54919,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34453] = 22, - ACTIONS(733), 1, + [33911] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1131), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_STAR, - STATE(965), 1, + STATE(909), 1, sym_primary_expression, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1264), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1744), 1, sym_expression, - STATE(2614), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55384,7 +54978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55401,58 +54995,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34551] = 22, - ACTIONS(733), 1, + [34009] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1131), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_STAR, - STATE(965), 1, + STATE(909), 1, sym_primary_expression, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1264), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1749), 1, sym_expression, - STATE(2614), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55460,7 +55054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55477,7 +55071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34649] = 22, + [34107] = 22, ACTIONS(686), 1, anon_sym_LPAREN, ACTIONS(694), 1, @@ -55486,25 +55080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(704), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1105), 1, anon_sym_await, - STATE(946), 1, + STATE(909), 1, sym_primary_expression, - STATE(981), 1, + STATE(975), 1, sym_string, - STATE(1183), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1750), 1, sym_expression, - STATE(2746), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -55512,14 +55106,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -55528,7 +55122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55536,7 +55130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55553,58 +55147,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34747] = 22, - ACTIONS(67), 1, + [34205] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1721), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55612,7 +55206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55629,7 +55223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34845] = 22, + [34303] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -55646,17 +55240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1970), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -55680,7 +55274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55688,7 +55282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55705,58 +55299,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34943] = 22, - ACTIONS(307), 1, + [34401] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1994), 1, + STATE(1728), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55764,7 +55358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55781,58 +55375,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35041] = 22, - ACTIONS(67), 1, + [34499] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, STATE(967), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1118), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1736), 1, sym_expression, - STATE(2775), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55840,7 +55434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55857,53 +55451,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35139] = 22, - ACTIONS(757), 1, + [34597] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(963), 1, + STATE(967), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1970), 1, + STATE(1718), 1, sym_expression, - STATE(2691), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, @@ -55916,7 +55510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55933,58 +55527,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35237] = 22, - ACTIONS(779), 1, + [34695] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(979), 1, + STATE(967), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1719), 1, sym_expression, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55992,7 +55586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56009,58 +55603,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35335] = 22, - ACTIONS(686), 1, + [34793] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, + STATE(967), 1, sym_primary_expression, - STATE(981), 1, + STATE(1028), 1, sym_string, - STATE(1183), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1735), 1, sym_expression, - STATE(2746), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56068,7 +55662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56085,58 +55679,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35433] = 22, - ACTIONS(733), 1, + [34891] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(965), 1, + STATE(967), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1028), 1, sym_string, - STATE(1264), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1722), 1, sym_expression, - STATE(2614), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1137), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56144,7 +55738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56161,58 +55755,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35531] = 22, - ACTIONS(67), 1, + [34989] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, STATE(967), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1118), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1726), 1, sym_expression, - STATE(2775), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56220,7 +55814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56237,58 +55831,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35629] = 22, - ACTIONS(686), 1, + [35087] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1984), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35185] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(976), 1, sym_primary_expression, - STATE(981), 1, + STATE(1107), 1, sym_string, - STATE(1183), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1760), 1, sym_expression, - STATE(2746), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56296,7 +55966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56313,58 +55983,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35727] = 22, - ACTIONS(307), 1, + [35283] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(968), 1, + STATE(976), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1107), 1, sym_string, - STATE(1269), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1763), 1, sym_expression, - STATE(2711), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56372,7 +56042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56389,58 +56059,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35825] = 22, - ACTIONS(686), 1, + [35381] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(991), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(976), 1, sym_primary_expression, - STATE(981), 1, + STATE(1107), 1, sym_string, - STATE(1183), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1764), 1, sym_expression, - STATE(2746), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56448,7 +56118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56465,58 +56135,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35923] = 22, - ACTIONS(711), 1, + [35479] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(904), 1, + STATE(976), 1, sym_primary_expression, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1765), 1, sym_expression, - STATE(2605), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56524,7 +56194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56541,58 +56211,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36021] = 22, - ACTIONS(307), 1, + [35577] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(968), 1, + STATE(976), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1107), 1, sym_string, - STATE(1269), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1766), 1, sym_expression, - STATE(2711), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56600,7 +56270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56617,58 +56287,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36119] = 22, - ACTIONS(67), 1, + [35675] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(991), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(860), 1, + STATE(976), 1, sym_primary_expression, - STATE(967), 1, + STATE(1107), 1, sym_string, - STATE(1118), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1937), 1, + STATE(1772), 1, sym_expression, - STATE(2775), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56676,7 +56346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56693,184 +56363,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36217] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(710), 1, - sym_else_clause, - STATE(800), 1, - sym_finally_clause, + [35773] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, + anon_sym_await, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(976), 1, + sym_primary_expression, + STATE(1107), 1, + sym_string, + STATE(1437), 1, + sym_list_splat_pattern, + STATE(1773), 1, + sym_expression, + STATE(2777), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(815), 2, + sym_ellipsis, + sym_float, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [36289] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(710), 1, - sym_else_clause, - STATE(800), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(616), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [36361] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, - sym_identifier, - ACTIONS(1301), 1, - anon_sym_STAR, - STATE(963), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1413), 1, - sym_list_splat_pattern, - STATE(1983), 1, - sym_expression, - STATE(2691), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56878,7 +56422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56895,134 +56439,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36459] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [35871] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(325), 1, anon_sym_await, - STATE(946), 1, - sym_primary_expression, - STATE(981), 1, - sym_string, - STATE(1183), 1, - sym_list_splat_pattern, - STATE(1766), 1, - sym_expression, - STATE(2746), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1115), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(696), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1113), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1762), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1208), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [36557] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1725), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57030,7 +56498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57047,14 +56515,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36655] = 22, - ACTIONS(307), 1, + [35969] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -57062,43 +56530,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2029), 1, + STATE(1727), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57106,7 +56574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57123,7 +56591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36753] = 22, + [36067] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57140,17 +56608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1860), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57174,7 +56642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57182,7 +56650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57199,58 +56667,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36851] = 22, - ACTIONS(801), 1, + [36165] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(835), 1, anon_sym_not, ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1785), 1, sym_expression, - STATE(2690), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57258,7 +56726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57275,58 +56743,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36949] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [36263] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(968), 1, + ACTIONS(1493), 1, + sym_identifier, + ACTIONS(1499), 1, + anon_sym_await, + STATE(1008), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1107), 1, sym_string, - STATE(1269), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(1973), 1, sym_expression, - STATE(2711), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1497), 2, + anon_sym_match, + anon_sym_type, + STATE(1257), 2, + sym_attribute, + sym_subscript, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1495), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57334,11 +56805,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1442), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57351,58 +56820,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37047] = 22, - ACTIONS(307), 1, + [36363] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(2025), 1, + STATE(1897), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57410,7 +56879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57427,7 +56896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37145] = 22, + [36461] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57444,17 +56913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1664), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57478,7 +56947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57486,7 +56955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57503,58 +56972,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37243] = 22, - ACTIONS(757), 1, + [36559] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1301), 1, - anon_sym_STAR, - STATE(963), 1, + ACTIONS(1105), 1, + anon_sym_await, + STATE(909), 1, sym_primary_expression, - STATE(1025), 1, + STATE(975), 1, sym_string, - STATE(1413), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1978), 1, sym_expression, - STATE(2691), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57562,7 +57031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57579,58 +57048,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37341] = 22, - ACTIONS(67), 1, + [36657] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, - sym_identifier, - ACTIONS(406), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, STATE(967), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1118), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1982), 1, sym_expression, - STATE(2775), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57638,7 +57107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57655,58 +57124,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37439] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [36755] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(963), 1, + STATE(865), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1413), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1927), 1, sym_expression, - STATE(2691), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57714,7 +57183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57731,58 +57200,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37537] = 22, - ACTIONS(757), 1, + [36853] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1169), 1, + anon_sym_await, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1882), 1, sym_expression, - STATE(2691), 1, + STATE(2611), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57790,7 +57259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57807,58 +57276,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37635] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [36951] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1730), 1, sym_expression, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57866,7 +57335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57883,58 +57352,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37733] = 22, - ACTIONS(307), 1, + [37049] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(2071), 1, + STATE(1789), 1, sym_expression, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57942,7 +57411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57959,58 +57428,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37831] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37147] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(2014), 1, sym_expression, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58018,7 +57487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58035,58 +57504,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37929] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37245] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(2079), 1, sym_expression, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58094,7 +57563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58111,58 +57580,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38027] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37343] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1915), 1, sym_expression, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58170,7 +57639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58187,58 +57656,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38125] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [37441] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1010), 1, sym_string, - STATE(1307), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(1731), 1, sym_expression, - STATE(2690), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(1153), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58246,7 +57715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58263,58 +57732,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38223] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [37539] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(979), 1, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(2083), 1, sym_expression, - STATE(2611), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58322,7 +57791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58339,58 +57808,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38321] = 22, - ACTIONS(757), 1, + [37637] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1289), 1, - sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(963), 1, + STATE(912), 1, sym_primary_expression, - STATE(1025), 1, + STATE(971), 1, sym_string, - STATE(1413), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1957), 1, + STATE(1792), 1, sym_expression, - STATE(2691), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58398,7 +57867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58415,58 +57884,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38419] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [37735] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, - anon_sym_not, - ACTIONS(989), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(979), 1, + STATE(970), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1447), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1911), 1, sym_expression, - STATE(2611), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, - sym_ellipsis, - sym_float, - ACTIONS(981), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58474,7 +57943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58491,58 +57960,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38517] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [37833] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_not, - ACTIONS(837), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1010), 1, sym_string, - STATE(1307), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1919), 1, sym_expression, - STATE(2690), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, - sym_ellipsis, - sym_float, - ACTIONS(1153), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58550,7 +58019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58567,58 +58036,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38615] = 22, - ACTIONS(307), 1, + [37931] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1988), 1, + STATE(1660), 1, sym_expression, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58626,7 +58095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58643,58 +58112,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38713] = 22, - ACTIONS(779), 1, + [38029] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(979), 1, + STATE(967), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1948), 1, sym_expression, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58702,7 +58171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58719,58 +58188,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38811] = 22, - ACTIONS(801), 1, + [38127] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1147), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1105), 1, anon_sym_await, - ACTIONS(1257), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(909), 1, sym_primary_expression, - STATE(1022), 1, + STATE(975), 1, sym_string, - STATE(1307), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1892), 1, sym_expression, - STATE(2690), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58778,7 +58247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58795,14 +58264,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38909] = 22, - ACTIONS(779), 1, + [38225] = 22, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(987), 1, anon_sym_not, @@ -58810,30 +58279,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(991), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1257), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(979), 1, + STATE(976), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1107), 1, sym_string, - STATE(1447), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1929), 1, sym_expression, - STATE(2611), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, ACTIONS(981), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58841,12 +58310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58854,7 +58323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58871,58 +58340,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39007] = 22, - ACTIONS(779), 1, + [38323] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(979), 1, + STATE(967), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1949), 1, sym_expression, - STATE(2611), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58930,7 +58399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58947,58 +58416,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39105] = 22, - ACTIONS(307), 1, + [38421] = 22, + ACTIONS(755), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1015), 1, + sym_string, + STATE(1258), 1, + sym_list_splat_pattern, + STATE(1852), 1, + sym_expression, + STATE(2771), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(1059), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1057), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(753), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1806), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1367), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38519] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(2075), 1, + STATE(1661), 1, sym_expression, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59006,7 +58551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59023,14 +58568,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39203] = 22, - ACTIONS(307), 1, + [38617] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -59038,43 +58583,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2055), 1, + STATE(1729), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59082,7 +58627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59099,53 +58644,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39301] = 22, - ACTIONS(779), 1, + [38715] = 23, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1501), 1, sym_identifier, - ACTIONS(1343), 1, - anon_sym_STAR, - STATE(979), 1, - sym_primary_expression, - STATE(1069), 1, + ACTIONS(1507), 1, + anon_sym_await, + STATE(975), 1, sym_string, - STATE(1447), 1, + STATE(991), 1, + sym_primary_expression, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1905), 1, sym_expression, - STATE(2611), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1505), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(1173), 2, + sym_attribute, + sym_subscript, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1503), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, @@ -59158,11 +58706,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1172), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59175,58 +58721,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39399] = 22, - ACTIONS(307), 1, + [38815] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(383), 1, sym_identifier, - ACTIONS(668), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(968), 1, + STATE(865), 1, sym_primary_expression, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1965), 1, sym_expression, - STATE(2711), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(395), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(391), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59234,7 +58780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59251,58 +58797,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39497] = 22, - ACTIONS(801), 1, + [38913] = 22, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(859), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(861), 1, anon_sym_lambda, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(964), 1, + STATE(912), 1, sym_primary_expression, - STATE(1022), 1, + STATE(971), 1, sym_string, - STATE(1307), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1880), 1, sym_expression, - STATE(2690), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59310,7 +58856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59327,14 +58873,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39595] = 22, - ACTIONS(307), 1, + [39011] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -59342,43 +58888,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1941), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59386,7 +58932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59403,58 +58949,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39693] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [39109] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(965), 1, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1855), 1, + STATE(1720), 1, sym_expression, - STATE(2614), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1137), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59462,7 +59008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59479,58 +59025,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39791] = 22, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [39207] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(865), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, + sym_identifier, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(904), 1, + STATE(865), 1, sym_primary_expression, - STATE(982), 1, + STATE(969), 1, sym_string, - STATE(1212), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1877), 1, sym_expression, - STATE(2605), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59538,7 +59084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59555,14 +59101,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39889] = 22, - ACTIONS(307), 1, + [39305] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -59570,43 +59116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2047), 1, + STATE(2000), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59614,7 +59160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59631,53 +59177,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39987] = 22, - ACTIONS(779), 1, + [39403] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1095), 1, sym_identifier, - ACTIONS(1343), 1, - anon_sym_STAR, - STATE(979), 1, + ACTIONS(1105), 1, + anon_sym_await, + STATE(909), 1, sym_primary_expression, - STATE(1069), 1, + STATE(975), 1, sym_string, - STATE(1447), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1769), 1, sym_expression, - STATE(2611), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, @@ -59690,7 +59236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59707,146 +59253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40085] = 9, - ACTIONS(1497), 1, - anon_sym_else, - ACTIONS(1499), 1, - anon_sym_except, - ACTIONS(1501), 1, - anon_sym_finally, - STATE(716), 1, - sym_else_clause, - STATE(731), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(611), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40157] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(2048), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [40255] = 22, + [39501] = 22, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -59855,25 +59262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(819), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(991), 1, anon_sym_await, ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(964), 1, + STATE(976), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1956), 1, sym_expression, - STATE(2690), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59881,14 +59288,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59897,7 +59304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59905,7 +59312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59922,7 +59329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40353] = 23, + [39599] = 22, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -59931,23 +59338,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(797), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(883), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(885), 1, anon_sym_lambda, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1503), 1, + ACTIONS(1159), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1169), 1, anon_sym_await, - STATE(979), 1, + ACTIONS(1267), 1, + anon_sym_STAR, + STATE(965), 1, sym_primary_expression, - STATE(1069), 1, + STATE(996), 1, sym_string, - STATE(1447), 1, + STATE(1360), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1779), 1, sym_expression, STATE(2611), 1, sym__named_expression_lhs, @@ -59957,17 +59364,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(1507), 2, + ACTIONS(1165), 2, anon_sym_match, anon_sym_type, - STATE(1483), 2, - sym_attribute, - sym_subscript, ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1505), 3, + ACTIONS(1163), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59976,7 +59380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1793), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59984,9 +59388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 14, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59999,58 +59405,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40453] = 22, - ACTIONS(67), 1, + [39697] = 23, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(383), 1, + ACTIONS(1315), 1, + anon_sym_STAR, + ACTIONS(1509), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(1515), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(860), 1, - sym_primary_expression, STATE(967), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1118), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1969), 1, sym_expression, - STATE(2775), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(1513), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1477), 2, + sym_attribute, + sym_subscript, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(1511), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60058,11 +59467,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1270), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60075,103 +59482,89 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40551] = 23, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, - anon_sym_not, - ACTIONS(1013), 1, - anon_sym_lambda, - ACTIONS(1511), 1, - sym_identifier, - ACTIONS(1517), 1, - anon_sym_await, - STATE(981), 1, - sym_string, - STATE(1023), 1, - sym_primary_expression, - STATE(1183), 1, - sym_list_splat_pattern, - STATE(1958), 1, - sym_expression, - STATE(2746), 1, - sym__named_expression_lhs, + [39797] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(704), 1, + sym_else_clause, + STATE(729), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, - sym_ellipsis, - sym_float, - ACTIONS(1515), 2, - anon_sym_match, - anon_sym_type, - STATE(1206), 2, - sym_attribute, - sym_subscript, - ACTIONS(696), 3, + STATE(622), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1517), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1513), 3, + sym_ellipsis, + sym_float, + ACTIONS(1519), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(684), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1762), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1208), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [40651] = 9, - ACTIONS(1497), 1, + [39869] = 9, + ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1501), 1, + ACTIONS(1489), 1, anon_sym_finally, - ACTIONS(1519), 1, + ACTIONS(1491), 1, anon_sym_except_STAR, - STATE(716), 1, + STATE(704), 1, sym_else_clause, - STATE(731), 1, + STATE(729), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(620), 2, + STATE(623), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(1495), 12, - sym__dedent, + ACTIONS(1517), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -60182,7 +59575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1519), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -60215,61 +59608,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [40723] = 23, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [39941] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1509), 1, - anon_sym_await, - ACTIONS(1521), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - STATE(1028), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1665), 1, sym_expression, - STATE(2611), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1525), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - STATE(1267), 2, - sym_attribute, - sym_subscript, - ACTIONS(789), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1523), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60277,9 +59667,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 14, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60292,14 +59684,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40823] = 22, - ACTIONS(307), 1, + [40039] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -60307,43 +59699,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2015), 1, + STATE(2064), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60351,7 +59743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60368,61 +59760,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40921] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [40137] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1301), 1, - anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1533), 1, + ACTIONS(406), 1, anon_sym_await, - STATE(963), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1413), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1780), 1, sym_expression, - STATE(2691), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1531), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1529), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60430,9 +59819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 14, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60445,58 +59836,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41021] = 22, - ACTIONS(801), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + [40235] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - sym_string_start, - ACTIONS(835), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(837), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1147), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(406), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(964), 1, + STATE(865), 1, sym_primary_expression, - STATE(1022), 1, + STATE(969), 1, sym_string, - STATE(1307), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(2034), 1, sym_expression, - STATE(2690), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60504,7 +59895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60521,58 +59912,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41119] = 22, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [40333] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(965), 1, + STATE(970), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1010), 1, sym_string, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(2091), 1, sym_expression, - STATE(2614), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(1137), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1135), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(731), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1796), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60580,7 +59971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60597,61 +59988,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41217] = 23, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [40431] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1517), 1, - anon_sym_await, - ACTIONS(1535), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - STATE(946), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1183), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1958), 1, + STATE(1657), 1, sym_expression, - STATE(2746), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1539), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - STATE(1484), 2, - sym_attribute, - sym_subscript, - ACTIONS(696), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1537), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60659,9 +60047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 14, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60674,58 +60064,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41317] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [40529] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(963), 1, + STATE(970), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1010), 1, sym_string, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(2013), 1, sym_expression, - STATE(2691), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1031), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60733,7 +60123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60750,58 +60140,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41415] = 22, - ACTIONS(67), 1, + [40627] = 22, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(406), 1, + ACTIONS(859), 1, + anon_sym_not, + ACTIONS(861), 1, + anon_sym_lambda, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(649), 1, - anon_sym_LPAREN, - ACTIONS(657), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(860), 1, + STATE(912), 1, sym_primary_expression, - STATE(967), 1, + STATE(971), 1, sym_string, - STATE(1118), 1, + STATE(1203), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1745), 1, sym_expression, - STATE(2775), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(395), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(731), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1771), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60809,7 +60199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60826,58 +60216,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41513] = 22, - ACTIONS(711), 1, + [40725] = 23, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_not, - ACTIONS(861), 1, + ACTIONS(989), 1, anon_sym_lambda, - ACTIONS(865), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(904), 1, + ACTIONS(1499), 1, + anon_sym_await, + ACTIONS(1521), 1, + sym_identifier, + STATE(976), 1, sym_primary_expression, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1973), 1, sym_expression, - STATE(2605), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(1525), 2, anon_sym_match, anon_sym_type, - ACTIONS(721), 3, + STATE(1478), 2, + sym_attribute, + sym_subscript, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(1523), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(709), 4, + ACTIONS(799), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1751), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60885,11 +60278,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1171), 16, + STATE(1442), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60902,58 +60293,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41611] = 22, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [40825] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(406), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1183), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1889), 1, + STATE(1658), 1, sym_expression, - STATE(2746), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60961,7 +60352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60978,7 +60369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41709] = 22, + [40923] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -60995,17 +60386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(860), 1, + STATE(865), 1, sym_primary_expression, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1859), 1, + STATE(1659), 1, sym_expression, - STATE(2775), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61029,7 +60420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61037,7 +60428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61054,71 +60445,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41807] = 9, - ACTIONS(1497), 1, - anon_sym_else, - ACTIONS(1499), 1, - anon_sym_except, - ACTIONS(1501), 1, - anon_sym_finally, - STATE(721), 1, - sym_else_clause, - STATE(809), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(611), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [41879] = 22, - ACTIONS(757), 1, + [41021] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -61126,25 +60454,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1908), 1, + STATE(1798), 1, sym_expression, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61152,23 +60480,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61176,7 +60504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61193,121 +60521,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41977] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_finally, - ACTIONS(1491), 1, - anon_sym_except_STAR, - STATE(700), 1, - sym_else_clause, - STATE(822), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(616), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1495), 12, - sym_string_start, - ts_builtin_sym_end, + [41119] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(719), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(723), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42049] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(2081), 1, + STATE(1907), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61315,7 +60580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61332,121 +60597,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42147] = 9, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(700), 1, - sym_else_clause, - STATE(822), 1, - sym_finally_clause, + [41217] = 22, + ACTIONS(755), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1015), 1, + sym_string, + STATE(1258), 1, + sym_list_splat_pattern, + STATE(1834), 1, + sym_expression, + STATE(2771), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(1059), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1057), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(753), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42219] = 22, - ACTIONS(686), 1, + STATE(1806), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1367), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41315] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1107), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1061), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(981), 1, + STATE(1015), 1, sym_string, - STATE(1183), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1807), 1, sym_expression, - STATE(2746), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61454,7 +60732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61471,58 +60749,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42317] = 22, - ACTIONS(801), 1, + [41413] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(819), 1, + ACTIONS(775), 1, sym_string_start, ACTIONS(835), 1, anon_sym_not, ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1147), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1061), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1015), 1, sym_string, - STATE(1307), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1874), 1, + STATE(1808), 1, sym_expression, - STATE(2690), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(815), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1153), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, - ACTIONS(811), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1151), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61530,7 +60808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1404), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61547,58 +60825,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42415] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [41511] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(968), 1, + STATE(963), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1015), 1, sym_string, - STATE(1269), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(2010), 1, + STATE(1809), 1, sym_expression, - STATE(2711), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1059), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1057), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61606,7 +60884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61623,197 +60901,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42513] = 9, - ACTIONS(1497), 1, - anon_sym_else, - ACTIONS(1501), 1, - anon_sym_finally, - ACTIONS(1519), 1, - anon_sym_except_STAR, - STATE(721), 1, - sym_else_clause, - STATE(809), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(620), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1481), 12, - sym__dedent, - sym_string_start, + [41609] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(694), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(698), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, + ACTIONS(1017), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1095), 1, sym_identifier, + ACTIONS(1105), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42585] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, + STATE(909), 1, sym_primary_expression, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1269), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1755), 1, sym_expression, - STATE(2711), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1103), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [42683] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(2044), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61821,7 +60960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61838,53 +60977,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42781] = 22, - ACTIONS(779), 1, + [41707] = 23, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(987), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(991), 1, + ACTIONS(1507), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1527), 1, sym_identifier, - ACTIONS(1343), 1, - anon_sym_STAR, - STATE(979), 1, + STATE(909), 1, sym_primary_expression, - STATE(1069), 1, + STATE(975), 1, sym_string, - STATE(1447), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1905), 1, sym_expression, - STATE(2611), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(1531), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + STATE(1479), 2, + sym_attribute, + sym_subscript, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(1529), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, @@ -61897,11 +61039,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1172), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61914,61 +61054,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42879] = 23, - ACTIONS(757), 1, + [41807] = 22, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1007), 1, + anon_sym_STAR, + ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1017), 1, anon_sym_lambda, - ACTIONS(1301), 1, - anon_sym_STAR, - ACTIONS(1533), 1, - anon_sym_await, - ACTIONS(1541), 1, + ACTIONS(1095), 1, sym_identifier, - STATE(991), 1, + ACTIONS(1105), 1, + anon_sym_await, + STATE(909), 1, sym_primary_expression, - STATE(1025), 1, + STATE(975), 1, sym_string, - STATE(1413), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1762), 1, sym_expression, - STATE(2691), 1, + STATE(2773), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(1545), 2, + ACTIONS(1103), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(767), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1543), 3, + ACTIONS(1101), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(684), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1767), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61976,9 +61113,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 14, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61991,58 +61130,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42979] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_LBRACK, - ACTIONS(791), 1, + [41905] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(987), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(991), 1, - anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(383), 1, sym_identifier, - ACTIONS(1343), 1, + ACTIONS(406), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_LBRACK, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(979), 1, + STATE(865), 1, sym_primary_expression, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1662), 1, sym_expression, - STATE(2611), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, + ACTIONS(395), 2, anon_sym_match, anon_sym_type, - ACTIONS(789), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(391), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1666), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62050,7 +61189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1448), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62067,58 +61206,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43077] = 22, - ACTIONS(686), 1, + [42003] = 22, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(704), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_STAR, - ACTIONS(1011), 1, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1117), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(946), 1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, + STATE(967), 1, sym_primary_expression, - STATE(981), 1, + STATE(1028), 1, sym_string, - STATE(1183), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1910), 1, sym_expression, - STATE(2746), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(700), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(1075), 2, anon_sym_match, anon_sym_type, - ACTIONS(696), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(1073), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 4, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1762), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62126,7 +61265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1208), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62143,58 +61282,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43175] = 22, - ACTIONS(307), 1, + [42101] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(2043), 1, + STATE(1916), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62202,7 +61341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62219,8 +61358,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43273] = 22, - ACTIONS(757), 1, + [42199] = 22, + ACTIONS(755), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -62228,25 +61367,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(835), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(837), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1289), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1015), 1, sym_string, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1832), 1, sym_expression, - STATE(2691), 1, + STATE(2771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62254,23 +61393,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1031), 2, + ACTIONS(1059), 2, anon_sym_match, anon_sym_type, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1029), 3, + ACTIONS(1057), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(753), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1806), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62278,7 +61417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62295,58 +61434,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43371] = 22, - ACTIONS(307), 1, + [42297] = 22, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, + anon_sym_not, + ACTIONS(1043), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, + STATE(967), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, - STATE(2096), 1, + STATE(1733), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1075), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1073), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62354,7 +61493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62371,58 +61510,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43469] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, + [42395] = 23, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1041), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1043), 1, + anon_sym_lambda, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, + ACTIONS(1515), 1, + anon_sym_await, + ACTIONS(1533), 1, + sym_identifier, + STATE(1028), 1, sym_string, - STATE(1269), 1, + STATE(1030), 1, + sym_primary_expression, + STATE(1388), 1, sym_list_splat_pattern, - STATE(2070), 1, + STATE(1969), 1, sym_expression, - STATE(2711), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(1537), 2, + anon_sym_match, + anon_sym_type, + STATE(1377), 2, + sym_attribute, + sym_subscript, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(1535), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(709), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62430,11 +61572,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1270), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -62447,74 +61587,200 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43567] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(314), 1, - anon_sym_lambda, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - sym_identifier, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1067), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(968), 1, - sym_primary_expression, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1914), 1, - sym_expression, - STATE(2711), 1, - sym__named_expression_lhs, + [42495] = 9, + ACTIONS(1539), 1, + anon_sym_else, + ACTIONS(1541), 1, + anon_sym_except, + ACTIONS(1543), 1, + anon_sym_finally, + STATE(718), 1, + sym_else_clause, + STATE(818), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(318), 2, + STATE(624), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1517), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(1519), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1720), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1339), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, + [42567] = 9, + ACTIONS(1539), 1, + anon_sym_else, + ACTIONS(1543), 1, + anon_sym_finally, + ACTIONS(1545), 1, + anon_sym_except_STAR, + STATE(718), 1, + sym_else_clause, + STATE(818), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(625), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1517), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1519), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42639] = 22, + ACTIONS(755), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_not, + ACTIONS(837), 1, + anon_sym_lambda, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1061), 1, + anon_sym_await, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1015), 1, + sym_string, + STATE(1258), 1, + sym_list_splat_pattern, + STATE(1813), 1, + sym_expression, + STATE(2771), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(1059), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1057), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(753), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1806), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1367), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, @@ -62523,14 +61789,216 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43665] = 22, - ACTIONS(307), 1, + [42737] = 22, + ACTIONS(801), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_LBRACK, + ACTIONS(813), 1, + anon_sym_LBRACE, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(987), 1, + anon_sym_not, + ACTIONS(989), 1, + anon_sym_lambda, + ACTIONS(991), 1, + anon_sym_await, + ACTIONS(1257), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(976), 1, + sym_primary_expression, + STATE(1107), 1, + sym_string, + STATE(1437), 1, + sym_list_splat_pattern, + STATE(1756), 1, + sym_expression, + STATE(2777), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(815), 2, + sym_ellipsis, + sym_float, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(811), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(979), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(799), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1751), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1442), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42835] = 9, + ACTIONS(1539), 1, + anon_sym_else, + ACTIONS(1541), 1, + anon_sym_except, + ACTIONS(1543), 1, + anon_sym_finally, + STATE(720), 1, + sym_else_clause, + STATE(834), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(624), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42907] = 9, + ACTIONS(1539), 1, + anon_sym_else, + ACTIONS(1543), 1, + anon_sym_finally, + ACTIONS(1545), 1, + anon_sym_except_STAR, + STATE(720), 1, + sym_else_clause, + STATE(834), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(625), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42979] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -62538,43 +62006,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(2011), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62582,7 +62050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62599,14 +62067,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43763] = 22, - ACTIONS(307), 1, + [43077] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -62614,43 +62082,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2068), 1, + STATE(2049), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62658,7 +62126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62675,58 +62143,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43861] = 22, - ACTIONS(67), 1, + [43175] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(2063), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62734,7 +62202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62751,58 +62219,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43959] = 22, - ACTIONS(67), 1, + [43273] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(2070), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62810,7 +62278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62827,58 +62295,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44057] = 22, - ACTIONS(67), 1, + [43371] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ACTIONS(383), 1, + ACTIONS(408), 1, sym_identifier, - ACTIONS(406), 1, - anon_sym_await, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(860), 1, + STATE(970), 1, sym_primary_expression, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2076), 1, sym_expression, STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(395), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(391), 3, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62886,7 +62354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62903,14 +62371,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44155] = 22, - ACTIONS(307), 1, + [43469] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(314), 1, + ACTIONS(317), 1, anon_sym_lambda, - ACTIONS(322), 1, + ACTIONS(325), 1, anon_sym_await, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(408), 1, sym_identifier, @@ -62918,43 +62386,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1067), 1, + ACTIONS(1049), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(968), 1, + STATE(970), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(2095), 1, + STATE(1992), 1, sym_expression, - STATE(2711), 1, + STATE(2775), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1720), 7, + STATE(1717), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62962,7 +62430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62979,196 +62447,555 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44253] = 10, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1556), 1, - anon_sym_COLON, - ACTIONS(1559), 1, - anon_sym_EQ, - ACTIONS(1561), 1, + [43567] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, anon_sym_LBRACK, - STATE(2105), 1, - sym_type_parameter, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2084), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1552), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44326] = 5, - ACTIONS(1569), 1, - anon_sym_except, + anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43665] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2094), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1565), 12, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43763] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2095), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43861] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2099), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1567), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(290), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44388] = 5, - ACTIONS(1572), 1, - anon_sym_except, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43959] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2100), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(611), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1565), 12, - sym__dedent, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44057] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2101), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44155] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + anon_sym_lambda, + ACTIONS(325), 1, + anon_sym_await, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(408), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_not, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(2088), 1, + sym_expression, + STATE(2775), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1567), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(290), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44450] = 8, - ACTIONS(284), 1, + STATE(1717), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44253] = 10, + ACTIONS(1549), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(1554), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_EQ, - ACTIONS(326), 1, + ACTIONS(1556), 1, anon_sym_COLON, + ACTIONS(1559), 1, + anon_sym_EQ, + ACTIONS(1561), 1, + anon_sym_LBRACK, + STATE(2018), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 13, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63182,7 +63009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(1552), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63198,7 +63025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1547), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63206,7 +63033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -63216,23 +63042,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44518] = 8, - ACTIONS(1485), 1, + [44326] = 8, + ACTIONS(1539), 1, anon_sym_else, - ACTIONS(1579), 1, + ACTIONS(1569), 1, anon_sym_elif, - STATE(628), 1, + STATE(630), 1, aux_sym_if_statement_repeat1, - STATE(717), 1, + STATE(716), 1, sym_elif_clause, - STATE(749), 1, + STATE(841), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 12, + ACTIONS(1567), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63243,7 +63069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1577), 32, + ACTIONS(1565), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63276,21 +63102,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44586] = 8, + [44394] = 8, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1579), 1, + ACTIONS(1575), 1, anon_sym_elif, - STATE(625), 1, + STATE(614), 1, aux_sym_if_statement_repeat1, - STATE(717), 1, + STATE(701), 1, sym_elif_clause, - STATE(748), 1, + STATE(733), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 12, + ACTIONS(1571), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63303,7 +63129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1583), 32, + ACTIONS(1573), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63336,19 +63162,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44654] = 8, + [44462] = 7, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 13, + ACTIONS(302), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(319), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63396,29 +63221,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44722] = 5, - ACTIONS(1589), 1, - anon_sym_except_STAR, + [44528] = 8, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_COLON, + ACTIONS(302), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(616), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1585), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(319), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [44596] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1575), 1, + anon_sym_elif, + STATE(632), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, + STATE(756), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1567), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1587), 34, + ACTIONS(1565), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63430,13 +63320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63453,21 +63341,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44784] = 8, - ACTIONS(1497), 1, + [44664] = 8, + ACTIONS(1539), 1, anon_sym_else, - ACTIONS(1596), 1, + ACTIONS(1569), 1, anon_sym_elif, - STATE(622), 1, + STATE(619), 1, aux_sym_if_statement_repeat1, - STATE(703), 1, + STATE(716), 1, sym_elif_clause, - STATE(781), 1, + STATE(808), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1594), 12, + ACTIONS(1579), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63480,7 +63368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1592), 32, + ACTIONS(1577), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63513,21 +63401,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44852] = 8, + [44732] = 8, ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1579), 1, + ACTIONS(1575), 1, anon_sym_elif, - STATE(613), 1, + STATE(632), 1, aux_sym_if_statement_repeat1, - STATE(717), 1, + STATE(701), 1, sym_elif_clause, - STATE(741), 1, + STATE(732), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1594), 12, + ACTIONS(1581), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63540,7 +63428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1592), 32, + ACTIONS(1583), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63573,7 +63461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44920] = 7, + [44800] = 7, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, @@ -63581,10 +63469,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(294), 2, + ACTIONS(302), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(316), 13, + ACTIONS(319), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63632,18 +63520,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44986] = 5, - ACTIONS(1598), 1, - anon_sym_except_STAR, + [44866] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1575), 1, + anon_sym_elif, + STATE(616), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, + STATE(786), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(620), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1585), 12, - sym__dedent, + ACTIONS(1579), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63654,7 +63547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1587), 34, + ACTIONS(1577), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63666,13 +63559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63689,80 +63580,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45048] = 7, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(316), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45114] = 8, - ACTIONS(1497), 1, + [44934] = 8, + ACTIONS(1539), 1, anon_sym_else, - ACTIONS(1596), 1, + ACTIONS(1569), 1, anon_sym_elif, - STATE(637), 1, + STATE(630), 1, aux_sym_if_statement_repeat1, - STATE(703), 1, + STATE(716), 1, sym_elif_clause, - STATE(746), 1, + STATE(825), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 12, + ACTIONS(1581), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63775,7 +63607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1577), 32, + ACTIONS(1583), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63808,21 +63640,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45182] = 8, - ACTIONS(1497), 1, + [45002] = 8, + ACTIONS(1539), 1, anon_sym_else, - ACTIONS(1596), 1, + ACTIONS(1569), 1, anon_sym_elif, - STATE(637), 1, + STATE(610), 1, aux_sym_if_statement_repeat1, - STATE(703), 1, + STATE(716), 1, sym_elif_clause, - STATE(832), 1, + STATE(826), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 12, + ACTIONS(1571), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63835,7 +63667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1601), 32, + ACTIONS(1573), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63868,18 +63700,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45250] = 7, - ACTIONS(1549), 1, + [45070] = 8, + ACTIONS(284), 1, anon_sym_COMMA, - ACTIONS(1554), 1, + ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_COLON, + ACTIONS(302), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1563), 13, + ACTIONS(319), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63893,7 +63726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63909,7 +63742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, + ACTIONS(277), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63927,21 +63760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45316] = 8, - ACTIONS(1485), 1, - anon_sym_else, - ACTIONS(1579), 1, - anon_sym_elif, - STATE(628), 1, - aux_sym_if_statement_repeat1, - STATE(717), 1, - sym_elif_clause, - STATE(834), 1, - sym_else_clause, + [45138] = 5, + ACTIONS(1589), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 12, + STATE(622), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1585), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63954,7 +63782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1601), 32, + ACTIONS(1587), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63966,11 +63794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63987,23 +63817,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45384] = 8, - ACTIONS(1497), 1, - anon_sym_else, + [45200] = 5, ACTIONS(1596), 1, - anon_sym_elif, - STATE(623), 1, - aux_sym_if_statement_repeat1, - STATE(703), 1, - sym_elif_clause, - STATE(747), 1, - sym_else_clause, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 12, - sym__dedent, + STATE(623), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1592), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64014,7 +63839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1583), 32, + ACTIONS(1594), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64026,11 +63851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64047,73 +63874,75 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45452] = 3, + [45262] = 5, + ACTIONS(1599), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 16, + STATE(624), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1585), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1587), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45509] = 6, - ACTIONS(1613), 1, - anon_sym_elif, - STATE(628), 1, - aux_sym_if_statement_repeat1, - STATE(717), 1, - sym_elif_clause, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45324] = 5, + ACTIONS(1602), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 12, + STATE(625), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1592), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64124,7 +63953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1611), 33, + ACTIONS(1594), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64142,6 +63971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64158,72 +63988,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45572] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1618), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1624), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1616), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45633] = 6, - ACTIONS(1628), 1, + [45386] = 7, + ACTIONS(1549), 1, anon_sym_COMMA, - ACTIONS(1635), 1, - anon_sym_EQ, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 14, + ACTIONS(1559), 2, anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64237,7 +64013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1631), 15, + ACTIONS(1552), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64253,7 +64029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 17, + ACTIONS(1547), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64271,28 +64047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45696] = 7, - ACTIONS(1639), 1, - anon_sym_PIPE, + [45452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1618), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1637), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1624), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 12, + ACTIONS(1607), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -64300,13 +64066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64329,16 +64101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45761] = 6, + [45509] = 6, ACTIONS(1559), 1, anon_sym_EQ, - ACTIONS(1643), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 14, + ACTIONS(1611), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64352,7 +64124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1646), 15, + ACTIONS(1614), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64368,7 +64140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 17, + ACTIONS(1609), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64386,16 +64158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45824] = 6, - ACTIONS(1655), 1, + [45572] = 6, + ACTIONS(1559), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 2, + ACTIONS(1549), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1657), 13, + ACTIONS(1563), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64409,7 +64181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1653), 15, + ACTIONS(1552), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64425,7 +64197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 17, + ACTIONS(1547), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64443,16 +64215,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45887] = 6, - ACTIONS(1635), 1, - anon_sym_EQ, + [45635] = 6, + ACTIONS(1620), 1, + anon_sym_elif, + STATE(630), 1, + aux_sym_if_statement_repeat1, + STATE(716), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1618), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1616), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45698] = 6, + ACTIONS(1625), 1, anon_sym_COMMA, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 14, anon_sym_COLON, - ACTIONS(1633), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64466,7 +64295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1631), 15, + ACTIONS(1628), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64482,7 +64311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 17, + ACTIONS(1623), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64500,16 +64329,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45950] = 6, - ACTIONS(1559), 1, + [45761] = 6, + ACTIONS(1634), 1, + anon_sym_elif, + STATE(632), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1618), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1616), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45824] = 6, + ACTIONS(1632), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, + ACTIONS(1625), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1563), 13, + ACTIONS(1630), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64523,7 +64409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1552), 15, + ACTIONS(1628), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64539,7 +64425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 17, + ACTIONS(1623), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64557,16 +64443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46013] = 6, - ACTIONS(1559), 1, + [45887] = 6, + ACTIONS(1644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 2, + ACTIONS(1639), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1563), 13, + ACTIONS(1646), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64580,7 +64466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1646), 15, + ACTIONS(1642), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64596,7 +64482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 17, + ACTIONS(1637), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64614,72 +64500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46076] = 6, - ACTIONS(1659), 1, - anon_sym_elif, - STATE(637), 1, - aux_sym_if_statement_repeat1, - STATE(703), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1611), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [46139] = 6, - ACTIONS(1650), 1, + [45950] = 6, + ACTIONS(1639), 1, anon_sym_COMMA, - ACTIONS(1655), 1, + ACTIONS(1644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 14, + ACTIONS(1646), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64694,7 +64523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1653), 15, + ACTIONS(1642), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64710,7 +64539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 17, + ACTIONS(1637), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64728,18 +64557,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46202] = 3, + [46013] = 7, + ACTIONS(1660), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 16, + ACTIONS(1650), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1652), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1655), 12, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -64747,19 +64586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 32, + ACTIONS(1648), 28, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64782,7 +64615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46259] = 3, + [46078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -64836,7 +64669,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46316] = 6, + [46135] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1655), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1648), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46196] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(665), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46257] = 6, ACTIONS(1549), 1, anon_sym_COMMA, ACTIONS(1559), 1, @@ -64893,22 +64838,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46379] = 5, + [46320] = 6, + ACTIONS(1559), 1, + anon_sym_EQ, + ACTIONS(1611), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(670), 3, - anon_sym_EQ, + ACTIONS(1563), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1614), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 3, + ACTIONS(1609), 17, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(665), 13, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46383] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1668), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64919,14 +64914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1666), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65057,22 +65057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46554] = 5, + [46554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(670), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1676), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65083,14 +65076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1674), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65113,15 +65111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46615] = 3, + [46611] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65132,19 +65137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(663), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65225,11 +65225,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, + ACTIONS(1678), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65238,7 +65239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1680), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65250,7 +65251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65278,9 +65278,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, + ACTIONS(1684), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65291,7 +65291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1684), 35, + ACTIONS(1682), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65331,11 +65331,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, + ACTIONS(1678), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65344,7 +65345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1680), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65362,7 +65363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65380,82 +65380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46897] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1686), 1, - sym_identifier, - ACTIONS(1688), 1, - anon_sym_LPAREN, - ACTIONS(1690), 1, - anon_sym_STAR, - ACTIONS(1696), 1, - anon_sym_LBRACK, - ACTIONS(1698), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1577), 1, - sym_list_splat_pattern, - STATE(1626), 1, - sym_primary_expression, - STATE(1992), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1694), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2076), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1692), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(973), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [46989] = 3, + [46897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 12, + ACTIONS(1688), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65468,7 +65397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65480,13 +65409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65504,11 +65433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47045] = 3, + [46953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1706), 12, + ACTIONS(1692), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65521,7 +65450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1704), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65557,11 +65486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47101] = 3, + [47009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(1696), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65574,7 +65503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65610,16 +65539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47157] = 3, + [47065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 13, + ACTIONS(1700), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65628,7 +65556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 34, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65646,6 +65574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65663,16 +65592,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47213] = 3, + [47121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1704), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65681,7 +65609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65693,6 +65621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65716,117 +65645,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47269] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1716), 12, + [47177] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(1708), 1, anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_STAR, + ACTIONS(1716), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1718), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1718), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [47325] = 3, + STATE(1010), 1, + sym_string, + STATE(1578), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + STATE(2046), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1714), 2, + anon_sym_match, + anon_sym_type, + STATE(1576), 2, + sym_attribute, + sym_subscript, + STATE(2052), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1722), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(1712), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [47381] = 3, + ACTIONS(973), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [47269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1684), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65840,7 +65734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 34, + ACTIONS(1682), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65875,16 +65769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47437] = 3, + [47325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 13, + ACTIONS(1692), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65893,7 +65786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65911,6 +65804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65928,82 +65822,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47493] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1686), 1, - sym_identifier, - ACTIONS(1688), 1, - anon_sym_LPAREN, - ACTIONS(1690), 1, - anon_sym_STAR, - ACTIONS(1696), 1, - anon_sym_LBRACK, - ACTIONS(1698), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1577), 1, - sym_list_splat_pattern, - STATE(1626), 1, - sym_primary_expression, - STATE(1992), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1694), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2076), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1692), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(959), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [47585] = 3, + [47381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1696), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66016,7 +65839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66052,11 +65875,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47641] = 3, + [47437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 13, + ACTIONS(1704), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66070,7 +65893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1702), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66105,15 +65928,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47697] = 3, + [47493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 12, + ACTIONS(1692), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66122,7 +65946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1690), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66140,7 +65964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66158,11 +65981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47753] = 3, + [47549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 13, + ACTIONS(1696), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66176,7 +65999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1694), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66211,13 +66034,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47809] = 3, + [47605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, + ACTIONS(1700), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66229,7 +66052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1698), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66264,11 +66087,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47865] = 3, + [47661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1700), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66281,7 +66104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 35, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66317,13 +66140,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47921] = 3, + [47717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, + ACTIONS(1722), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66334,7 +66157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1720), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66346,13 +66169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66370,11 +66193,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47977] = 3, + [47773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1726), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66388,7 +66211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 34, + ACTIONS(1724), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66423,13 +66246,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48033] = 3, + [47829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, - sym__dedent, + ACTIONS(1684), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66440,7 +66263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1682), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66452,13 +66275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66476,13 +66299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48089] = 3, + [47885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, + ACTIONS(1730), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66493,7 +66316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1728), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66529,13 +66352,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48145] = 3, + [47941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 12, - sym__dedent, + ACTIONS(1732), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66546,7 +66369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1734), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66558,13 +66381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66582,15 +66405,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48201] = 3, + [47997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, + ACTIONS(1738), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66599,7 +66423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1684), 35, + ACTIONS(1736), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66617,7 +66441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66635,16 +66458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48257] = 3, + [48053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, + ACTIONS(1704), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66653,7 +66475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66665,6 +66487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66688,16 +66511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48313] = 3, + [48109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 13, + ACTIONS(1742), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66706,7 +66528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 34, + ACTIONS(1740), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66724,6 +66546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66741,11 +66564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48369] = 3, + [48165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1704), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66758,7 +66581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66794,11 +66617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48425] = 3, + [48221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 12, + ACTIONS(1688), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66811,7 +66634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66847,16 +66670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48481] = 3, + [48277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, - sym__dedent, + ACTIONS(1744), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66865,7 +66687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66883,6 +66705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66900,16 +66723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48537] = 3, + [48333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 13, + ACTIONS(1744), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66918,7 +66740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66936,6 +66758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66953,13 +66776,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48593] = 3, + [48389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 13, + ACTIONS(1750), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66971,7 +66794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 34, + ACTIONS(1748), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67006,15 +66829,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48649] = 3, + [48445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, - sym__dedent, + ACTIONS(1692), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67023,7 +66847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1690), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67035,7 +66859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67059,13 +66882,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48705] = 3, + [48501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1696), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67076,7 +66899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67112,15 +66935,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48761] = 3, + [48557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 12, + ACTIONS(1700), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67129,7 +66953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1698), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67141,7 +66965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67165,13 +66988,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48817] = 3, + [48613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, - sym__dedent, + ACTIONS(1722), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67182,7 +67005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1720), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67218,15 +67041,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48873] = 3, + [48669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1726), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67235,7 +67059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1724), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67253,7 +67077,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67271,13 +67094,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48929] = 3, + [48725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, + ACTIONS(1684), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67288,7 +67111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1682), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67300,13 +67123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67324,11 +67147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48985] = 3, + [48781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 13, + ACTIONS(1684), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67342,7 +67165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 34, + ACTIONS(1682), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67377,11 +67200,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49041] = 3, + [48837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 12, + ACTIONS(1730), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67394,7 +67217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1728), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67406,13 +67229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67430,13 +67253,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49097] = 3, + [48893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 13, - sym__dedent, + ACTIONS(1738), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67448,7 +67271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 34, + ACTIONS(1736), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67483,16 +67306,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49153] = 3, + [48949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, - sym__dedent, + ACTIONS(1742), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67501,7 +67323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1740), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67519,6 +67341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67536,15 +67359,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49209] = 3, + [49005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1706), 12, + ACTIONS(1750), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67553,7 +67377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1704), 35, + ACTIONS(1748), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67571,7 +67395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67589,11 +67412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49265] = 3, + [49061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1684), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67606,7 +67429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1682), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67618,13 +67441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67642,68 +67465,87 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49321] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 12, + [49117] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(1708), 1, anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_STAR, + ACTIONS(1716), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1718), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1578), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + STATE(2046), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1714), 2, + anon_sym_match, + anon_sym_type, + STATE(1576), 2, + sym_attribute, + sym_subscript, + STATE(2052), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1722), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(1712), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [49377] = 3, + ACTIONS(959), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [49209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(1704), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67712,7 +67554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 35, + ACTIONS(1702), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67730,7 +67572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67748,13 +67589,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49433] = 3, + [49265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, - sym__dedent, + ACTIONS(1696), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67765,7 +67606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67777,13 +67618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67801,11 +67642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49489] = 3, + [49321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 12, + ACTIONS(1692), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67818,7 +67659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67830,13 +67671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67854,11 +67695,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49545] = 3, + [49377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 13, + ACTIONS(1696), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67872,7 +67713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 34, + ACTIONS(1694), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67907,11 +67748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49601] = 3, + [49433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, + ACTIONS(1700), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67924,7 +67765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67936,13 +67777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67960,11 +67801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49657] = 3, + [49489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1692), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67977,7 +67818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67989,13 +67830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68013,15 +67854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49713] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(799), 1, - sym_finally_clause, + [49545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1700), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68034,57 +67871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [49772] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1758), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1756), 34, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68103,6 +67890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68119,17 +67907,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49827] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(787), 1, - sym_else_clause, + [49601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1732), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68140,7 +67924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1734), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68152,11 +67936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68173,11 +67960,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49886] = 3, + [49657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1766), 12, + ACTIONS(1704), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68190,7 +67977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68202,13 +67989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68225,15 +68013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49941] = 5, + [49713] = 5, ACTIONS(1485), 1, anon_sym_else, - STATE(783), 1, + STATE(805), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1752), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68246,7 +68034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68279,15 +68067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50000] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(757), 1, - sym_else_clause, + [49772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1756), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68300,7 +68084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1758), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68312,6 +68096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68333,11 +68119,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50059] = 3, + [49827] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(775), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1760), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68350,7 +68140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 34, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68362,8 +68152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68385,15 +68173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50114] = 5, + [49886] = 5, ACTIONS(1485), 1, anon_sym_else, - STATE(830), 1, + STATE(760), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1764), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68406,7 +68194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1782), 32, + ACTIONS(1766), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68439,17 +68227,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50173] = 5, - ACTIONS(1497), 1, - anon_sym_else, - STATE(773), 1, - sym_else_clause, + [49945] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(746), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, - sym__dedent, + ACTIONS(1768), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68460,7 +68248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68493,15 +68281,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50232] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(751), 1, - sym_else_clause, + [50004] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(763), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1772), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68514,7 +68302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68547,15 +68335,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50291] = 5, - ACTIONS(1489), 1, - anon_sym_finally, - STATE(780), 1, - sym_finally_clause, + [50063] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(744), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1776), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68568,7 +68356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1794), 32, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68601,15 +68389,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50350] = 5, - ACTIONS(1497), 1, - anon_sym_else, - STATE(848), 1, - sym_else_clause, + [50122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1782), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68622,7 +68406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1780), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68634,6 +68418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68655,15 +68441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50409] = 5, - ACTIONS(1497), 1, + [50177] = 5, + ACTIONS(1539), 1, anon_sym_else, - STATE(792), 1, + STATE(736), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68676,7 +68462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1784), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68709,15 +68495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50468] = 5, - ACTIONS(1485), 1, - anon_sym_else, - STATE(796), 1, - sym_else_clause, + [50236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1788), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68730,7 +68512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1790), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68742,6 +68524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68763,11 +68547,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50527] = 3, + [50291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1788), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68780,7 +68564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 34, + ACTIONS(1790), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68815,17 +68599,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50582] = 5, - ACTIONS(1497), 1, + [50346] = 5, + ACTIONS(1485), 1, anon_sym_else, - STATE(803), 1, + STATE(782), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, - sym__dedent, + ACTIONS(1786), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68836,7 +68620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1784), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68869,15 +68653,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50641] = 5, - ACTIONS(1501), 1, - anon_sym_finally, - STATE(807), 1, - sym_finally_clause, + [50405] = 5, + ACTIONS(1539), 1, + anon_sym_else, + STATE(812), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1794), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68890,7 +68674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68923,13 +68707,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50700] = 3, + [50464] = 5, + ACTIONS(1539), 1, + anon_sym_else, + STATE(816), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1766), 12, + ACTIONS(1752), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68940,7 +68728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1754), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68952,8 +68740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68975,17 +68761,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50755] = 5, - ACTIONS(1497), 1, - anon_sym_else, - STATE(788), 1, - sym_else_clause, + [50523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, - sym__dedent, + ACTIONS(1782), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68996,7 +68778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1780), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69008,6 +68790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69029,11 +68813,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50814] = 3, + [50578] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(771), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, + ACTIONS(1794), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69046,7 +68834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1756), 34, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69058,8 +68846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69081,15 +68867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50869] = 5, - ACTIONS(1497), 1, - anon_sym_else, - STATE(730), 1, - sym_else_clause, + [50637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1756), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69102,7 +68884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1782), 32, + ACTIONS(1758), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69114,6 +68896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69135,15 +68919,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50928] = 5, - ACTIONS(1501), 1, - anon_sym_finally, - STATE(842), 1, - sym_finally_clause, + [50692] = 5, + ACTIONS(1539), 1, + anon_sym_else, + STATE(831), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1776), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69156,7 +68940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1794), 32, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69189,11 +68973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50987] = 3, + [50751] = 5, + ACTIONS(1543), 1, + anon_sym_finally, + STATE(833), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1768), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69206,7 +68994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 33, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69223,7 +69011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69240,13 +69027,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51041] = 3, + [50810] = 5, + ACTIONS(1539), 1, + anon_sym_else, + STATE(847), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1764), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69257,7 +69048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 33, + ACTIONS(1766), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69274,7 +69065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69291,11 +69081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51095] = 3, + [50869] = 5, + ACTIONS(1543), 1, + anon_sym_finally, + STATE(769), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1772), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69308,7 +69102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 33, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69325,7 +69119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69342,13 +69135,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51149] = 3, + [50928] = 5, + ACTIONS(1539), 1, + anon_sym_else, + STATE(800), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1760), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69359,7 +69156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 33, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69376,7 +69173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69393,132 +69189,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51203] = 22, - ACTIONS(307), 1, + [50987] = 22, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1804), 1, + ACTIONS(1796), 1, sym_identifier, - ACTIONS(1806), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, + ACTIONS(1800), 1, anon_sym_RPAREN, - ACTIONS(1810), 1, + ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(1816), 1, + ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1818), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1606), 1, - sym_primary_expression, - STATE(1614), 1, - sym_list_splat_pattern, - STATE(2250), 1, - sym_pattern, - STATE(2762), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1814), 2, - anon_sym_match, - anon_sym_type, - STATE(1612), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1812), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [51295] = 22, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, ACTIONS(1810), 1, - anon_sym_STAR, - ACTIONS(1816), 1, - anon_sym_LBRACK, - ACTIONS(1818), 1, anon_sym_await, - ACTIONS(1820), 1, - anon_sym_RPAREN, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1606), 1, - sym_primary_expression, - STATE(1614), 1, + STATE(1590), 1, sym_list_splat_pattern, - STATE(2250), 1, + STATE(1615), 1, + sym_primary_expression, + STATE(2340), 1, sym_pattern, - STATE(2629), 1, + STATE(2602), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1814), 2, + ACTIONS(1806), 2, anon_sym_match, anon_sym_type, - STATE(1612), 2, + STATE(1598), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2573), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1812), 3, + ACTIONS(1804), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69533,11 +69259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51387] = 3, + [51079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 12, + ACTIONS(1812), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69550,7 +69276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1824), 32, + ACTIONS(1814), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69567,6 +69293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69583,63 +69310,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51440] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1828), 12, - sym__dedent, + [51133] = 22, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, + ACTIONS(1796), 1, + sym_identifier, + ACTIONS(1798), 1, anon_sym_LPAREN, + ACTIONS(1802), 1, anon_sym_STAR, + ACTIONS(1808), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1810), 1, + anon_sym_await, + ACTIONS(1816), 1, + anon_sym_RPAREN, + STATE(1010), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, + STATE(2340), 1, + sym_pattern, + STATE(2625), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1806), 2, + anon_sym_match, + anon_sym_type, + STATE(1598), 2, + sym_attribute, + sym_subscript, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1826), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1804), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51493] = 3, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, - sym__dedent, + ACTIONS(1818), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69650,7 +69397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1820), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69667,6 +69414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69683,11 +69431,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51546] = 3, + [51279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1818), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69700,7 +69448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1820), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69717,6 +69465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69733,11 +69482,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51599] = 3, + [51333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(1812), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69750,7 +69499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(1814), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69767,6 +69516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69783,13 +69533,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51652] = 3, + [51387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1824), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69800,7 +69550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69833,11 +69583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51705] = 3, + [51440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1768), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69850,7 +69600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69883,13 +69633,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51758] = 3, + [51493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, - sym__dedent, + ACTIONS(1826), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69900,7 +69650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1838), 32, + ACTIONS(1828), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69933,11 +69683,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51811] = 3, + [51546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(1832), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69950,7 +69700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69983,13 +69733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51864] = 3, + [51599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, - sym__dedent, + ACTIONS(1834), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70000,7 +69750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70033,13 +69783,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51917] = 3, + [51652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, - sym__dedent, + ACTIONS(1838), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70050,7 +69800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70083,81 +69833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51970] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1854), 1, - sym_identifier, - ACTIONS(1856), 1, - anon_sym_LPAREN, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_LBRACK, - ACTIONS(1866), 1, - anon_sym_RBRACK, - ACTIONS(1868), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(2535), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1862), 2, - anon_sym_match, - anon_sym_type, - STATE(1589), 2, - sym_attribute, - sym_subscript, - STATE(2532), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1860), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52059] = 3, + [51705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, - sym__dedent, + ACTIONS(1842), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70168,7 +69850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70201,11 +69883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52112] = 3, + [51758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1846), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70218,7 +69900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1876), 32, + ACTIONS(1848), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70251,13 +69933,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52165] = 3, + [51811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 12, + ACTIONS(1852), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70268,7 +69950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70301,13 +69983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52218] = 3, + [51864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, - sym__dedent, + ACTIONS(1481), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70318,7 +70000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1882), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70351,11 +70033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52271] = 3, + [51917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1854), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70368,7 +70050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70401,13 +70083,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52324] = 3, + [51970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1860), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70418,7 +70100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70451,13 +70133,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52377] = 3, + [52023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, - sym__dedent, + ACTIONS(1862), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70468,7 +70150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70501,11 +70183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52430] = 3, + [52076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(1868), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70518,7 +70200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70551,160 +70233,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52483] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1900), 12, + [52129] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1898), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1870), 1, sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [52536] = 3, + STATE(1010), 1, + sym_string, + STATE(1603), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2485), 1, + sym_pattern, + STATE(2774), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1894), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1874), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [52589] = 21, - ACTIONS(307), 1, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52218] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(1902), 1, + ACTIONS(1870), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1872), 1, anon_sym_LPAREN, - ACTIONS(1910), 1, - anon_sym_in, - ACTIONS(1912), 1, + ACTIONS(1878), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(1880), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, + STATE(1603), 1, sym_list_splat_pattern, - STATE(1643), 1, + STATE(1612), 1, + sym_primary_expression, + STATE(2470), 1, sym_pattern, + STATE(2735), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1908), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1906), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70719,11 +70369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [52678] = 3, + [52307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1882), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70736,7 +70386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70769,11 +70419,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52731] = 3, + [52360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, + ACTIONS(1886), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70786,7 +70436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1922), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70819,11 +70469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52784] = 3, + [52413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1924), 12, + ACTIONS(1890), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70836,7 +70486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1926), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70869,13 +70519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52837] = 3, + [52466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, - sym__dedent, + ACTIONS(1772), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70886,7 +70536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1774), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70919,11 +70569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52890] = 3, + [52519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 12, + ACTIONS(1894), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70936,7 +70586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1826), 32, + ACTIONS(1896), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70969,11 +70619,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52943] = 3, + [52572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1928), 12, + ACTIONS(1898), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70986,7 +70636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1930), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71019,11 +70669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52996] = 3, + [52625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1932), 12, + ACTIONS(1902), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71036,7 +70686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1934), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71069,11 +70719,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53049] = 3, + [52678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1906), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1908), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52731] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1912), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71086,7 +70786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71119,11 +70819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53102] = 3, + [52784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1914), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71136,7 +70836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71169,13 +70869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53155] = 3, + [52837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1920), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71186,7 +70886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71219,11 +70919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53208] = 3, + [52890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71236,7 +70936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71269,11 +70969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53261] = 3, + [52943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1926), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71286,7 +70986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71319,13 +71019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53314] = 3, + [52996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, - sym__dedent, + ACTIONS(1930), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71336,7 +71036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1932), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71369,11 +71069,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53367] = 3, + [53049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1956), 12, + ACTIONS(1934), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71386,7 +71086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1958), 32, + ACTIONS(1936), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71419,149 +71119,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53420] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, - anon_sym_LPAREN, - ACTIONS(1810), 1, - anon_sym_STAR, - ACTIONS(1816), 1, - anon_sym_LBRACK, - ACTIONS(1818), 1, - anon_sym_await, - ACTIONS(1866), 1, - anon_sym_RPAREN, - STATE(1033), 1, - sym_string, - STATE(1606), 1, - sym_primary_expression, - STATE(1614), 1, - sym_list_splat_pattern, - STATE(2562), 1, - sym_pattern, + [53102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1814), 2, - anon_sym_match, - anon_sym_type, - STATE(1612), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1812), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53509] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(1938), 12, sym_string_start, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1810), 1, anon_sym_STAR, - ACTIONS(1816), 1, anon_sym_LBRACK, - ACTIONS(1818), 1, - anon_sym_await, - ACTIONS(1960), 1, - anon_sym_RPAREN, - STATE(1033), 1, - sym_string, - STATE(1606), 1, - sym_primary_expression, - STATE(1614), 1, - sym_list_splat_pattern, - STATE(2562), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1814), 2, - anon_sym_match, - anon_sym_type, - STATE(1612), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1812), 3, + sym_ellipsis, + sym_float, + ACTIONS(1940), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53598] = 3, + [53155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, - sym__dedent, + ACTIONS(1942), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71572,7 +71186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71605,13 +71219,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53651] = 3, + [53208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1948), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71622,7 +71236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71655,79 +71269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53704] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2346), 1, - sym_pattern, - STATE(2677), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53793] = 3, + [53261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1950), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71740,7 +71286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71773,13 +71319,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53846] = 3, + [53314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, - sym__dedent, + ACTIONS(1954), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71790,7 +71336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71823,13 +71369,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53899] = 3, + [53367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, - sym__dedent, + ACTIONS(1958), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71840,7 +71386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71873,13 +71419,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53952] = 3, + [53420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, - sym__dedent, + ACTIONS(1962), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71890,7 +71436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71923,13 +71469,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54005] = 3, + [53473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1928), 12, - sym__dedent, + ACTIONS(1966), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71940,7 +71486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1930), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71973,60 +71519,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54058] = 21, - ACTIONS(307), 1, + [53526] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, + ACTIONS(1796), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(1912), 1, + ACTIONS(1802), 1, + anon_sym_STAR, + ACTIONS(1808), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(1810), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(1970), 1, + anon_sym_RPAREN, + STATE(1010), 1, sym_string, - STATE(1595), 1, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1615), 1, sym_primary_expression, - STATE(1609), 1, + STATE(2528), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1806), 2, + anon_sym_match, + anon_sym_type, + STATE(1598), 2, + sym_attribute, + sym_subscript, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1804), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53615] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1603), 1, sym_list_splat_pattern, - STATE(2458), 1, + STATE(1612), 1, + sym_primary_expression, + STATE(2403), 1, sym_pattern, - STATE(2710), 1, + STATE(2632), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1908), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(1640), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1906), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -72041,11 +71655,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [54147] = 3, + [53704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1954), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72058,7 +71672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72091,13 +71705,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54200] = 3, + [53757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1958), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72108,7 +71722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72141,11 +71755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54253] = 3, + [53810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1972), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72158,7 +71772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72191,13 +71805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54306] = 3, + [53863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 12, - sym__dedent, + ACTIONS(1824), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72208,7 +71822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72241,11 +71855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54359] = 3, + [53916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(1948), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72258,7 +71872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72291,13 +71905,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54412] = 3, + [53969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, - sym__dedent, + ACTIONS(1976), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72308,7 +71922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1876), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72341,13 +71955,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54465] = 3, + [54022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, - sym__dedent, + ACTIONS(1980), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72358,7 +71972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72391,11 +72005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54518] = 3, + [54075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1984), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72408,7 +72022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72441,13 +72055,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54571] = 3, + [54128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + ACTIONS(1988), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72458,7 +72072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72491,13 +72105,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54624] = 3, + [54181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, - sym__dedent, + ACTIONS(1832), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72508,7 +72122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72541,79 +72155,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54677] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - ACTIONS(2002), 1, - anon_sym_in, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1643), 1, - sym_pattern, + [54234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54766] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2004), 12, + ACTIONS(1992), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72626,7 +72172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72659,161 +72205,147 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54819] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1932), 12, - sym__dedent, + [54287] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, + ACTIONS(1796), 1, + sym_identifier, + ACTIONS(1798), 1, anon_sym_LPAREN, + ACTIONS(1802), 1, anon_sym_STAR, + ACTIONS(1808), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1934), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1810), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [54872] = 3, + ACTIONS(1996), 1, + anon_sym_RPAREN, + STATE(1010), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, + STATE(2528), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1956), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1806), 2, + anon_sym_match, + anon_sym_type, + STATE(1598), 2, + sym_attribute, + sym_subscript, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1958), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1804), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54925] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1924), 12, - sym__dedent, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54376] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1603), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2270), 1, + sym_pattern, + STATE(2729), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1926), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1874), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54978] = 3, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2008), 12, + ACTIONS(1852), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72826,7 +72358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72859,13 +72391,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55031] = 3, + [54518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, - sym__dedent, + ACTIONS(1860), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72876,7 +72408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72909,11 +72441,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55084] = 3, + [54571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, + ACTIONS(1868), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72926,7 +72458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72959,11 +72491,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55137] = 3, + [54624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1517), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72976,7 +72508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1519), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73009,13 +72541,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55190] = 3, + [54677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, - sym__dedent, + ACTIONS(1998), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73026,7 +72558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73059,13 +72591,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55243] = 3, + [54730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1962), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73076,7 +72608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73109,13 +72641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55296] = 3, + [54783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1966), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73126,7 +72658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73159,11 +72691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55349] = 3, + [54836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, + ACTIONS(1912), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73176,7 +72708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73209,13 +72741,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55402] = 3, + [54889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2020), 12, + ACTIONS(1950), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73226,7 +72758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73259,11 +72791,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55455] = 3, + [54942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(2002), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73276,7 +72808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1794), 32, + ACTIONS(2004), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73309,149 +72841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55508] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2337), 1, - sym_pattern, - STATE(2687), 1, - sym_pattern_list, + [54995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55597] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2317), 1, - sym_pattern, - STATE(2696), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55686] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(1920), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73462,7 +72858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73495,11 +72891,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55739] = 3, + [55048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, + ACTIONS(2006), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73512,7 +72908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(2008), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73545,57 +72941,75 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55792] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2026), 12, - sym__dedent, + [55101] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1603), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2495), 1, + sym_pattern, + STATE(2790), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2024), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1874), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [55845] = 3, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -73612,7 +73026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73645,61 +73059,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55898] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2020), 12, - sym__dedent, + [55243] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, + ACTIONS(1996), 1, + anon_sym_RBRACK, + ACTIONS(2014), 1, + sym_identifier, + ACTIONS(2016), 1, anon_sym_LPAREN, + ACTIONS(2018), 1, anon_sym_STAR, + ACTIONS(2024), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2026), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1596), 1, + sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, + STATE(2514), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2022), 2, + anon_sym_match, + anon_sym_type, + STATE(1597), 2, + sym_attribute, + sym_subscript, + STATE(2570), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2022), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2020), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [55951] = 3, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55332] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(2028), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73712,7 +73144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1882), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73745,160 +73177,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56004] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1792), 12, - sym__dedent, + [55385] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1433), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1794), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1870), 1, sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [56057] = 3, + ACTIONS(2032), 1, + anon_sym_in, + STATE(1010), 1, + sym_string, + STATE(1603), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2024), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1874), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(323), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56110] = 21, - ACTIONS(307), 1, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55474] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, + ACTIONS(1970), 1, + anon_sym_RBRACK, + ACTIONS(2014), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(1912), 1, + ACTIONS(2018), 1, + anon_sym_STAR, + ACTIONS(2024), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(2026), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, + STATE(1596), 1, sym_list_splat_pattern, - STATE(2409), 1, + STATE(1619), 1, + sym_primary_expression, + STATE(2514), 1, sym_pattern, - STATE(2613), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(1908), 2, + ACTIONS(2022), 2, anon_sym_match, anon_sym_type, - STATE(1613), 2, + STATE(1597), 2, sym_attribute, sym_subscript, - STATE(1644), 2, + STATE(2570), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1906), 3, + ACTIONS(2020), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73913,61 +73313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [56199] = 3, + [55563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2028), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [56252] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1980), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73980,7 +73330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74013,11 +73363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56305] = 3, + [55616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1976), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74030,7 +73380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74063,11 +73413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56358] = 3, + [55669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1984), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74080,7 +73430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74113,11 +73463,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56411] = 3, + [55722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, + ACTIONS(1517), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74130,7 +73480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1519), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74163,11 +73513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56464] = 3, + [55775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, + ACTIONS(2034), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74180,7 +73530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74213,11 +73563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56517] = 3, + [55828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(2038), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74230,7 +73580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(2040), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74263,13 +73613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56570] = 3, + [55881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(2002), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74280,7 +73630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(2004), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74313,13 +73663,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56623] = 3, + [55934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, + ACTIONS(2006), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74330,7 +73680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2028), 32, + ACTIONS(2008), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74363,11 +73713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56676] = 3, + [55987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1998), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74380,7 +73730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74413,11 +73763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56729] = 3, + [56040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(2042), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74430,7 +73780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(2044), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74463,11 +73813,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56782] = 3, + [56093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(2046), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74480,7 +73830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(2048), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74513,11 +73863,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56835] = 3, + [56146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 12, + ACTIONS(2034), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74530,7 +73880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1922), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74563,11 +73913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56888] = 3, + [56199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(1972), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74580,7 +73930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74613,13 +73963,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56941] = 3, + [56252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(2052), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74630,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74663,13 +74013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56994] = 3, + [56305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1826), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74680,7 +74030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1828), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74713,13 +74063,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57047] = 3, + [56358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1930), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74730,7 +74080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1838), 32, + ACTIONS(1932), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74763,13 +74113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57100] = 3, + [56411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(2038), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74780,7 +74130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(2040), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74813,11 +74163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57153] = 3, + [56464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(2012), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74830,7 +74180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74863,13 +74213,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57206] = 3, + [56517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 12, + ACTIONS(1768), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74880,7 +74230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74913,11 +74263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57259] = 3, + [56570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 12, + ACTIONS(1481), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74930,7 +74280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74963,11 +74313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57312] = 3, + [56623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 12, + ACTIONS(1922), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74980,7 +74330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75013,13 +74363,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57365] = 3, + [56676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 12, + ACTIONS(1992), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75030,7 +74380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(1994), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75063,13 +74413,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57418] = 3, + [56729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2042), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75080,7 +74430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(2044), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75113,13 +74463,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57471] = 3, + [56782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2046), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75130,7 +74480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(2048), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75163,11 +74513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57524] = 3, + [56835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(2028), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75180,7 +74530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75213,13 +74563,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57577] = 3, + [56888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 12, + ACTIONS(1834), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75230,7 +74580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75263,11 +74613,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57630] = 3, + [56941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1838), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75280,7 +74630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75313,11 +74663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57683] = 3, + [56994] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1842), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75330,7 +74680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75363,79 +74713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57736] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2279), 1, - sym_pattern, - STATE(2721), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57825] = 3, + [57047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(1846), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75448,7 +74730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1848), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75481,11 +74763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57878] = 3, + [57100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 12, + ACTIONS(1854), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75498,7 +74780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1824), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75531,283 +74813,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57931] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2255), 1, - sym_pattern, - STATE(2750), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58020] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2277), 1, - sym_pattern, - STATE(2723), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58109] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2242), 1, - sym_pattern, - STATE(2787), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1906), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58198] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1854), 1, - sym_identifier, - ACTIONS(1856), 1, - anon_sym_LPAREN, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_LBRACK, - ACTIONS(1868), 1, - anon_sym_await, - ACTIONS(1960), 1, - anon_sym_RBRACK, - STATE(1033), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(2535), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1862), 2, - anon_sym_match, - anon_sym_type, - STATE(1589), 2, - sym_attribute, - sym_subscript, - STATE(2532), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1860), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58287] = 3, + [57153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, + ACTIONS(1862), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75820,7 +74830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75853,11 +74863,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58340] = 3, + [57206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2008), 12, + ACTIONS(1882), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75870,7 +74880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75903,11 +74913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58393] = 3, + [57259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1886), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75920,7 +74930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75953,520 +74963,610 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58446] = 21, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(2241), 1, - sym_pattern, - STATE(2791), 1, - sym_pattern_list, + [57312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(1890), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1906), 3, + sym_ellipsis, + sym_float, + ACTIONS(1892), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58535] = 20, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + [57365] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1772), 12, + sym__dedent, sym_string_start, - ACTIONS(1854), 1, - sym_identifier, - ACTIONS(1856), 1, anon_sym_LPAREN, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1864), 1, anon_sym_LBRACK, - ACTIONS(1868), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1590), 1, - sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(2535), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1862), 2, - anon_sym_match, - anon_sym_type, - STATE(1589), 2, - sym_attribute, - sym_subscript, - STATE(2532), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1860), 3, + sym_ellipsis, + sym_float, + ACTIONS(1774), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58621] = 20, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + [57418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1894), 12, + sym__dedent, sym_string_start, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1806), 1, anon_sym_LPAREN, - ACTIONS(1810), 1, anon_sym_STAR, - ACTIONS(1816), 1, anon_sym_LBRACK, - ACTIONS(1818), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1606), 1, - sym_primary_expression, - STATE(1614), 1, - sym_list_splat_pattern, - STATE(2562), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1814), 2, - anon_sym_match, - anon_sym_type, - STATE(1612), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1812), 3, + sym_ellipsis, + sym_float, + ACTIONS(1896), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58707] = 20, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1902), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(1912), 1, - anon_sym_LBRACK, - ACTIONS(1914), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1595), 1, - sym_primary_expression, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1643), 1, - sym_pattern, + [57471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1908), 2, - anon_sym_match, - anon_sym_type, - STATE(1613), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(1898), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1906), 3, + sym_ellipsis, + sym_float, + ACTIONS(1900), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58793] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(957), 1, - sym_identifier, - ACTIONS(961), 1, - anon_sym_LPAREN, - ACTIONS(969), 1, - anon_sym_LBRACK, - ACTIONS(971), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1306), 1, - sym_list_splat_pattern, - STATE(1618), 1, - sym_pattern, - STATE(1621), 1, - sym_primary_expression, + [57524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(967), 2, - anon_sym_match, - anon_sym_type, - STATE(1305), 2, - sym_attribute, - sym_subscript, - STATE(1602), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(1902), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(965), 3, + sym_ellipsis, + sym_float, + ACTIONS(1904), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58879] = 20, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1083), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, - anon_sym_LBRACK, - ACTIONS(1093), 1, - anon_sym_await, - ACTIONS(2056), 1, - anon_sym_STAR, - STATE(1033), 1, - sym_string, - STATE(1467), 1, - sym_list_splat_pattern, - STATE(1594), 1, - sym_primary_expression, - STATE(1643), 1, - sym_pattern, + [57577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1089), 2, - anon_sym_match, - anon_sym_type, - STATE(1468), 2, - sym_attribute, - sym_subscript, - STATE(1644), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + ACTIONS(1906), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1087), 3, + sym_ellipsis, + sym_float, + ACTIONS(1908), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58965] = 20, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + [57630] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1914), 12, + sym__dedent, sym_string_start, - ACTIONS(1686), 1, - sym_identifier, - ACTIONS(1688), 1, anon_sym_LPAREN, - ACTIONS(1690), 1, anon_sym_STAR, - ACTIONS(1696), 1, anon_sym_LBRACK, - ACTIONS(1698), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1577), 1, - sym_list_splat_pattern, - STATE(1626), 1, - sym_primary_expression, - STATE(1992), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(1694), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2076), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(312), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1692), 3, + sym_ellipsis, + sym_float, + ACTIONS(1916), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(320), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [59051] = 19, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [57683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(678), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1427), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2050), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57736] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1926), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2058), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1928), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(2066), 1, anon_sym_await, - STATE(1033), 1, + sym_true, + sym_false, + sym_none, + [57789] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1988), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1990), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1934), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1936), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57895] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1603), 1, sym_list_splat_pattern, - STATE(1595), 1, + STATE(1612), 1, sym_primary_expression, + STATE(2430), 1, + sym_pattern, + STATE(2686), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2060), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2064), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, - STATE(1596), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2062), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76481,56 +75581,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59134] = 19, - ACTIONS(307), 1, + [57984] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2068), 1, + ACTIONS(1870), 1, sym_identifier, - ACTIONS(2074), 1, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1603), 1, sym_list_splat_pattern, - STATE(1606), 1, + STATE(1612), 1, sym_primary_expression, + STATE(2433), 1, + sym_pattern, + STATE(2695), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2060), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2072), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, - STATE(1584), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2070), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76545,120 +75649,162 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 21, - ACTIONS(2078), 1, - anon_sym_DOT, - ACTIONS(2080), 1, - anon_sym_LPAREN, - ACTIONS(2088), 1, - anon_sym_STAR_STAR, - ACTIONS(2090), 1, - anon_sym_EQ, - ACTIONS(2092), 1, - anon_sym_LBRACK, - ACTIONS(2098), 1, - anon_sym_PIPE, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2102), 1, - anon_sym_AMP, - ACTIONS(2104), 1, - anon_sym_CARET, - ACTIONS(2106), 1, - anon_sym_is, - STATE(1553), 1, - aux_sym_comparison_operator_repeat1, + [58073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(1938), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2084), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2096), 2, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - STATE(948), 2, - sym__not_in, - sym__is_not, - STATE(1129), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2094), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2086), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2076), 9, - sym__newline, - anon_sym_SEMI, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1940), 32, + anon_sym_import, anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [59303] = 17, - ACTIONS(801), 1, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58126] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(817), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1944), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(819), 1, + sym_true, + sym_false, + sym_none, + [58179] = 21, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(1022), 1, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1115), 1, - sym_primary_expression, - STATE(1307), 1, + STATE(1603), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2450), 1, + sym_pattern, + STATE(2720), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(815), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(1874), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76671,55 +75817,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59381] = 17, - ACTIONS(307), 1, + [58268] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(1878), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(1880), 1, anon_sym_await, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1084), 1, - sym_primary_expression, - STATE(1269), 1, + STATE(1603), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2451), 1, + sym_pattern, + STATE(2722), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76732,55 +75885,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59459] = 17, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [58357] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(727), 1, - anon_sym_await, - ACTIONS(729), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(982), 1, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1029), 1, - sym_primary_expression, - STATE(1212), 1, + STATE(1603), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2494), 1, + sym_pattern, + STATE(2786), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(1874), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76793,55 +75953,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59537] = 17, - ACTIONS(67), 1, + [58446] = 21, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(1878), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(1880), 1, anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(967), 1, + ACTIONS(2054), 1, + anon_sym_in, + STATE(1010), 1, sym_string, - STATE(972), 1, - sym_primary_expression, - STATE(1118), 1, + STATE(1603), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(1876), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(1874), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76854,55 +76021,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59615] = 17, - ACTIONS(779), 1, + [58535] = 20, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(1117), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1343), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(1069), 1, + STATE(1010), 1, sym_string, - STATE(1231), 1, - sym_primary_expression, - STATE(1447), 1, + STATE(1481), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(1482), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76915,55 +76087,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59693] = 17, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [58621] = 20, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(981), 1, + ACTIONS(1716), 1, + anon_sym_LBRACK, + ACTIONS(1718), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1018), 1, - sym_primary_expression, - STATE(1183), 1, + STATE(1578), 1, sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + STATE(2046), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(1714), 2, + anon_sym_match, + anon_sym_type, + STATE(1576), 2, + sym_attribute, + sym_subscript, + STATE(2052), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(1712), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76976,55 +76153,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59771] = 17, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [58707] = 20, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_await, - ACTIONS(775), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(1025), 1, + ACTIONS(1870), 1, + sym_identifier, + ACTIONS(1872), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_LBRACK, + ACTIONS(1880), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1099), 1, - sym_primary_expression, - STATE(1413), 1, + STATE(1603), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(1639), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(1876), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1640), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(1874), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77037,55 +76219,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59849] = 17, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [58793] = 20, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1796), 1, + sym_identifier, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1802), 1, anon_sym_STAR, - ACTIONS(2110), 1, - anon_sym_not, - STATE(1003), 1, + ACTIONS(1808), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1091), 1, - sym_primary_expression, - STATE(1264), 1, + STATE(1590), 1, sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, + STATE(2528), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(1806), 2, + anon_sym_match, + anon_sym_type, + STATE(1598), 2, + sym_attribute, + sym_subscript, + STATE(2573), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(1804), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77098,53 +76285,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59927] = 18, - ACTIONS(307), 1, + [58879] = 20, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(2014), 1, + sym_identifier, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(2018), 1, anon_sym_STAR, - ACTIONS(2112), 1, - sym_identifier, - ACTIONS(2118), 1, + ACTIONS(2024), 1, + anon_sym_LBRACK, + ACTIONS(2026), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1596), 1, sym_list_splat_pattern, STATE(1619), 1, sym_primary_expression, + STATE(2514), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2116), 2, + ACTIONS(2022), 2, anon_sym_match, anon_sym_type, - STATE(1420), 2, + STATE(1597), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + STATE(2570), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(2020), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77159,53 +76351,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60006] = 16, - ACTIONS(67), 1, + [58965] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(957), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(969), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(971), 1, anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(977), 1, - sym_primary_expression, - STATE(1118), 1, + STATE(1352), 1, sym_list_splat_pattern, + STATE(1591), 1, + sym_primary_expression, + STATE(1610), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(967), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1353), 2, + sym_attribute, + sym_subscript, + STATE(1592), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(965), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77218,53 +76417,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60081] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [59051] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(981), 1, + ACTIONS(2058), 1, + sym_identifier, + ACTIONS(2066), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1032), 1, - sym_primary_expression, - STATE(1183), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2060), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2064), 2, + anon_sym_match, + anon_sym_type, + STATE(1607), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2062), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77277,53 +76481,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60156] = 18, - ACTIONS(307), 1, + [59134] = 19, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2112), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2118), 1, + ACTIONS(2074), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1615), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2116), 2, + ACTIONS(2060), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2072), 2, anon_sym_match, anon_sym_type, - STATE(1420), 2, + STATE(1583), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(2070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77338,49 +76545,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60235] = 16, - ACTIONS(801), 1, + [59217] = 17, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1022), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(1028), 1, sym_string, - STATE(1116), 1, + STATE(1100), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77397,69 +76606,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60310] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, - anon_sym_await, - STATE(1033), 1, - sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1617), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2124), 2, - anon_sym_match, - anon_sym_type, - STATE(1317), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2122), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1339), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [60389] = 16, - ACTIONS(757), 1, + [59295] = 17, + ACTIONS(755), 1, anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, @@ -77469,24 +76617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(775), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(1015), 1, sym_string, - STATE(1103), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -77494,13 +76644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77517,49 +76667,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60464] = 16, - ACTIONS(757), 1, + [59373] = 17, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(996), 1, sym_string, - STATE(1102), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77576,49 +76728,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60539] = 16, - ACTIONS(757), 1, + [59451] = 17, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(975), 1, sym_string, - STATE(1099), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77635,49 +76789,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60614] = 16, - ACTIONS(757), 1, + [59529] = 17, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(1010), 1, sym_string, - STATE(1089), 1, + STATE(1058), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77694,49 +76850,116 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60689] = 16, - ACTIONS(757), 1, + [59607] = 21, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2092), 1, + anon_sym_EQ, + ACTIONS(2094), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(2100), 1, + anon_sym_PIPE, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_AMP, + ACTIONS(2106), 1, + anon_sym_CARET, + ACTIONS(2108), 1, + anon_sym_is, + STATE(1555), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2086), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2110), 2, + anon_sym_LT, + anon_sym_GT, + STATE(901), 2, + sym__not_in, + sym__is_not, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2096), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2088), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59693] = 17, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(749), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(971), 1, sym_string, - STATE(1087), 1, + STATE(998), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1203), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77753,49 +76976,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60764] = 16, - ACTIONS(757), 1, + [59771] = 17, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2076), 1, + anon_sym_not, + STATE(1107), 1, sym_string, - STATE(1086), 1, + STATE(1225), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77812,49 +77037,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60839] = 16, - ACTIONS(757), 1, + [59849] = 17, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(2076), 1, + anon_sym_not, + STATE(969), 1, + sym_string, + STATE(977), 1, + sym_primary_expression, + STATE(1119), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1035), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59927] = 16, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(996), 1, sym_string, - STATE(1080), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77871,49 +77157,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60914] = 16, - ACTIONS(757), 1, + [60002] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1107), 1, sym_string, - STATE(1079), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77930,7 +77216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60989] = 16, + [60077] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -77941,13 +77227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1117), 1, + STATE(1230), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -77972,7 +77258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77989,49 +77275,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61064] = 16, - ACTIONS(711), 1, + [60152] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(749), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(982), 1, + STATE(971), 1, sym_string, - STATE(1034), 1, + STATE(1014), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1203), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78048,55 +77334,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61139] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60227] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2128), 1, - sym_identifier, - ACTIONS(2134), 1, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1621), 1, + STATE(998), 1, sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2132), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(629), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2130), 3, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78109,55 +77393,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61218] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60302] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2136), 1, - sym_identifier, - ACTIONS(2142), 1, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1594), 1, + STATE(1013), 1, sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2140), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2138), 3, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78170,53 +77452,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61297] = 18, - ACTIONS(307), 1, + [60377] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2112), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2118), 1, anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1611), 1, + STATE(1591), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2148), 2, + ACTIONS(2116), 2, anon_sym_match, anon_sym_type, - STATE(1106), 2, + STATE(638), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(2114), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78231,49 +77513,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61376] = 16, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60456] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1096), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78290,53 +77572,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61451] = 18, - ACTIONS(307), 1, + [60531] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2118), 1, - anon_sym_await, - ACTIONS(2152), 1, + ACTIONS(2120), 1, sym_identifier, - STATE(1033), 1, + ACTIONS(2126), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1617), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2156), 2, + ACTIONS(2124), 2, anon_sym_match, anon_sym_type, - STATE(1283), 2, + STATE(1350), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2154), 3, + ACTIONS(2122), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78351,55 +77633,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61530] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60610] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2158), 1, - sym_identifier, - ACTIONS(2164), 1, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1626), 1, + STATE(990), 1, sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2162), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1243), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2160), 3, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78412,55 +77692,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61609] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60685] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2118), 1, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, anon_sym_await, - ACTIONS(2166), 1, - sym_identifier, - STATE(1033), 1, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1619), 1, + STATE(989), 1, sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2116), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1420), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2114), 3, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78473,55 +77751,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61688] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [60760] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2120), 1, - sym_identifier, - ACTIONS(2126), 1, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1606), 1, + STATE(1000), 1, sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2124), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - STATE(1317), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78534,49 +77810,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61767] = 16, - ACTIONS(779), 1, + [60835] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(749), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(971), 1, sym_string, - STATE(1229), 1, + STATE(1002), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1203), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78593,49 +77869,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61842] = 16, - ACTIONS(779), 1, + [60910] = 16, + ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(741), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(745), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(749), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(751), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(971), 1, sym_string, - STATE(1230), 1, + STATE(1003), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1203), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(739), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(747), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(737), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(743), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(731), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78652,53 +77928,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61917] = 18, - ACTIONS(307), 1, + [60985] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2164), 1, + ACTIONS(2118), 1, anon_sym_await, - ACTIONS(2168), 1, + ACTIONS(2128), 1, sym_identifier, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1591), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2172), 2, + ACTIONS(2116), 2, anon_sym_match, anon_sym_type, - STATE(1182), 2, + STATE(638), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2170), 3, + ACTIONS(2114), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78713,49 +77989,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61996] = 16, - ACTIONS(733), 1, + [61064] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(996), 1, sym_string, - STATE(1088), 1, + STATE(1087), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78772,49 +78048,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62071] = 16, - ACTIONS(733), 1, + [61139] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(969), 1, sym_string, - STATE(1090), 1, + STATE(982), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78831,53 +78107,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62146] = 16, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [61214] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1003), 1, + ACTIONS(2130), 1, + sym_identifier, + ACTIONS(2136), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1091), 1, - sym_primary_expression, - STATE(1264), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(2134), 2, + anon_sym_match, + anon_sym_type, + STATE(1585), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(2132), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78890,49 +78168,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62221] = 16, - ACTIONS(733), 1, + [61293] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1092), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78949,49 +78227,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62296] = 16, - ACTIONS(733), 1, + [61368] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1093), 1, + STATE(1128), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79008,49 +78286,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62371] = 16, - ACTIONS(733), 1, + [61443] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1094), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79067,49 +78345,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62446] = 16, - ACTIONS(733), 1, + [61518] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1098), 1, + STATE(1130), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79126,49 +78404,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62521] = 16, - ACTIONS(733), 1, + [61593] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1015), 1, sym_string, - STATE(1124), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79185,113 +78463,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62596] = 21, - ACTIONS(2090), 1, - anon_sym_as, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, + [61668] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, - ACTIONS(2192), 1, - anon_sym_PIPE, - ACTIONS(2194), 1, - anon_sym_AMP, - ACTIONS(2196), 1, - anon_sym_CARET, - ACTIONS(2198), 1, - anon_sym_is, - STATE(1565), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2178), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2180), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2200), 2, - anon_sym_LT, - anon_sym_GT, - STATE(940), 2, - sym__not_in, - sym__is_not, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2182), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2076), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [62681] = 16, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1015), 1, sym_string, - STATE(1231), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79308,49 +78522,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62756] = 16, - ACTIONS(779), 1, + [61743] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2126), 1, + anon_sym_await, + ACTIONS(2138), 1, + sym_identifier, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2142), 2, + anon_sym_match, + anon_sym_type, + STATE(1357), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2140), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61822] = 16, + ACTIONS(755), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1015), 1, sym_string, - STATE(1232), 1, + STATE(1133), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79367,49 +78642,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62831] = 16, - ACTIONS(779), 1, + [61897] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(975), 1, sym_string, - STATE(1234), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(700), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(696), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79426,49 +78701,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62906] = 16, - ACTIONS(779), 1, + [61972] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1015), 1, sym_string, - STATE(1190), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79485,49 +78760,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62981] = 16, - ACTIONS(686), 1, + [62047] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1013), 1, + STATE(973), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79544,49 +78819,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63056] = 16, - ACTIONS(779), 1, + [62122] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(1028), 1, sym_string, - STATE(1235), 1, + STATE(1100), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79603,49 +78878,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63131] = 16, - ACTIONS(779), 1, + [62197] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(787), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(795), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(797), 1, - sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(969), 1, sym_string, - STATE(1236), 1, + STATE(974), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(793), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(789), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79662,7 +78937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63206] = 16, + [62272] = 16, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(787), 1, @@ -79673,13 +78948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(797), 1, sym_string_start, - ACTIONS(1343), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(1069), 1, + STATE(996), 1, sym_string, - STATE(1237), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79704,7 +78979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1448), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79721,7 +78996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63281] = 16, + [62347] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -79732,13 +79007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(661), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(971), 1, + STATE(977), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79763,7 +79038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79780,49 +79055,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63356] = 16, - ACTIONS(801), 1, + [62422] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1113), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79839,53 +79114,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63431] = 16, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_LBRACK, - ACTIONS(698), 1, + [62497] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(981), 1, + ACTIONS(2144), 1, + sym_identifier, + ACTIONS(2150), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1014), 1, - sym_primary_expression, - STATE(1183), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1618), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(2148), 2, + anon_sym_match, + anon_sym_type, + STATE(1445), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(2146), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79898,49 +79175,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63506] = 16, - ACTIONS(686), 1, + [62576] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1015), 1, + STATE(980), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79957,49 +79234,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63581] = 16, - ACTIONS(686), 1, + [62651] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(981), 1, + STATE(1028), 1, sym_string, - STATE(1016), 1, + STATE(1095), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80016,49 +79293,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63656] = 16, - ACTIONS(686), 1, + [62726] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(698), 1, - anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(704), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1017), 1, + STATE(987), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(655), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(653), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80075,49 +79352,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63731] = 16, - ACTIONS(801), 1, + [62801] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1114), 1, + STATE(1101), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80134,53 +79411,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63806] = 18, - ACTIONS(307), 1, + [62876] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2126), 1, - anon_sym_await, - ACTIONS(2202), 1, + ACTIONS(2152), 1, sym_identifier, - STATE(1033), 1, + ACTIONS(2158), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1606), 1, + STATE(1614), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2206), 2, + ACTIONS(2156), 2, anon_sym_match, anon_sym_type, - STATE(1301), 2, + STATE(1071), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2204), 3, + ACTIONS(2154), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80195,49 +79472,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63885] = 16, - ACTIONS(686), 1, + [62955] = 21, + ACTIONS(2092), 1, + anon_sym_EQ, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(2178), 1, + anon_sym_PIPE, + ACTIONS(2180), 1, + anon_sym_AMP, + ACTIONS(2182), 1, + anon_sym_CARET, + ACTIONS(2184), 1, + anon_sym_is, + STATE(1567), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2164), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2166), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2186), 2, + anon_sym_LT, + anon_sym_GT, + STATE(940), 2, + sym__not_in, + sym__is_not, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2168), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [63040] = 16, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(981), 1, + STATE(1010), 1, sym_string, - STATE(1018), 1, + STATE(1050), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80254,49 +79595,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63960] = 16, - ACTIONS(686), 1, + [63115] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(702), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(981), 1, + STATE(996), 1, sym_string, - STATE(1019), 1, + STATE(1081), 1, sym_primary_expression, - STATE(1183), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80313,49 +79654,174 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64035] = 16, - ACTIONS(686), 1, + [63190] = 21, + ACTIONS(2092), 1, + anon_sym_as, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(698), 1, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2208), 1, + anon_sym_AMP, + ACTIONS(2210), 1, + anon_sym_CARET, + ACTIONS(2212), 1, + anon_sym_is, + STATE(1565), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2214), 2, + anon_sym_LT, + anon_sym_GT, + STATE(873), 2, + sym__not_in, + sym__is_not, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2196), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [63275] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(702), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(981), 1, + ACTIONS(2216), 1, + sym_identifier, + ACTIONS(2222), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1020), 1, - sym_primary_expression, - STATE(1183), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(692), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(690), 3, + ACTIONS(2220), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2218), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(696), 3, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63354] = 16, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(1010), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(684), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1208), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80372,53 +79838,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64110] = 16, - ACTIONS(67), 1, + [63429] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(2150), 1, + anon_sym_await, + ACTIONS(2224), 1, + sym_identifier, + STATE(1010), 1, sym_string, - STATE(978), 1, - sym_primary_expression, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(2228), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1359), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(2226), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80431,53 +79899,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64185] = 18, - ACTIONS(307), 1, + [63508] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2126), 1, + ACTIONS(2150), 1, anon_sym_await, - ACTIONS(2208), 1, + ACTIONS(2230), 1, sym_identifier, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1617), 1, + STATE(1618), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2124), 2, + ACTIONS(2148), 2, anon_sym_match, anon_sym_type, - STATE(1317), 2, + STATE(1445), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2122), 3, + ACTIONS(2146), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80492,7 +79960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64264] = 16, + [63587] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -80503,13 +79971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1112), 1, + STATE(1217), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80534,7 +80002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80551,49 +80019,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64339] = 16, - ACTIONS(757), 1, + [63662] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1301), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1126), 1, + STATE(1104), 1, sym_primary_expression, - STATE(1413), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1380), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80610,49 +80078,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64414] = 16, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [63737] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(1028), 1, sym_string, - STATE(1044), 1, + STATE(1098), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80669,53 +80137,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64489] = 16, - ACTIONS(307), 1, + [63812] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1033), 1, - sym_string, - STATE(1043), 1, - sym_primary_expression, - STATE(1269), 1, - sym_list_splat_pattern, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(2238), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(2236), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + STATE(1271), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(2234), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80728,49 +80198,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64564] = 16, - ACTIONS(67), 1, + [63891] = 16, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(984), 1, + STATE(1056), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80787,49 +80257,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64639] = 16, - ACTIONS(801), 1, + [63966] = 16, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1028), 1, sym_string, - STATE(1109), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1388), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(717), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(725), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(715), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(721), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(709), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80846,49 +80316,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64714] = 16, - ACTIONS(711), 1, + [64041] = 16, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(1010), 1, + sym_string, + STATE(1057), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64116] = 16, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(1001), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80905,7 +80434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64789] = 16, + [64191] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -80916,13 +80445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(661), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(967), 1, + STATE(969), 1, sym_string, - STATE(974), 1, + STATE(986), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80947,7 +80476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80964,53 +80493,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64864] = 16, - ACTIONS(711), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(723), 1, + [64266] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(727), 1, - anon_sym_await, - ACTIONS(729), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(982), 1, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2246), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(1000), 1, - sym_primary_expression, - STATE(1212), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(2244), 2, + anon_sym_match, + anon_sym_type, + STATE(1233), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(2242), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81023,49 +80554,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64939] = 16, - ACTIONS(711), 1, + [64345] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(998), 1, + STATE(1084), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81082,49 +80613,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65014] = 16, - ACTIONS(67), 1, + [64420] = 16, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(967), 1, + STATE(1010), 1, sym_string, - STATE(975), 1, + STATE(1058), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(674), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81141,53 +80672,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65089] = 16, - ACTIONS(67), 1, + [64495] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(327), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2254), 1, + anon_sym_await, + STATE(1010), 1, sym_string, - STATE(976), 1, - sym_primary_expression, - STATE(1118), 1, + STATE(1342), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(655), 2, + ACTIONS(2252), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1476), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(2250), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(323), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81200,49 +80733,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65164] = 16, - ACTIONS(711), 1, + [64574] = 16, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(723), 1, - anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(729), 1, - sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(982), 1, + STATE(1010), 1, sym_string, - STATE(997), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81259,49 +80792,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65239] = 16, - ACTIONS(711), 1, + [64649] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(996), 1, + STATE(1223), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81318,49 +80851,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65314] = 16, - ACTIONS(711), 1, + [64724] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(1029), 1, + STATE(1224), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81377,49 +80910,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65389] = 16, - ACTIONS(711), 1, + [64799] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(982), 1, + STATE(996), 1, sym_string, - STATE(990), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81436,49 +80969,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65464] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [64874] = 16, + ACTIONS(755), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(967), 1, + STATE(1015), 1, sym_string, - STATE(985), 1, + STATE(1121), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1258), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(761), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(759), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(753), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1367), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81495,10 +81028,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65539] = 16, - ACTIONS(307), 1, + [64949] = 16, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, @@ -81506,24 +81039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(682), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1075), 1, + STATE(1060), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81531,13 +81064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81554,49 +81087,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65614] = 16, - ACTIONS(307), 1, + [65024] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(969), 1, sym_string, - STATE(1072), 1, + STATE(983), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1119), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(676), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81613,10 +81146,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65689] = 16, - ACTIONS(307), 1, + [65099] = 16, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, @@ -81624,24 +81157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(682), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1039), 1, + STATE(1061), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(676), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81649,13 +81182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(323), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81672,119 +81205,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65764] = 21, - ACTIONS(2090), 1, - anon_sym_EQ, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, + [65174] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - STATE(1568), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2236), 2, - anon_sym_LT, - anon_sym_GT, - STATE(921), 2, - sym__not_in, - sym__is_not, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2218), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2076), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [65849] = 18, - ACTIONS(307), 1, + ACTIONS(698), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(702), 1, + anon_sym_await, + ACTIONS(704), 1, sym_string_start, - ACTIONS(668), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1007), 1, anon_sym_STAR, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2244), 1, - anon_sym_await, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1595), 1, + STATE(1021), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2242), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1304), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2240), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81797,49 +81264,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65928] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(649), 1, + [65249] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(657), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(967), 1, + STATE(975), 1, sym_string, - STATE(972), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(655), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(653), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1130), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81856,55 +81323,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66003] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [65324] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2244), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(2246), 1, - sym_identifier, - STATE(1033), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1595), 1, + STATE(1031), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2242), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1304), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2240), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81917,49 +81382,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66082] = 16, - ACTIONS(733), 1, + [65399] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1283), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(1107), 1, sym_string, - STATE(1095), 1, + STATE(1225), 1, sym_primary_expression, - STATE(1264), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(739), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(737), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(731), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81976,55 +81441,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66157] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [65474] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(2248), 1, - sym_identifier, - STATE(1033), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1611), 1, + STATE(1007), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2148), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1106), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2146), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82037,53 +81500,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66236] = 18, - ACTIONS(307), 1, + [65549] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, - ACTIONS(2250), 1, - sym_identifier, - ACTIONS(2256), 1, + ACTIONS(2238), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(2256), 1, + sym_identifier, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1606), 1, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, - ACTIONS(2254), 2, + ACTIONS(2236), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2252), 3, + ACTIONS(2234), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82098,55 +81561,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66315] = 18, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [65628] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2164), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(2168), 1, - sym_identifier, - STATE(1033), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1604), 1, + STATE(994), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(2172), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - STATE(1182), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2170), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82159,40 +81620,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66394] = 18, - ACTIONS(307), 1, + [65703] = 18, + ACTIONS(310), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(668), 1, anon_sym_LPAREN, ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1433), 1, anon_sym_STAR, + ACTIONS(2246), 1, + anon_sym_await, ACTIONS(2258), 1, sym_identifier, - ACTIONS(2264), 1, - anon_sym_await, - STATE(1033), 1, + STATE(1010), 1, sym_string, - STATE(1269), 1, + STATE(1342), 1, sym_list_splat_pattern, - STATE(1595), 1, + STATE(1589), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(321), 2, sym_ellipsis, sym_float, ACTIONS(2262), 2, anon_sym_match, anon_sym_type, - STATE(1599), 2, + STATE(1213), 2, sym_attribute, sym_subscript, - ACTIONS(312), 3, + ACTIONS(315), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -82200,12 +81661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(323), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82220,49 +81681,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66473] = 16, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [65782] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1084), 1, + STATE(1024), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82279,49 +81740,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66548] = 16, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [65857] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1037), 1, + STATE(1011), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82338,49 +81799,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66623] = 16, - ACTIONS(801), 1, + [65932] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(787), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(797), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1267), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(996), 1, sym_string, - STATE(1111), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1360), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(807), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 2, + ACTIONS(793), 2, sym_ellipsis, sym_float, - ACTIONS(805), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(811), 3, + ACTIONS(789), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82397,55 +81858,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66698] = 18, - ACTIONS(307), 1, + [66007] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(668), 1, + ACTIONS(649), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(657), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2134), 1, + ACTIONS(661), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1033), 1, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1269), 1, - sym_list_splat_pattern, - STATE(1621), 1, + STATE(985), 1, sym_primary_expression, + STATE(1119), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2132), 2, + ACTIONS(655), 2, anon_sym_match, anon_sym_type, - STATE(629), 2, - sym_attribute, - sym_subscript, - ACTIONS(312), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2130), 3, + ACTIONS(653), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 14, + STATE(1035), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82458,49 +81917,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66777] = 16, - ACTIONS(307), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(668), 1, + [66082] = 16, + ACTIONS(686), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(694), 1, anon_sym_LBRACK, - ACTIONS(682), 1, + ACTIONS(698), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_STAR, - STATE(1033), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1269), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(318), 2, - sym_ellipsis, - sym_float, - ACTIONS(676), 2, + ACTIONS(692), 2, anon_sym_match, anon_sym_type, - ACTIONS(312), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(674), 3, + ACTIONS(700), 2, + sym_ellipsis, + sym_float, + ACTIONS(690), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(696), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(684), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1339), 16, + STATE(1172), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82517,49 +81976,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66852] = 16, - ACTIONS(711), 1, + [66157] = 16, + ACTIONS(801), 1, anon_sym_LPAREN, - ACTIONS(719), 1, + ACTIONS(809), 1, anon_sym_LBRACK, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACE, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_await, - ACTIONS(729), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(982), 1, + STATE(1107), 1, sym_string, - STATE(993), 1, + STATE(1226), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(717), 2, + ACTIONS(807), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 2, + ACTIONS(815), 2, sym_ellipsis, sym_float, - ACTIONS(715), 3, + ACTIONS(805), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 3, + ACTIONS(811), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(709), 5, + ACTIONS(799), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1171), 16, + STATE(1442), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82576,7 +82035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66927] = 16, + [66232] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -82587,13 +82046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1115), 1, + STATE(1227), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82618,7 +82077,66 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1442), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66307] = 16, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + anon_sym_LBRACK, + ACTIONS(791), 1, + anon_sym_LBRACE, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(797), 1, + sym_string_start, + ACTIONS(1267), 1, + anon_sym_STAR, + STATE(996), 1, + sym_string, + STATE(1086), 1, + sym_primary_expression, + STATE(1360), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(789), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1365), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82635,7 +82153,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67002] = 16, + [66382] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2126), 1, + anon_sym_await, + ACTIONS(2264), 1, + sym_identifier, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2124), 2, + anon_sym_match, + anon_sym_type, + STATE(1350), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2122), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66461] = 16, ACTIONS(801), 1, anon_sym_LPAREN, ACTIONS(809), 1, @@ -82646,13 +82225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(819), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1022), 1, + STATE(1107), 1, sym_string, - STATE(1108), 1, + STATE(1228), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1437), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82677,7 +82256,125 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1404), 16, + STATE(1442), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66536] = 16, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(1433), 1, + anon_sym_STAR, + STATE(1010), 1, + sym_string, + STATE(1062), 1, + sym_primary_expression, + STATE(1342), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(676), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1268), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66611] = 16, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(1315), 1, + anon_sym_STAR, + STATE(1028), 1, + sym_string, + STATE(1099), 1, + sym_primary_expression, + STATE(1388), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(717), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(725), 2, + sym_ellipsis, + sym_float, + ACTIONS(715), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(721), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(709), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1270), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82694,10 +82391,313 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, + [66686] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2246), 1, + anon_sym_await, + ACTIONS(2258), 1, + sym_identifier, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2262), 2, + anon_sym_match, + anon_sym_type, + STATE(1213), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2260), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66765] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2120), 1, + sym_identifier, + ACTIONS(2126), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1615), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2124), 2, + anon_sym_match, + anon_sym_type, + STATE(1350), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2122), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66844] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2144), 1, + sym_identifier, + ACTIONS(2150), 1, + anon_sym_await, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2148), 2, + anon_sym_match, + anon_sym_type, + STATE(1445), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2146), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66923] = 16, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_LBRACK, + ACTIONS(745), 1, + anon_sym_LBRACE, + ACTIONS(749), 1, + anon_sym_await, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(971), 1, + sym_string, + STATE(999), 1, + sym_primary_expression, + STATE(1203), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(739), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(747), 2, + sym_ellipsis, + sym_float, + ACTIONS(737), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(743), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(731), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1138), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66998] = 18, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(1433), 1, + anon_sym_STAR, + ACTIONS(2158), 1, + anon_sym_await, + ACTIONS(2266), 1, + sym_identifier, + STATE(1010), 1, + sym_string, + STATE(1342), 1, + sym_list_splat_pattern, + STATE(1614), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(321), 2, + sym_ellipsis, + sym_float, + ACTIONS(2156), 2, + anon_sym_match, + anon_sym_type, + STATE(1071), 2, + sym_attribute, + sym_subscript, + ACTIONS(315), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2154), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(323), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1268), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, [67077] = 21, - ACTIONS(2090), 1, - anon_sym_EQ, - ACTIONS(2100), 1, + ACTIONS(2092), 1, + anon_sym_as, + ACTIONS(2102), 1, anon_sym_not, ACTIONS(2268), 1, anon_sym_DOT, @@ -82715,7 +82715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2292), 1, anon_sym_is, - STATE(1559), 1, + STATE(1571), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, @@ -82732,10 +82732,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2294), 2, anon_sym_LT, anon_sym_GT, - STATE(877), 2, + STATE(889), 2, sym__not_in, sym__is_not, - STATE(1407), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, ACTIONS(2282), 3, @@ -82749,70 +82749,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2076), 7, + ACTIONS(2078), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [67161] = 5, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(968), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2298), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [67161] = 21, - ACTIONS(2090), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67213] = 21, + ACTIONS(2092), 1, anon_sym_as, - ACTIONS(2100), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2296), 1, + ACTIONS(2300), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2302), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2310), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2312), 1, anon_sym_LBRACK, - ACTIONS(2314), 1, + ACTIONS(2318), 1, anon_sym_PIPE, - ACTIONS(2316), 1, + ACTIONS(2320), 1, anon_sym_AMP, - ACTIONS(2318), 1, + ACTIONS(2322), 1, anon_sym_CARET, - ACTIONS(2320), 1, + ACTIONS(2324), 1, anon_sym_is, - STATE(1579), 1, + STATE(1572), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2304), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2302), 2, + ACTIONS(2306), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2312), 2, + ACTIONS(2316), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2322), 2, + ACTIONS(2326), 2, anon_sym_LT, anon_sym_GT, - STATE(961), 2, + STATE(869), 2, sym__not_in, sym__is_not, - STATE(1379), 2, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2310), 3, + ACTIONS(2314), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2304), 6, + ACTIONS(2308), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2076), 7, + ACTIONS(2078), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -82820,101 +82867,721 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [67245] = 21, + [67297] = 20, + ACTIONS(2082), 1, + anon_sym_LPAREN, ACTIONS(2090), 1, - anon_sym_as, + anon_sym_STAR_STAR, ACTIONS(2100), 1, + anon_sym_PIPE, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2324), 1, + ACTIONS(2104), 1, + anon_sym_AMP, + ACTIONS(2106), 1, + anon_sym_CARET, + ACTIONS(2108), 1, + anon_sym_is, + ACTIONS(2328), 1, + anon_sym_DOT, + ACTIONS(2330), 1, + anon_sym_LBRACK, + STATE(1555), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2086), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2110), 2, + anon_sym_LT, + anon_sym_GT, + STATE(901), 2, + sym__not_in, + sym__is_not, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2096), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2088), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [67379] = 21, + ACTIONS(2092), 1, + anon_sym_EQ, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, ACTIONS(2334), 1, + anon_sym_LPAREN, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, - ACTIONS(2342), 1, + ACTIONS(2350), 1, anon_sym_PIPE, - ACTIONS(2344), 1, + ACTIONS(2352), 1, + anon_sym_AMP, + ACTIONS(2354), 1, + anon_sym_CARET, + ACTIONS(2356), 1, + anon_sym_is, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2338), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2348), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2358), 2, + anon_sym_LT, + anon_sym_GT, + STATE(898), 2, + sym__not_in, + sym__is_not, + STATE(1282), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2346), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2340), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [67463] = 5, + ACTIONS(2364), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(968), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2362), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2360), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67515] = 5, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(964), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1547), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67567] = 21, + ACTIONS(2092), 1, + anon_sym_EQ, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2367), 1, + anon_sym_DOT, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, + anon_sym_LBRACK, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2346), 1, + ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(2348), 1, + ACTIONS(2391), 1, anon_sym_is, - STATE(1580), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2373), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2393), 2, + anon_sym_LT, + anon_sym_GT, + STATE(928), 2, + sym__not_in, + sym__is_not, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2375), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [67651] = 5, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(978), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1547), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67702] = 5, + ACTIONS(2395), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(972), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2362), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2360), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [67753] = 8, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2398), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67810] = 11, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2096), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2398), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67873] = 5, + ACTIONS(704), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(984), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1547), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [67924] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_PIPE, + ACTIONS(2422), 1, + anon_sym_AMP, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(2426), 1, + anon_sym_is, + STATE(1566), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2408), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2428), 2, + anon_sym_LT, + anon_sym_GT, + STATE(941), 2, + sym__not_in, + sym__is_not, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2410), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2078), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [68005] = 15, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(2100), 1, + anon_sym_PIPE, + ACTIONS(2104), 1, + anon_sym_AMP, + ACTIONS(2106), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2084), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2086), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2340), 2, + ACTIONS(2098), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2350), 2, - anon_sym_LT, - anon_sym_GT, - STATE(898), 2, - sym__not_in, - sym__is_not, - STATE(1355), 2, + STATE(1043), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2338), 3, + ACTIONS(2096), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2332), 6, + ACTIONS(2432), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2430), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2076), 7, - anon_sym_RPAREN, + [68076] = 5, + ACTIONS(751), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(979), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2298), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [67329] = 5, - ACTIONS(81), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68127] = 5, + ACTIONS(2434), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(969), 2, + STATE(979), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, + ACTIONS(2362), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2360), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -82930,35 +83597,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67381] = 5, - ACTIONS(81), 1, - sym_string_start, + [68178] = 8, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 31, + ACTIONS(2398), 27, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -82977,89 +83646,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67433] = 21, + [68235] = 8, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2100), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(2356), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68292] = 14, + ACTIONS(2080), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2090), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2094), 1, anon_sym_LBRACK, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, + ACTIONS(2104), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2106), 1, anon_sym_CARET, - ACTIONS(2380), 1, - anon_sym_is, - STATE(1561), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2084), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2086), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2098), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2382), 2, - anon_sym_LT, - anon_sym_GT, - STATE(955), 2, - sym__not_in, - sym__is_not, - STATE(1265), 2, + STATE(1043), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2096), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2364), 6, + ACTIONS(2400), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2398), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2076), 7, + [68361] = 8, + ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + anon_sym_STAR_STAR, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1043), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [67517] = 5, - ACTIONS(2388), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68418] = 5, + ACTIONS(704), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(969), 2, + STATE(972), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, + ACTIONS(2298), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2296), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -83072,6 +83828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83087,156 +83844,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67569] = 20, + sym_type_conversion, + [68469] = 10, ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2090), 1, anon_sym_STAR_STAR, - ACTIONS(2098), 1, - anon_sym_PIPE, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2102), 1, - anon_sym_AMP, - ACTIONS(2104), 1, - anon_sym_CARET, - ACTIONS(2106), 1, - anon_sym_is, - ACTIONS(2391), 1, - anon_sym_DOT, - ACTIONS(2393), 1, + ACTIONS(2094), 1, anon_sym_LBRACK, - STATE(1553), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2084), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2096), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - STATE(948), 2, - sym__not_in, - sym__is_not, - STATE(1129), 2, + STATE(1043), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2096), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2086), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2076), 8, + ACTIONS(2400), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2398), 24, sym__newline, anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [67651] = 8, - ACTIONS(2078), 1, - anon_sym_DOT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68530] = 12, ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2090), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2094), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1129), 2, + ACTIONS(2084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2086), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2098), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1043), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2397), 5, - anon_sym_STAR, + ACTIONS(2096), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 27, + ACTIONS(2398), 20, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67708] = 15, - ACTIONS(2078), 1, - anon_sym_DOT, + [68595] = 13, ACTIONS(2080), 1, + anon_sym_DOT, + ACTIONS(2082), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2090), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2094), 1, anon_sym_LBRACK, - ACTIONS(2098), 1, - anon_sym_PIPE, - ACTIONS(2102), 1, - anon_sym_AMP, - ACTIONS(2104), 1, + ACTIONS(2106), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2084), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 2, + ACTIONS(2086), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2096), 2, + ACTIONS(2098), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1129), 2, + STATE(1043), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2096), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, + ACTIONS(2400), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 17, + ACTIONS(2398), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83245,33 +83992,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67779] = 5, - ACTIONS(729), 1, - sym_string_start, + [68662] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(980), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2437), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -83279,8 +84032,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68718] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, anon_sym_STAR_STAR, + ACTIONS(2200), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83300,44 +84099,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67830] = 10, - ACTIONS(2078), 1, + [68774] = 10, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2080), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1129), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2398), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83351,158 +84149,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67891] = 14, - ACTIONS(2078), 1, - anon_sym_DOT, - ACTIONS(2080), 1, + [68834] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2170), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, + ACTIONS(2178), 1, + anon_sym_PIPE, + ACTIONS(2180), 1, anon_sym_AMP, - ACTIONS(2104), 1, + ACTIONS(2182), 1, anon_sym_CARET, + ACTIONS(2184), 1, + anon_sym_is, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LBRACK, + STATE(1567), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2164), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 2, + ACTIONS(2166), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2096), 2, + ACTIONS(2176), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1129), 2, + ACTIONS(2186), 2, + anon_sym_LT, + anon_sym_GT, + STATE(940), 2, + sym__not_in, + sym__is_not, + STATE(1181), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2078), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(2168), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68914] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1662), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [68960] = 5, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2298), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2296), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67960] = 13, - ACTIONS(2078), 1, + [69010] = 10, + ACTIONS(2160), 1, anon_sym_DOT, - ACTIONS(2080), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2170), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2164), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2096), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1129), 2, + STATE(1181), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2174), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2398), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [69070] = 5, + ACTIONS(729), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1029), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2298), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68027] = 11, - ACTIONS(2078), 1, - anon_sym_DOT, - ACTIONS(2080), 1, - anon_sym_LPAREN, - ACTIONS(2088), 1, - anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_LBRACK, + [69120] = 5, + ACTIONS(797), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + STATE(1001), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2096), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1129), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2094), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83512,37 +84437,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68090] = 8, - ACTIONS(2078), 1, - anon_sym_DOT, - ACTIONS(2080), 1, - anon_sym_LPAREN, - ACTIONS(2088), 1, - anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_LBRACK, + [69170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1129), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2447), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 27, + ACTIONS(2445), 32, sym__newline, + sym_string_start, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83561,139 +84480,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68147] = 20, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2407), 1, + [69216] = 15, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2409), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2419), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(2206), 1, anon_sym_PIPE, - ACTIONS(2427), 1, + ACTIONS(2208), 1, anon_sym_AMP, - ACTIONS(2429), 1, + ACTIONS(2210), 1, anon_sym_CARET, - ACTIONS(2431), 1, - anon_sym_is, - STATE(1566), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2413), 2, + ACTIONS(2194), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2423), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2433), 2, - anon_sym_LT, - anon_sym_GT, - STATE(905), 2, - sym__not_in, - sym__is_not, - STATE(1438), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2421), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2076), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [68228] = 5, - ACTIONS(2435), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(980), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, + ACTIONS(2432), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2430), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68279] = 5, - ACTIONS(704), 1, - sym_string_start, + [69286] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(983), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83713,83 +84583,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68330] = 5, - ACTIONS(729), 1, - sym_string_start, + [69342] = 14, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_AMP, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(973), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68381] = 5, - ACTIONS(704), 1, + [69410] = 5, + ACTIONS(797), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(986), 2, + STATE(1004), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, + ACTIONS(2298), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 30, + ACTIONS(2296), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83805,98 +84682,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68432] = 8, - ACTIONS(2078), 1, + [69460] = 13, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2080), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1129), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2192), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2398), 18, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68489] = 12, - ACTIONS(2078), 1, + [69526] = 12, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2080), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2088), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2092), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2084), 2, + ACTIONS(2194), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2096), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1129), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2094), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2398), 19, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83908,36 +84787,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68554] = 5, - ACTIONS(2438), 1, + [69590] = 5, + ACTIONS(2449), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(986), 2, + STATE(1004), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, + ACTIONS(2362), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 30, + ACTIONS(2360), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83953,41 +84832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68605] = 8, - ACTIONS(2078), 1, - anon_sym_DOT, - ACTIONS(2080), 1, - anon_sym_LPAREN, - ACTIONS(2088), 1, - anon_sym_STAR_STAR, - ACTIONS(2092), 1, - anon_sym_LBRACK, + [69640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1129), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(1668), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1666), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84003,30 +84874,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68662] = 5, - ACTIONS(775), 1, + sym_type_conversion, + [69686] = 5, + ACTIONS(2452), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1024), 2, + STATE(1006), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, + ACTIONS(2362), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 29, + ACTIONS(2360), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84048,28 +84920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68712] = 8, - ACTIONS(2210), 1, + [69736] = 8, + ACTIONS(2160), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2170), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2172), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1172), 2, + STATE(1181), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(2400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(2398), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -84096,144 +84968,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68768] = 11, - ACTIONS(2174), 1, + [69792] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2300), 1, anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, + ACTIONS(2312), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2178), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2190), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2403), 21, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68830] = 20, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2270), 1, + ACTIONS(2404), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2412), 1, anon_sym_STAR_STAR, - ACTIONS(2286), 1, + ACTIONS(2420), 1, anon_sym_PIPE, - ACTIONS(2288), 1, + ACTIONS(2422), 1, anon_sym_AMP, - ACTIONS(2290), 1, + ACTIONS(2424), 1, anon_sym_CARET, - ACTIONS(2292), 1, + ACTIONS(2426), 1, anon_sym_is, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2336), 1, - anon_sym_LBRACK, - STATE(1559), 1, + STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2408), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + ACTIONS(2428), 2, anon_sym_LT, anon_sym_GT, - STATE(877), 2, + STATE(941), 2, sym__not_in, sym__is_not, - STATE(1407), 2, + STATE(1447), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2416), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2076), 6, - anon_sym_RPAREN, + ACTIONS(2078), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(2276), 6, + ACTIONS(2410), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68910] = 3, + [69872] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, - anon_sym_as, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(1547), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84249,40 +85072,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68956] = 8, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, + [69920] = 5, + ACTIONS(327), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, - anon_sym_as, + STATE(993), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 26, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84298,42 +85117,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69012] = 3, + [69970] = 13, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, + ACTIONS(2182), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, - anon_sym_as, + ACTIONS(2164), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2166), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2176), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -84341,73 +85170,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69058] = 5, - ACTIONS(324), 1, - sym_string_start, + [70036] = 12, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1031), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, + ACTIONS(2164), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2166), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2176), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 19, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69108] = 8, - ACTIONS(2174), 1, + sym_type_conversion, + [70100] = 8, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2176), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2186), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2400), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 26, + ACTIONS(2398), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84434,33 +85270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69164] = 10, - ACTIONS(2174), 1, + [70156] = 11, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2176), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2186), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2178), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1233), 2, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2188), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 23, + ACTIONS(2398), 21, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84468,10 +85307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84484,72 +85321,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69224] = 14, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, - ACTIONS(2194), 1, - anon_sym_AMP, - ACTIONS(2196), 1, - anon_sym_CARET, + [70218] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2178), 2, + STATE(1020), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2180), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69292] = 3, + [70268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 6, + ACTIONS(1676), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(1674), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84581,112 +85409,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69338] = 13, - ACTIONS(2174), 1, + [70314] = 8, + ACTIONS(2160), 1, anon_sym_DOT, - ACTIONS(2176), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2170), 1, anon_sym_STAR_STAR, - ACTIONS(2186), 1, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(2196), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2178), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2180), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, + STATE(1181), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, + ACTIONS(2443), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, + ACTIONS(2441), 26, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69404] = 12, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2178), 2, + ACTIONS(1668), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2180), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 19, + ACTIONS(1666), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69468] = 3, + sym_type_conversion, + [70416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -84729,22 +85543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [69514] = 5, - ACTIONS(753), 1, + [70462] = 5, + ACTIONS(775), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1026), 2, + STATE(1022), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2298), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2296), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84774,34 +85588,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69564] = 3, + [70512] = 8, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84817,24 +85635,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69610] = 3, + sym_type_conversion, + [70568] = 5, + ACTIONS(2455), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, + STATE(1022), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2362), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2360), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84843,7 +85666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84859,8 +85681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69656] = 4, + [70618] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -84904,86 +85725,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69704] = 5, - ACTIONS(2449), 1, - sym_string_start, + [70666] = 14, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, + ACTIONS(2180), 1, + anon_sym_AMP, + ACTIONS(2182), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1007), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, - anon_sym_as, + ACTIONS(2164), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2166), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2176), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2398), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69754] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [70734] = 11, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2164), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2176), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2174), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84993,35 +85829,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69802] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [70796] = 8, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2162), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_STAR_STAR, + ACTIONS(2172), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + STATE(1181), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2437), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85037,33 +85877,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69850] = 3, + sym_type_conversion, + [70852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 6, - anon_sym_as, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, + ACTIONS(2458), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85079,34 +85921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69896] = 5, - ACTIONS(819), 1, + [70898] = 5, + ACTIONS(729), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1012), 2, + STATE(995), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85125,33 +85966,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69946] = 5, - ACTIONS(2452), 1, + [70948] = 5, + ACTIONS(2462), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1012), 2, + STATE(1029), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, - anon_sym_as, + ACTIONS(2362), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 29, + ACTIONS(2360), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85170,104 +86011,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69996] = 12, - ACTIONS(2210), 1, + [70998] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + ACTIONS(2350), 1, + anon_sym_PIPE, + ACTIONS(2352), 1, + anon_sym_AMP, + ACTIONS(2354), 1, + anon_sym_CARET, + ACTIONS(2356), 1, + anon_sym_is, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2338), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2348), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1172), 2, + ACTIONS(2358), 2, + anon_sym_LT, + anon_sym_GT, + STATE(898), 2, + sym__not_in, + sym__is_not, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2346), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2403), 19, + ACTIONS(2078), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, + ACTIONS(2340), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70060] = 13, - ACTIONS(2210), 1, + [71078] = 15, + ACTIONS(2160), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2162), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2170), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2172), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2178), 1, + anon_sym_PIPE, + ACTIONS(2180), 1, + anon_sym_AMP, + ACTIONS(2182), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2164), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2166), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2176), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1172), 2, + STATE(1181), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2174), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2432), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, + ACTIONS(2430), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85275,53 +86126,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70126] = 14, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, + [71148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(1676), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, + ACTIONS(1674), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85329,39 +86169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70194] = 10, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + [71194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(1672), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 23, + ACTIONS(1670), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -85369,6 +86200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85379,38 +86212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70254] = 8, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + [71240] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 26, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85426,145 +86256,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70310] = 15, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, + [71288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(1552), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 16, + ACTIONS(1547), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70380] = 11, - ACTIONS(2210), 1, + [71333] = 12, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2226), 2, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1172), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 21, + ACTIONS(2398), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70442] = 8, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + [71396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 26, + ACTIONS(2465), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85580,34 +86391,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70498] = 3, + [71441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 6, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(2469), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85623,34 +86433,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70544] = 5, - ACTIONS(819), 1, - sym_string_start, + [71486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1011), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2473), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85669,85 +86475,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70594] = 20, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2186), 1, - anon_sym_LBRACK, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - STATE(1568), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2236), 2, - anon_sym_LT, - anon_sym_GT, - STATE(921), 2, - sym__not_in, - sym__is_not, - STATE(1172), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2076), 6, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2218), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [70674] = 5, - ACTIONS(2455), 1, - sym_string_start, + [71531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1024), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 29, + ACTIONS(2477), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85774,25 +86517,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70724] = 5, - ACTIONS(775), 1, - sym_string_start, + [71576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(988), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2481), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85819,30 +86559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70774] = 5, - ACTIONS(753), 1, - sym_string_start, + [71621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1007), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 5, - anon_sym_as, + ACTIONS(2487), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 29, + ACTIONS(2485), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85864,19 +86601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70824] = 3, + [71666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(2491), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 32, + ACTIONS(2489), 31, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -85907,150 +86643,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70870] = 20, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2296), 1, + [71711] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 28, anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2425), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2427), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2429), 1, anon_sym_CARET, - ACTIONS(2431), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(1566), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71760] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2433), 2, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - STATE(905), 2, - sym__not_in, - sym__is_not, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, + ACTIONS(706), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2076), 6, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2415), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70950] = 15, - ACTIONS(2174), 1, + [71809] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 14, anon_sym_DOT, - ACTIONS(2176), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2186), 1, anon_sym_LBRACK, - ACTIONS(2192), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2194), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2196), 1, anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71858] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2178), 2, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2180), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2188), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71905] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 6, anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 16, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71020] = 8, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, + [71952] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(1552), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 26, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86070,24 +86904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71076] = 5, - ACTIONS(2462), 1, - sym_string_start, + [71999] = 8, + ACTIONS(2367), 1, + anon_sym_DOT, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1031), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 5, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2441), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86095,8 +86933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86115,38 +86951,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71126] = 8, - ACTIONS(2210), 1, + [72054] = 8, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1172), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2397), 5, + ACTIONS(2439), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 26, + ACTIONS(2437), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86162,37 +86998,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71182] = 5, - ACTIONS(324), 1, - sym_string_start, + [72109] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86208,35 +87043,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71232] = 8, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - anon_sym_STAR_STAR, - ACTIONS(2186), 1, - anon_sym_LBRACK, + [72160] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2397), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 26, + ACTIONS(706), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86256,33 +87088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71288] = 3, + [72211] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(1658), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1648), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1652), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86298,35 +87133,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71333] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [72262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, - anon_sym_as, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, - anon_sym_RPAREN, + ACTIONS(1605), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86345,28 +87175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71388] = 8, - ACTIONS(2356), 1, + [72307] = 8, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2398), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86392,33 +87222,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71443] = 10, - ACTIONS(2356), 1, + [72362] = 11, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1265), 2, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 22, + ACTIONS(2398), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86426,9 +87259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86441,50 +87272,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71502] = 14, - ACTIONS(2356), 1, + [72423] = 15, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2389), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2432), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 16, + ACTIONS(2430), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86494,77 +87326,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71569] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, + [72492] = 8, + ACTIONS(2367), 1, anon_sym_DOT, + ACTIONS(2369), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2377), 1, anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71616] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86580,40 +87373,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71663] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [72547] = 10, + ACTIONS(2367), 1, + anon_sym_DOT, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2371), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86623,41 +87422,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71710] = 13, - ACTIONS(2356), 1, + [72606] = 14, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, - ACTIONS(2378), 1, + ACTIONS(2387), 1, + anon_sym_AMP, + ACTIONS(2389), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, + ACTIONS(2398), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -86668,46 +87469,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71775] = 12, - ACTIONS(2356), 1, + [72673] = 13, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2379), 1, anon_sym_LBRACK, + ACTIONS(2389), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, + ACTIONS(2398), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -86719,110 +87521,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71838] = 5, + [72738] = 12, + ACTIONS(2367), 1, + anon_sym_DOT, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2373), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2383), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71887] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_STAR, + ACTIONS(2400), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71932] = 3, + [72801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 31, + ACTIONS(1670), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86854,78 +87620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71977] = 5, + [72846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1664), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 17, + ACTIONS(1662), 31, sym__newline, anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72026] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 28, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86941,34 +87662,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72075] = 3, + [72891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, - anon_sym_as, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, + ACTIONS(1674), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86984,34 +87704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72120] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [72936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1676), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1674), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87027,30 +87746,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72169] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(741), 1, - anon_sym_EQ, + [72981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1668), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1666), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -87072,17 +87788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72218] = 3, + [73026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 31, + ACTIONS(1666), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87114,35 +87830,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72263] = 5, - ACTIONS(797), 1, - sym_string_start, + [73071] = 5, + ACTIONS(1549), 1, + anon_sym_COMMA, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1119), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2354), 4, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 29, + ACTIONS(1547), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87158,101 +87873,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72312] = 3, + sym_type_conversion, + [73120] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1655), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1652), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72357] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 31, + ACTIONS(1648), 17, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72402] = 3, + [73169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, + ACTIONS(2493), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87284,30 +87960,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72447] = 3, + [73214] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2497), 1, + anon_sym_LBRACK, + STATE(1925), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1547), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87326,17 +88005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72492] = 3, + [73265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 31, + ACTIONS(2499), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87368,30 +88047,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72537] = 3, + [73310] = 8, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2441), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87410,30 +88094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72582] = 3, + [73365] = 8, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2437), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87452,17 +88141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72627] = 3, + [73420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(2503), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87494,17 +88183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72672] = 3, + [73465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 31, + ACTIONS(2507), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87536,33 +88225,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72717] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [73510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2513), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2511), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87578,31 +88267,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72764] = 3, + [73555] = 8, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87621,39 +88314,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72809] = 3, + [73610] = 11, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2304), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2316), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2314), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 20, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87663,76 +88364,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72854] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [73671] = 15, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + anon_sym_AMP, + ACTIONS(2322), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2304), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2306), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2316), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2314), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2432), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2430), 15, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72901] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [73740] = 8, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87748,42 +88465,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72948] = 5, - ACTIONS(797), 1, - sym_string_start, + [73795] = 10, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1552), 4, + ACTIONS(2304), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2314), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 22, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87793,167 +88514,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72997] = 3, + [73854] = 14, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_AMP, + ACTIONS(2322), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2304), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2306), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2316), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2314), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73042] = 3, + [73921] = 13, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_STAR_STAR, + ACTIONS(2312), 1, + anon_sym_LBRACK, + ACTIONS(2322), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2304), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2306), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2316), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2314), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 17, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73087] = 11, - ACTIONS(2356), 1, + [73986] = 12, + ACTIONS(2300), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2302), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2310), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2312), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2304), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2372), 2, + ACTIONS(2306), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2316), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2314), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, + ACTIONS(2400), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 20, + ACTIONS(2398), 18, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73148] = 3, + [74049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2447), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2445), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87969,17 +88712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73193] = 3, + [74094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(2515), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88011,38 +88754,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73238] = 8, - ACTIONS(2356), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2368), 1, - anon_sym_LBRACK, + [74139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2460), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2458), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88058,33 +88796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73293] = 3, + [74184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, - anon_sym_as, + ACTIONS(2521), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, + ACTIONS(2519), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88100,34 +88838,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73338] = 5, - ACTIONS(1549), 1, - anon_sym_COMMA, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [74229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2525), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2523), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88143,30 +88880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73387] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(741), 1, - anon_sym_EQ, + [74274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2529), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2527), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -88188,139 +88922,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73436] = 12, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, + [74319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2447), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, - anon_sym_RPAREN, + ACTIONS(2445), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73499] = 13, - ACTIONS(2268), 1, + sym_type_conversion, + [74364] = 8, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1407), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2443), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, + ACTIONS(2441), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73564] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1624), 1, - anon_sym_COLON, + [74419] = 8, + ACTIONS(2332), 1, + anon_sym_DOT, + ACTIONS(2334), 1, + anon_sym_LPAREN, + ACTIONS(2342), 1, + anon_sym_STAR_STAR, + ACTIONS(2344), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, - anon_sym_as, + STATE(1282), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2437), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88336,21 +89058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73615] = 3, + [74474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2458), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88363,6 +89083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88378,30 +89099,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73660] = 3, + sym_type_conversion, + [74519] = 8, + ACTIONS(2332), 1, + anon_sym_DOT, + ACTIONS(2334), 1, + anon_sym_LPAREN, + ACTIONS(2342), 1, + anon_sym_STAR_STAR, + ACTIONS(2344), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + STATE(1282), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88420,93 +89147,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73705] = 15, - ACTIONS(2356), 1, + [74574] = 11, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2378), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2348), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2346), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2399), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73774] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 5, - anon_sym_STAR, + ACTIONS(2400), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2398), 20, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88516,50 +89197,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73819] = 14, - ACTIONS(2268), 1, + [74635] = 15, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, - ACTIONS(2288), 1, + ACTIONS(2350), 1, + anon_sym_PIPE, + ACTIONS(2352), 1, anon_sym_AMP, - ACTIONS(2290), 1, + ACTIONS(2354), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(2338), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2284), 2, + ACTIONS(2348), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1407), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, + ACTIONS(2346), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2432), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 16, + ACTIONS(2430), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88569,33 +89251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73886] = 10, - ACTIONS(2268), 1, + [74704] = 8, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1407), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 22, + ACTIONS(2398), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -88603,12 +89280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88618,44 +89298,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73945] = 8, - ACTIONS(2324), 1, + [74759] = 10, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, ACTIONS(2334), 1, + anon_sym_LPAREN, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, - anon_sym_as, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1282), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2346), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2398), 22, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88665,186 +89347,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74000] = 8, - ACTIONS(2268), 1, + [74818] = 14, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2270), 1, + ACTIONS(2334), 1, anon_sym_LPAREN, - ACTIONS(2278), 1, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2280), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, + ACTIONS(2352), 1, + anon_sym_AMP, + ACTIONS(2354), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1407), 2, + ACTIONS(2336), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2338), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2348), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2405), 5, - anon_sym_STAR, + ACTIONS(2346), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2398), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74055] = 11, - ACTIONS(2324), 1, + [74885] = 13, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, ACTIONS(2334), 1, + anon_sym_LPAREN, + ACTIONS(2342), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, + ACTIONS(2354), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2340), 2, + ACTIONS(2338), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2348), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1355), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2338), 3, + ACTIONS(2346), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 20, + ACTIONS(2398), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74116] = 15, - ACTIONS(2324), 1, + [74950] = 12, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2342), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(2344), 1, - anon_sym_AMP, - ACTIONS(2346), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2336), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2338), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2340), 2, + ACTIONS(2348), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1355), 2, + STATE(1282), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2338), 3, + ACTIONS(2346), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, - anon_sym_as, + ACTIONS(2400), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 15, + ACTIONS(2398), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74185] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [75013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, - anon_sym_as, + ACTIONS(2533), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, - anon_sym_RPAREN, + ACTIONS(2531), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88863,46 +89545,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74240] = 10, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [75058] = 5, + ACTIONS(819), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + STATE(1111), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1552), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 22, - anon_sym_RPAREN, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88912,91 +89589,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74299] = 14, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_AMP, - ACTIONS(2346), 1, - anon_sym_CARET, + [75107] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2340), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 16, - anon_sym_RPAREN, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74366] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + sym_type_conversion, + [75154] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2397), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 25, - anon_sym_RPAREN, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89012,38 +89674,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74421] = 8, - ACTIONS(2356), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2368), 1, - anon_sym_LBRACK, + sym_type_conversion, + [75201] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2397), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 25, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89059,21 +89717,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74476] = 3, + sym_type_conversion, + [75248] = 5, + ACTIONS(819), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + STATE(1112), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2298), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2296), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89083,6 +89743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89101,139 +89762,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74521] = 13, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_CARET, + [75297] = 5, + ACTIONS(2535), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + STATE(1112), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2362), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2340), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, - anon_sym_RPAREN, + ACTIONS(2360), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74586] = 15, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - anon_sym_AMP, - ACTIONS(2290), 1, - anon_sym_CARET, + [75346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(2540), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2274), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 15, - anon_sym_RPAREN, + ACTIONS(2538), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74655] = 6, - ACTIONS(1554), 1, + [75391] = 5, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(2513), 1, - anon_sym_LBRACK, - STATE(1967), 1, - sym_type_parameter, + ACTIONS(763), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89252,27 +89892,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74706] = 3, + [75440] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(763), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89294,47 +89936,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74751] = 11, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, + [75489] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2542), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2272), 2, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2284), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2282), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 20, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89344,35 +89980,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74812] = 8, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, + [75538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, - anon_sym_RPAREN, + ACTIONS(277), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89391,17 +90022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74867] = 3, + [75583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, + ACTIONS(277), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89433,19 +90064,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74912] = 3, + [75628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 31, - sym_string_start, + ACTIONS(1609), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89458,7 +90091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89474,80 +90106,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74957] = 5, + [75673] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(2544), 1, + anon_sym_LBRACK, + STATE(1890), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1552), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1624), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(1547), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75724] = 8, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_STAR_STAR, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1389), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75006] = 8, - ACTIONS(2356), 1, + [75779] = 8, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + STATE(1389), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(2546), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89566,136 +90287,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75061] = 12, - ACTIONS(2296), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LPAREN, - ACTIONS(2306), 1, - anon_sym_STAR_STAR, - ACTIONS(2308), 1, - anon_sym_LBRACK, + [75879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2312), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1379), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2310), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 18, + ACTIONS(2550), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75124] = 13, - ACTIONS(2296), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LPAREN, - ACTIONS(2306), 1, - anon_sym_STAR_STAR, - ACTIONS(2308), 1, - anon_sym_LBRACK, - ACTIONS(2318), 1, - anon_sym_CARET, + [75924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2312), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1379), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2310), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 17, + ACTIONS(1623), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75189] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2523), 1, - anon_sym_LBRACK, - STATE(1892), 1, - sym_type_parameter, + [75969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1642), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(1637), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89714,35 +90413,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75240] = 8, - ACTIONS(2296), 1, + [76014] = 8, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1379), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2397), 5, + ACTIONS(2400), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 25, + ACTIONS(2398), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89761,137 +90460,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75295] = 14, - ACTIONS(2296), 1, + [76069] = 11, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, - ACTIONS(2316), 1, - anon_sym_AMP, - ACTIONS(2318), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2312), 2, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1379), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2310), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 16, + ACTIONS(2398), 20, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75362] = 10, - ACTIONS(2296), 1, + [76130] = 15, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_PIPE, + ACTIONS(2288), 1, + anon_sym_AMP, + ACTIONS(2290), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1379), 2, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2310), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2432), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 22, + ACTIONS(2430), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75421] = 8, - ACTIONS(2296), 1, + [76199] = 8, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1379), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2400), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2398), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89910,184 +90611,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75476] = 15, - ACTIONS(2296), 1, + [76254] = 10, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, - ACTIONS(2314), 1, - anon_sym_PIPE, - ACTIONS(2316), 1, - anon_sym_AMP, - ACTIONS(2318), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2312), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1379), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2310), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2401), 3, + ACTIONS(2400), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2399), 15, + ACTIONS(2398), 22, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75545] = 11, - ACTIONS(2296), 1, + [76313] = 14, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_AMP, + ACTIONS(2290), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2300), 2, + ACTIONS(2272), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2312), 2, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1379), 2, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2310), 3, + ACTIONS(2282), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, + ACTIONS(2400), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 20, + ACTIONS(2398), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75606] = 8, - ACTIONS(2296), 1, + [76380] = 13, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2270), 1, anon_sym_LPAREN, - ACTIONS(2306), 1, + ACTIONS(2278), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, + ACTIONS(2280), 1, anon_sym_LBRACK, + ACTIONS(2290), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1379), 2, + ACTIONS(2272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2274), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2284), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1389), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2405), 5, + ACTIONS(2282), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2400), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, + ACTIONS(2398), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75661] = 3, + [76445] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90103,21 +90808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75706] = 5, - ACTIONS(2525), 1, - sym_string_start, + sym_type_conversion, + [76494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1119), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2386), 4, + ACTIONS(2509), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2384), 29, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90128,10 +90830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90147,33 +90849,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75755] = 3, + sym_type_conversion, + [76538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1637), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90189,35 +90891,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75800] = 8, - ACTIONS(2296), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LPAREN, - ACTIONS(2306), 1, - anon_sym_STAR_STAR, - ACTIONS(2308), 1, - anon_sym_LBRACK, + [76582] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1379), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(1549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, - anon_sym_COMMA, + ACTIONS(1547), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90236,29 +90934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75855] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, + [76630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(1547), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90281,23 +90975,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75906] = 3, + [76674] = 4, + ACTIONS(1611), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1609), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -90308,6 +91000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90323,89 +91016,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75951] = 12, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2328), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2340), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2405), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2403), 18, - anon_sym_RPAREN, + sym_type_conversion, + [76720] = 4, + ACTIONS(1549), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76014] = 8, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1547), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90421,35 +91058,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76069] = 8, - ACTIONS(2268), 1, - anon_sym_DOT, - ACTIONS(2270), 1, - anon_sym_LPAREN, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2280), 1, - anon_sym_LBRACK, + sym_type_conversion, + [76766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1407), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2397), 5, + ACTIONS(2447), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 25, - anon_sym_RPAREN, + ACTIONS(2445), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90468,21 +91100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76124] = 3, + [76810] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 31, - sym_string_start, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -90510,155 +91142,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [76169] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2536), 1, - anon_sym_EQ, + [76856] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76218] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(663), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76263] = 3, + sym_type_conversion, + [76904] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(706), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76308] = 3, + sym_type_conversion, + [76952] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90680,27 +91270,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76353] = 3, + [76998] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90722,72 +91312,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76398] = 6, - ACTIONS(292), 1, + [77044] = 4, + ACTIONS(1554), 1, anon_sym_COLON_EQ, - ACTIONS(670), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76449] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1547), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90809,20 +91354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76494] = 3, + [77090] = 4, + ACTIONS(1639), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -90850,24 +91396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [76538] = 3, + [77136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90890,25 +91437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76582] = 3, + [77180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90931,27 +91478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76626] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [77224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1552), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2546), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -90960,6 +91503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90975,24 +91519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76674] = 3, + [77268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(2491), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 30, + ACTIONS(2489), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91015,22 +91560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76718] = 3, + [77312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(2460), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, + ACTIONS(2458), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91039,6 +91582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91057,24 +91601,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76762] = 3, + [77356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + ACTIONS(2495), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 30, + ACTIONS(2493), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91097,25 +91642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76806] = 3, + [77400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2513), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(2511), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91138,25 +91683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76850] = 3, + [77444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2525), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 30, + ACTIONS(2523), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91179,27 +91724,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76894] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91208,6 +91749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91223,26 +91765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76942] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(2533), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2531), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91251,6 +91790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91266,24 +91806,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76990] = 3, + [77576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91306,18 +91847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77034] = 3, + [77620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91348,24 +91888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77078] = 3, + [77664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91388,25 +91929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77122] = 3, + [77708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91429,34 +91970,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77166] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2475), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2473), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91472,25 +92011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77212] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [77796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2477), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91499,6 +92036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91514,25 +92052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77258] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91541,6 +92077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91556,25 +92093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77304] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2487), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2485), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91583,6 +92118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91598,33 +92134,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77350] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [77928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91640,33 +92175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77396] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [77972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2503), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91682,24 +92216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77442] = 3, + [78016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91722,21 +92257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77486] = 3, + [78060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2515), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91749,6 +92282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91764,20 +92298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77530] = 3, + [78104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2521), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2519), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91790,6 +92323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91805,17 +92339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77574] = 3, + [78148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1547), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91846,24 +92380,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77618] = 3, + [78192] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1648), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91886,32 +92422,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77662] = 3, + [78238] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91927,32 +92464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77706] = 3, + [78284] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91968,32 +92506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77750] = 3, + [78330] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92009,18 +92548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77794] = 3, + [78376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92051,17 +92589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77838] = 3, + [78420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92092,17 +92630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77882] = 3, + [78464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2548), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2546), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92133,114 +92671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77926] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [78508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77974] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2447), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78022] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92262,17 +92712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78070] = 3, + [78552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2491), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 30, + ACTIONS(2489), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92303,58 +92753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78114] = 3, + [78596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78158] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2493), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92385,21 +92794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78202] = 4, - ACTIONS(1643), 1, - anon_sym_COMMA, + [78640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(2513), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2511), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92427,17 +92835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78248] = 3, + [78684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2523), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92468,17 +92876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78292] = 3, + [78728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92509,17 +92917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78336] = 3, + [78772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92550,31 +92958,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78380] = 3, + [78816] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92590,18 +93001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78424] = 3, + [78864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92632,21 +93042,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78468] = 4, - ACTIONS(1549), 1, - anon_sym_COMMA, + [78908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92674,17 +93083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78514] = 3, + [78952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92715,21 +93124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78558] = 3, + [78996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92741,6 +93148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92756,42 +93164,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78602] = 5, + sym_type_conversion, + [79040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(2475), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1624), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(2473), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [79084] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2479), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2477), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -92799,17 +93247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78650] = 3, + [79128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92840,34 +93288,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78694] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [79172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2487), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2485), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92883,32 +93328,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78742] = 3, + sym_type_conversion, + [79216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92924,32 +93369,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78786] = 3, + sym_type_conversion, + [79260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_as, + ACTIONS(2505), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(2503), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92965,17 +93410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78830] = 3, + sym_type_conversion, + [79304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93006,32 +93452,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78874] = 3, + [79348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1623), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93047,32 +93493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78918] = 4, - ACTIONS(1628), 1, - anon_sym_COMMA, + [79392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93088,38 +93534,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78964] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [79436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2397), 4, + ACTIONS(2517), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 25, + ACTIONS(2515), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93135,34 +93574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79018] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [79480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(663), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(665), 5, - anon_sym_as, + ACTIONS(2521), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 27, + ACTIONS(2519), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93178,34 +93615,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79066] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [79524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, + ACTIONS(1614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 27, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93221,42 +93657,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79114] = 5, + [79568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1607), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -93264,28 +93698,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79162] = 5, - ACTIONS(1554), 1, + [79612] = 5, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1552), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93307,37 +93741,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79210] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [79660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2443), 4, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 25, + ACTIONS(1670), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93353,17 +93781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79264] = 3, + sym_type_conversion, + [79704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(1662), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93394,42 +93823,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79308] = 5, + [79748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(1676), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -93437,33 +93864,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79356] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [79792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1676), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93479,17 +93904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79402] = 3, + sym_type_conversion, + [79836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93520,33 +93946,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79446] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [79880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, - anon_sym_as, + ACTIONS(1668), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93562,20 +93986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79492] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [79924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2447), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93583,6 +94006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93604,74 +94028,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79538] = 3, + [79968] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 5, + ACTIONS(1655), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1648), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79582] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 6, + ACTIONS(1614), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93687,30 +94111,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79628] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93729,29 +94153,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79674] = 4, - ACTIONS(292), 1, + [80104] = 6, + ACTIONS(1554), 1, anon_sym_COLON_EQ, + ACTIONS(2554), 1, + anon_sym_LBRACK, + STATE(2033), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -93771,33 +94197,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79720] = 4, + [80154] = 8, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, - anon_sym_as, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2443), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2441), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93813,29 +94243,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79766] = 3, + [80208] = 8, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2439), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2437), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93854,31 +94289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79810] = 3, + [80262] = 6, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, + ACTIONS(1561), 1, + anon_sym_LBRACK, + STATE(2018), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1552), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 30, + ACTIONS(1547), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93894,33 +94333,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79854] = 3, + [80312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2460), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93936,25 +94374,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79898] = 3, + [80356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, - anon_sym_as, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 30, + ACTIONS(1623), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93977,21 +94414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79942] = 4, - ACTIONS(1650), 1, - anon_sym_COMMA, + sym_type_conversion, + [80400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94019,32 +94456,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79988] = 3, + [80444] = 8, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, - anon_sym_as, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2398), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94060,38 +94502,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80032] = 3, + [80498] = 11, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2418), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2398), 20, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94101,32 +94551,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80076] = 3, + [80558] = 15, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_PIPE, + ACTIONS(2422), 1, + anon_sym_AMP, + ACTIONS(2424), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2406), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2408), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2432), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2430), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80626] = 8, + ACTIONS(2402), 1, anon_sym_DOT, + ACTIONS(2404), 1, anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2400), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2398), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94142,38 +94650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80120] = 3, + [80680] = 10, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2398), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94183,316 +94698,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80164] = 3, + [80738] = 14, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_AMP, + ACTIONS(2424), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2408), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2418), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2398), 16, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80804] = 13, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, anon_sym_STAR_STAR, + ACTIONS(2414), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2424), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2408), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2418), 2, anon_sym_DASH, + anon_sym_PLUS, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2398), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80208] = 3, + [80868] = 12, + ACTIONS(2402), 1, + anon_sym_DOT, + ACTIONS(2404), 1, + anon_sym_LPAREN, + ACTIONS(2412), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2408), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2418), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1447), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2416), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2398), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80252] = 3, + [80930] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [80296] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2469), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(663), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80340] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2554), 1, - anon_sym_LBRACK, - STATE(2031), 1, - sym_type_parameter, + [80978] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80390] = 3, + [81026] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [80434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1648), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80478] = 3, + [81074] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(663), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94514,32 +95023,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80522] = 3, + [81122] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1648), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1655), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94555,19 +95066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80566] = 3, + [81170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1666), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94580,7 +95092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94596,31 +95107,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80610] = 3, + [81214] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1549), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 30, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94636,24 +95150,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80654] = 3, + [81262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2447), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -94662,7 +95176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94678,31 +95191,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80698] = 3, + [81306] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94718,35 +95234,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80742] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [81354] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 4, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2403), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(277), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94765,136 +95277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80796] = 11, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [81402] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2405), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(279), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2403), 20, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [80856] = 15, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2401), 2, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [80924] = 8, - ACTIONS(2407), 1, + ACTIONS(277), 28, anon_sym_DOT, - ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2405), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2403), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94913,32 +95319,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80978] = 3, + [81448] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94954,221 +95361,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81022] = 10, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [81494] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2405), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(1552), 6, anon_sym_STAR, - anon_sym_SLASH, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2403), 22, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81080] = 14, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2405), 2, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2403), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81146] = 13, - ACTIONS(2407), 1, + ACTIONS(1547), 28, anon_sym_DOT, - ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2405), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2403), 17, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81210] = 12, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2405), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1438), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2403), 18, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81272] = 3, + [81540] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95177,7 +95427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95196,23 +95445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81316] = 3, + [81586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2460), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 30, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -95221,7 +95471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95237,118 +95486,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81360] = 5, + [81630] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + ACTIONS(663), 2, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81408] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(665), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, + ACTIONS(665), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81456] = 6, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(1561), 1, - anon_sym_LBRACK, - STATE(2105), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 6, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 26, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95367,75 +95529,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81506] = 5, + [81678] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1624), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1616), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + ACTIONS(663), 2, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(665), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(706), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95451,73 +95572,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81598] = 3, + [81726] = 5, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2542), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + ACTIONS(1648), 2, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [81642] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(1655), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 30, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95533,24 +95615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81686] = 5, + [81774] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95576,24 +95657,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81734] = 5, - ACTIONS(292), 1, + [81820] = 4, + ACTIONS(1554), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95619,19 +95699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81782] = 3, + [81866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95644,7 +95725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95660,19 +95740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81826] = 3, + [81910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1676), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95685,7 +95766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95701,32 +95781,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81870] = 3, + [81954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_as, + ACTIONS(2460), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 30, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95742,23 +95822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81914] = 3, + [81998] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -95767,7 +95850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95783,26 +95865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81958] = 3, + [82046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(1664), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(1662), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95824,32 +95906,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82002] = 3, + [82090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 30, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95865,29 +95946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82046] = 3, + [82133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 5, + ACTIONS(1648), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1655), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95906,17 +95987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82090] = 3, + [82178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95946,17 +96027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82133] = 3, + [82221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95986,17 +96067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82176] = 3, + [82264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96026,25 +96107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82219] = 7, - ACTIONS(1639), 1, + [82307] = 7, + ACTIONS(1660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 2, + ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(1650), 5, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1616), 12, + ACTIONS(1648), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -96057,7 +96138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1618), 12, + ACTIONS(1652), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -96070,20 +96151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [82270] = 3, + [82358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2525), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96092,6 +96172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96110,20 +96191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82313] = 3, + [82401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96132,6 +96212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96150,20 +96231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82356] = 3, + [82444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2533), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96172,6 +96252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96190,25 +96271,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82399] = 3, + [82487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1642), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82530] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96230,20 +96351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82442] = 3, + [82573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(2540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96252,6 +96372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96270,17 +96391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82485] = 3, + [82616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96310,25 +96431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82528] = 3, + [82659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96350,29 +96471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82571] = 4, + [82702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, - anon_sym_as, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 27, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96391,68 +96511,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82616] = 3, + [82745] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(1655), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1648), 15, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82792] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(663), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82839] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(706), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82659] = 3, + [82886] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96471,28 +96678,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82702] = 3, + [82931] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96511,28 +96719,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82745] = 3, + [82976] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(1552), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(1547), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96551,25 +96760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82788] = 3, + [83021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96591,25 +96800,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82831] = 3, + [83064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96631,17 +96840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82874] = 3, + [83107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96671,28 +96880,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82917] = 3, + [83150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96711,25 +96920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82960] = 3, + [83193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96751,20 +96960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83003] = 5, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(2536), 1, - anon_sym_EQ, + [83236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 4, + ACTIONS(2491), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 28, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96772,6 +96978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96793,27 +97000,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83050] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(741), 1, - anon_sym_EQ, + [83279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96835,20 +97040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83097] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(741), 1, - anon_sym_EQ, + [83322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96856,6 +97058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96877,25 +97080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83144] = 3, + [83365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2513), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96917,25 +97120,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83187] = 3, + [83408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96957,25 +97160,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83230] = 3, + [83451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96997,67 +97200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83273] = 5, + [83494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1624), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1616), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [83320] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(2533), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97079,19 +97240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83363] = 3, + [83537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97100,7 +97262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97119,25 +97280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83406] = 3, + [83580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97159,28 +97320,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83449] = 3, + [83623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97199,28 +97360,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83492] = 3, + [83666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_as, + ACTIONS(2475), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97239,28 +97400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83535] = 3, + [83709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97279,28 +97440,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83578] = 3, + [83752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97319,17 +97480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83621] = 3, + [83795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2487), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97359,25 +97520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83664] = 3, + [83838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2517), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97399,17 +97560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83707] = 3, + [83881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97439,17 +97600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83750] = 3, + [83924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97479,28 +97640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83793] = 3, + [83967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97519,28 +97680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83836] = 3, + [84010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97559,28 +97720,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83879] = 3, + [84053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97599,108 +97760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83922] = 4, + [84096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1653), 13, + ACTIONS(2475), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1657), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83967] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(665), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(663), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84014] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1626), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97722,277 +97800,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84057] = 5, + [84139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1624), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84104] = 4, + [84182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 3, + ACTIONS(2483), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1631), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1633), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [84149] = 5, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2487), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(670), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84196] = 5, + [84268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(2525), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1624), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2501), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2499), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84243] = 4, + [84354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 3, + ACTIONS(2505), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [84288] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 3, + ACTIONS(2509), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1646), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [84333] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, - anon_sym_as, + ACTIONS(2529), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98011,13 +98120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84376] = 3, + [84483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1607), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -98025,14 +98134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98051,17 +98160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84419] = 3, + [84526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98091,25 +98200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84462] = 3, + [84569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98131,28 +98240,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84505] = 3, + [84612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2521), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98171,17 +98280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84548] = 3, + [84655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(2491), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98211,17 +98320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84591] = 3, + [84698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98251,28 +98360,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84634] = 3, + [84741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, - anon_sym_as, + ACTIONS(2509), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98291,24 +98400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84677] = 3, + [84784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 4, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2458), 30, - sym_string_start, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98331,20 +98440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84720] = 3, + [84827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98353,6 +98461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98371,154 +98480,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84763] = 5, + [84870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84810] = 5, + [84913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84857] = 5, + [84956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2475), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84904] = 3, + [84999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98537,28 +98640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84947] = 3, + [85042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1672), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98577,28 +98680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84990] = 3, + [85085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98617,28 +98720,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85033] = 3, + [85128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2487), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98657,25 +98760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85076] = 3, + [85171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(2517), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98697,17 +98800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85119] = 3, + [85214] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 4, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 30, - sym_string_start, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98715,10 +98818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98737,69 +98840,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85162] = 4, + [85257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1664), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(316), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [85207] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98818,25 +98920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85250] = 3, + [85343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98858,28 +98960,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85293] = 3, + [85386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98898,28 +99000,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85336] = 3, + [85429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98938,28 +99040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85379] = 3, + [85472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98978,17 +99080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85422] = 3, + [85515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99018,17 +99120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85465] = 3, + [85558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99058,28 +99160,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85508] = 3, + [85601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99098,25 +99200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85551] = 3, + [85644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99138,47 +99240,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85594] = 3, + [85687] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(665), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85637] = 3, + [85734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -99218,17 +99322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85680] = 3, + [85777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99258,17 +99362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85723] = 3, + [85820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99298,17 +99402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85766] = 3, + [85863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1676), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99338,25 +99442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85809] = 3, + [85906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(1676), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99378,69 +99482,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85852] = 4, + [85949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1668), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(316), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [85897] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99459,17 +99522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85940] = 3, + [85992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99499,24 +99562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85983] = 3, + [86035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2447), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2445), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99539,148 +99602,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86026] = 3, + [86078] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86069] = 3, + [86125] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86112] = 3, + [86172] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, - anon_sym_as, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1648), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86155] = 3, + [86219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, - anon_sym_as, + ACTIONS(2460), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(2458), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99699,145 +99768,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86198] = 3, + [86262] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(1609), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1614), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86241] = 3, + ACTIONS(1563), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [86307] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1547), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1552), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1563), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [86352] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1628), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86284] = 3, + ACTIONS(1630), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [86397] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86327] = 3, + [86444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, - anon_sym_as, + ACTIONS(1664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99859,148 +99973,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86370] = 3, + [86487] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1648), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86413] = 3, + [86534] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1637), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1642), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86456] = 3, + ACTIONS(1646), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [86579] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1658), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1648), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86499] = 3, + [86626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 5, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100019,28 +100138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86542] = 3, + [86669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100059,28 +100178,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86585] = 3, + [86712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(279), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100099,7 +100258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86628] = 3, + [86798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100112,12 +100271,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100139,20 +100298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86671] = 3, + [86841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100161,6 +100319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100179,20 +100338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86714] = 3, + [86884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100201,6 +100359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100219,17 +100378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86757] = 3, + [86927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100259,20 +100418,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86800] = 4, + [86970] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 2, + ACTIONS(277), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(319), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87015] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1653), 5, + ACTIONS(1614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 27, + ACTIONS(1609), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100300,20 +100500,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86845] = 3, + [87060] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1549), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100321,7 +100523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100340,20 +100541,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86888] = 3, + [87105] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(319), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87150] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(1625), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1623), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100361,7 +100605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100380,17 +100623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86931] = 3, + [87195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2521), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100420,26 +100663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86974] = 4, + [87238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 5, - anon_sym_as, + ACTIONS(1668), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 27, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100461,7 +100703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87019] = 5, + [87281] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100503,7 +100745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87066] = 5, + [87328] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100545,70 +100787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87113] = 7, - ACTIONS(1639), 1, - anon_sym_EQ, + [87375] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1648), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 5, + ACTIONS(1652), 27, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1616), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1618), 12, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [87164] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1628), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1631), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1626), 27, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100630,25 +100828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87209] = 3, + [87420] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(1611), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1609), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100670,25 +100869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87252] = 3, + [87465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100710,28 +100909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87295] = 3, + [87508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2513), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100750,20 +100949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87338] = 3, + [87551] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(1549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(1547), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100771,7 +100972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100790,20 +100990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87381] = 4, + [87596] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, + ACTIONS(1639), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1552), 5, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(1637), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100831,22 +101031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87426] = 4, + [87641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1646), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100872,19 +101071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87471] = 3, + [87684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100893,7 +101093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100912,25 +101111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87514] = 3, + [87727] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1625), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1628), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1623), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100952,17 +101152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87557] = 3, + [87772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100992,67 +101192,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87600] = 5, + [87815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87647] = 3, + [87858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101074,67 +101272,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87690] = 5, + [87901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2491), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87737] = 3, + [87944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101156,25 +101352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87780] = 3, + [87987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + ACTIONS(2495), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101196,29 +101392,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87823] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [88030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2513), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101237,65 +101432,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87868] = 3, + [88073] = 7, + ACTIONS(1660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1655), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1650), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1648), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1652), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [87911] = 3, + [88124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(2525), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101317,25 +101516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87954] = 3, + [88167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2529), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101357,25 +101556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87997] = 3, + [88210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2533), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101397,25 +101596,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88040] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [88253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1628), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101438,25 +101636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88085] = 3, + [88296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101478,17 +101676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88128] = 3, + [88339] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(763), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101496,7 +101697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101518,17 +101718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88171] = 3, + [88386] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(763), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101536,7 +101739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101558,21 +101760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88214] = 4, + [88433] = 5, ACTIONS(1554), 1, anon_sym_COLON_EQ, + ACTIONS(2542), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(1552), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, ACTIONS(1547), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -101580,7 +101784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101599,28 +101802,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88259] = 3, + [88480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101639,25 +101842,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88302] = 3, + [88523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2491), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101679,25 +101882,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88345] = 3, + [88566] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1639), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1637), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101719,17 +101923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88388] = 3, + [88611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101759,7 +101963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88431] = 3, + [88654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -101799,17 +102003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88474] = 3, + [88697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101839,22 +102043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88517] = 4, + [88740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1650), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1653), 5, + ACTIONS(2513), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 27, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101862,6 +102064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101880,19 +102083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88562] = 3, + [88783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101901,7 +102105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101920,65 +102123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88605] = 3, + [88826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2477), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2552), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [88648] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2544), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102000,25 +102163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88691] = 3, + [88869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102040,25 +102203,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88734] = 3, + [88912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102080,22 +102243,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88777] = 4, + [88955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1646), 5, + ACTIONS(2475), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 27, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102121,25 +102283,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88822] = 3, + [88998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102161,22 +102323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88865] = 4, + [89041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1552), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 27, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102202,17 +102363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88910] = 3, + [89084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2487), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102242,17 +102403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88953] = 3, + [89127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102282,17 +102443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88996] = 3, + [89170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1662), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102322,26 +102483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89039] = 4, + [89213] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1631), 5, - anon_sym_as, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 27, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102363,100 +102523,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89084] = 3, + [89257] = 7, + ACTIONS(1660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(1655), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(1650), 4, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1648), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89127] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2493), 29, - anon_sym_DOT, + ACTIONS(1652), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89170] = 3, + [89307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2529), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -102465,6 +102586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102483,16 +102605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89213] = 3, + [89349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2533), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102522,144 +102644,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89255] = 5, + [89391] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 2, + ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 14, + ACTIONS(1650), 5, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1616), 15, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89301] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1626), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(1648), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89343] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 28, - anon_sym_DOT, + ACTIONS(1652), 12, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89387] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(2540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102682,24 +102725,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89431] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102722,31 +102764,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89475] = 4, - ACTIONS(1554), 1, - anon_sym_COLON_EQ, + [89523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 28, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102762,73 +102803,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89519] = 6, + [89565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1664), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 5, + ACTIONS(1662), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1616), 12, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1618), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89567] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1676), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102844,31 +102881,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89611] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 4, + ACTIONS(1676), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 28, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102884,27 +102920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89655] = 3, + [89691] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102923,16 +102960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89697] = 3, + [89735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 4, + ACTIONS(1668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102962,16 +102999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89739] = 3, + [89777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 4, + ACTIONS(1668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1666), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103001,30 +103038,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89781] = 3, + [89819] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103040,30 +103078,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89823] = 3, + [89863] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103079,30 +103118,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89865] = 3, + [89907] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(1652), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103118,23 +103158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89907] = 3, + [89951] = 4, + ACTIONS(1554), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 29, + ACTIONS(1652), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103157,66 +103198,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89949] = 7, - ACTIONS(1639), 1, - anon_sym_EQ, + [89995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 4, + ACTIONS(1609), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1616), 12, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1618), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89999] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90037] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103239,16 +103277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90041] = 3, + [90081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, + ACTIONS(2525), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103278,16 +103316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90083] = 3, + [90123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103317,16 +103355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90125] = 3, + [90165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103356,16 +103394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90167] = 3, + [90207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 4, + ACTIONS(1552), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103395,16 +103433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90209] = 3, + [90249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 4, + ACTIONS(2548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103434,16 +103472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90251] = 3, + [90291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 4, + ACTIONS(1628), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103473,55 +103511,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90293] = 3, + [90333] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 4, + ACTIONS(1655), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1658), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1648), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90335] = 3, + [90379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(1642), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103551,16 +103591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90377] = 3, + [90421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2491), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2489), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103590,16 +103630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90419] = 3, + [90463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 4, + ACTIONS(2552), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103629,16 +103669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90461] = 3, + [90505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 4, + ACTIONS(2467), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103668,16 +103708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90503] = 3, + [90547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 4, + ACTIONS(2471), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103707,16 +103747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90545] = 3, + [90589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, + ACTIONS(2475), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2473), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103746,16 +103786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90587] = 3, + [90631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(2479), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2477), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103785,16 +103825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90629] = 3, + [90673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 4, + ACTIONS(2483), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103824,16 +103864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90671] = 3, + [90715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 4, + ACTIONS(2487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(2485), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103863,55 +103903,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90713] = 3, + [90757] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(665), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(706), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(663), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90755] = 3, + [90803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 4, + ACTIONS(2501), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103941,57 +103983,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90797] = 5, + [90845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(665), 2, + ACTIONS(2505), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(670), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(706), 14, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90843] = 3, + [90887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 4, + ACTIONS(2509), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104021,7 +104061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90885] = 5, + [90929] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -104062,16 +104102,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90931] = 3, + [90975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 4, + ACTIONS(2495), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(2493), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104101,16 +104141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90973] = 3, + [91017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(2513), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104140,16 +104180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91015] = 3, + [91059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2517), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104179,16 +104219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91057] = 3, + [91101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 4, + ACTIONS(2521), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104218,46 +104258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91099] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(665), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(706), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, [91143] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, @@ -104272,7 +104272,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(706), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -104280,6 +104279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104304,12 +104304,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 28, + ACTIONS(1652), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104338,11 +104338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91231] = 3, + [91231] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1637), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1642), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104356,13 +104360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1646), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104376,15 +104377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91272] = 4, + [91274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1646), 13, + ACTIONS(1607), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104398,10 +104395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 16, + ACTIONS(1605), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104415,15 +104415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91315] = 4, + [91315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1552), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104437,10 +104433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1563), 16, + ACTIONS(1670), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104454,15 +104453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91358] = 4, + [91356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1631), 13, + ACTIONS(1664), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104476,10 +104471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1633), 16, + ACTIONS(1662), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104493,15 +104491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91401] = 4, + [91397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104515,10 +104509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(316), 16, + ACTIONS(1674), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104532,15 +104529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91444] = 4, + [91438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104554,10 +104547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(316), 16, + ACTIONS(1674), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104571,15 +104567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91487] = 4, + [91479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1653), 13, + ACTIONS(1668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104593,10 +104585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1657), 16, + ACTIONS(1666), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104610,11 +104605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91530] = 3, + [91520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 13, + ACTIONS(1668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104628,7 +104623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1674), 19, + ACTIONS(1666), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104648,11 +104643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91571] = 3, + [91561] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 13, + ACTIONS(706), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104666,13 +104665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1662), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(663), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104686,11 +104682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91612] = 3, + [91604] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(706), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104704,13 +104704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(663), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104724,11 +104721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91653] = 3, + [91647] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 13, + ACTIONS(1652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104742,13 +104743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1605), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1648), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104762,69 +104760,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91694] = 3, + [91690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 13, + ACTIONS(1655), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1605), 19, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91731] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1655), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91735] = 3, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1655), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91813] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1628), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1630), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104838,15 +104913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91776] = 4, + [91856] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 3, + ACTIONS(1609), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1614), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104860,7 +104935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(1563), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104877,15 +104952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91819] = 4, + [91899] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 3, + ACTIONS(1547), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(665), 13, + ACTIONS(1552), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104899,7 +104974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(663), 16, + ACTIONS(1563), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104916,15 +104991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91862] = 4, + [91942] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1618), 3, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1621), 13, + ACTIONS(279), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104938,7 +105013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1616), 16, + ACTIONS(319), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104955,122 +105030,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91905] = 3, + [91985] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 28, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91946] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 4, + ACTIONS(279), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91987] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1618), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(319), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, [92028] = 20, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -105094,18 +105094,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2152), 1, + STATE(2238), 1, sym_case_pattern, - STATE(2704), 1, + STATE(2745), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2146), 2, + STATE(2202), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -105113,7 +105113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 9, + STATE(1913), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105124,7 +105124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92102] = 20, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -105148,18 +105148,18 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2580), 1, anon_sym_COLON, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2152), 1, + STATE(2238), 1, sym_case_pattern, - STATE(2607), 1, + STATE(2699), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2146), 2, + STATE(2202), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -105167,7 +105167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 9, + STATE(1913), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105178,20 +105178,20 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92176] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, ACTIONS(2586), 1, - anon_sym_RPAREN, - ACTIONS(2588), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, + ACTIONS(2592), 1, + anon_sym_RBRACK, ACTIONS(2594), 1, anon_sym_DASH, ACTIONS(2598), 1, @@ -105200,16 +105200,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2602), 1, sym_float, - STATE(1877), 1, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105217,7 +105217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105228,17 +105228,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92244] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105249,17 +105249,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2604), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2195), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105267,7 +105267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105278,46 +105278,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92312] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2610), 1, + anon_sym_RPAREN, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2606), 1, - anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105328,11 +105328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92380] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105341,33 +105341,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2616), 1, anon_sym_LBRACK, ACTIONS(2618), 1, - anon_sym_RBRACK, - ACTIONS(2620), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, - STATE(1846), 1, + ACTIONS(2628), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2198), 1, + STATE(2237), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105378,46 +105378,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92448] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2630), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105428,17 +105428,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92516] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105449,17 +105449,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2632), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2157), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105467,7 +105467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105478,46 +105478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92584] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105528,11 +105528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92652] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105540,34 +105540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2636), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2159), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105578,17 +105578,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92720] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -105599,17 +105599,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2638), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2160), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -105617,7 +105617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105628,46 +105628,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92788] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2640), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2200), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105678,46 +105678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92856] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2642), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105728,46 +105728,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92924] = 18, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2644), 1, anon_sym_RBRACK, - STATE(1846), 1, + STATE(1858), 1, sym_string, - STATE(2006), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105778,11 +105778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [92992] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105790,34 +105790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2646), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2183), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105828,46 +105828,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93060] = 18, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2648), 1, anon_sym_RBRACK, - STATE(1846), 1, + STATE(1858), 1, sym_string, - STATE(2006), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2184), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105878,46 +105878,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93128] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2650), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2192), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105928,11 +105928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93196] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -105940,34 +105940,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2652), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105978,46 +105978,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93264] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2654), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2182), 1, + STATE(2191), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106028,46 +106028,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93332] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2656), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106078,17 +106078,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93400] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106099,17 +106099,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2658), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106117,7 +106117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106128,46 +106128,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93468] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106178,46 +106178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93536] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2176), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106228,46 +106228,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93604] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2146), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106278,11 +106278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93672] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106290,34 +106290,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2666), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2177), 1, + STATE(2118), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106328,46 +106328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93740] = 18, - ACTIONS(797), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2602), 1, sym_float, ACTIONS(2668), 1, anon_sym_RBRACK, - STATE(1846), 1, + STATE(1858), 1, sym_string, - STATE(2006), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2119), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106378,11 +106378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93808] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106390,34 +106390,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2670), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2123), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106428,46 +106428,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93876] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2672), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106478,17 +106478,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [93944] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106499,17 +106499,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2674), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2201), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106517,7 +106517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106528,11 +106528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94012] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106540,34 +106540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2676), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106578,11 +106578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94080] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106590,34 +106590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2678), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106628,46 +106628,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94148] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106678,46 +106678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94216] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2682), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106728,11 +106728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94284] = 18, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -106740,34 +106740,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2684), 1, - anon_sym_RBRACK, - STATE(1846), 1, + anon_sym_RPAREN, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2150), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106778,46 +106778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94352] = 18, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2148), 1, + STATE(2188), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106828,17 +106828,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94420] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106849,17 +106849,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2688), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2151), 1, + STATE(2198), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106867,7 +106867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106878,17 +106878,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94488] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106899,17 +106899,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106917,7 +106917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106928,17 +106928,17 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94556] = 18, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2582), 1, sym_identifier, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -106949,17 +106949,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2602), 1, sym_float, ACTIONS(2692), 1, - anon_sym_RPAREN, - STATE(1877), 1, + anon_sym_RBRACK, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2596), 4, @@ -106967,7 +106967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106978,44 +106978,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94624] = 17, - ACTIONS(775), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2614), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2598), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2602), 1, + ACTIONS(2626), 1, sym_float, - STATE(1877), 1, + STATE(1842), 1, sym_string, - STATE(2098), 1, + STATE(2097), 1, sym_dotted_name, - STATE(2305), 1, + STATE(2261), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2324), 2, + STATE(2432), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2596), 4, + ACTIONS(2620), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(1993), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107026,44 +107026,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94689] = 17, - ACTIONS(704), 1, + ACTIONS(819), 1, sym_string_start, - ACTIONS(2694), 1, + ACTIONS(2582), 1, sym_identifier, - ACTIONS(2696), 1, + ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2700), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2702), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2594), 1, anon_sym_DASH, - ACTIONS(2708), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2600), 1, sym_integer, - ACTIONS(2712), 1, + ACTIONS(2602), 1, sym_float, - STATE(1880), 1, + STATE(1858), 1, sym_string, - STATE(1995), 1, + STATE(2080), 1, sym_dotted_name, - STATE(2412), 1, + STATE(2444), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2321), 2, + STATE(2349), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2706), 4, + ACTIONS(2596), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1996), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107074,44 +107074,44 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94754] = 17, - ACTIONS(797), 1, + ACTIONS(704), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2694), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2696), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2698), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2700), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2702), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2704), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2708), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2710), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2712), 1, sym_float, - STATE(1846), 1, + STATE(1847), 1, sym_string, - STATE(2006), 1, + STATE(2067), 1, sym_dotted_name, - STATE(2287), 1, + STATE(2396), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2245), 2, + STATE(2257), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2622), 4, + ACTIONS(2706), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2008), 9, + STATE(2068), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107122,7 +107122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94819] = 17, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -107142,16 +107142,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2152), 1, + STATE(2238), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2146), 2, + STATE(2202), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -107159,7 +107159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 9, + STATE(1913), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107170,7 +107170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94884] = 17, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2556), 1, sym_identifier, @@ -107190,16 +107190,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2578), 1, sym_float, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(1973), 1, + STATE(1912), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2146), 2, + STATE(2202), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2572), 4, @@ -107207,7 +107207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 9, + STATE(1913), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107218,7 +107218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [94949] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107240,13 +107240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107256,7 +107256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107266,7 +107266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95015] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107288,13 +107288,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107304,7 +107304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107314,7 +107314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95081] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107336,13 +107336,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107352,7 +107352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107362,7 +107362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95147] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107384,13 +107384,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2097), 1, + STATE(2035), 1, sym_splat_pattern, - STATE(2478), 1, + STATE(2467), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107400,7 +107400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107410,7 +107410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95213] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107432,13 +107432,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2088), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2318), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107448,7 +107448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107458,7 +107458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95279] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107480,13 +107480,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107496,7 +107496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107506,7 +107506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95345] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107528,13 +107528,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107544,7 +107544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107554,7 +107554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95411] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107576,13 +107576,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2066), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2243), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107592,7 +107592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107602,7 +107602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95477] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107624,13 +107624,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2093), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2300), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107640,7 +107640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107650,7 +107650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95543] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107672,13 +107672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2109), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2393), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107688,7 +107688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107698,7 +107698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95609] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107720,13 +107720,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107736,7 +107736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107746,7 +107746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95675] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107768,13 +107768,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2038), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2400), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107784,7 +107784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107794,7 +107794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95741] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107816,13 +107816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107832,7 +107832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107842,7 +107842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95807] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107864,13 +107864,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107880,7 +107880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107890,7 +107890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95873] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107912,13 +107912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107928,7 +107928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107938,7 +107938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [95939] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -107960,13 +107960,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -107976,7 +107976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107986,7 +107986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96005] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108008,13 +108008,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108024,7 +108024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108034,7 +108034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96071] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108056,13 +108056,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108072,7 +108072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108082,7 +108082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96137] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108104,13 +108104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2062), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108120,7 +108120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108130,7 +108130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96203] = 18, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108152,13 +108152,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2756), 1, anon_sym_RBRACE, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108168,7 +108168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108178,7 +108178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96269] = 17, - ACTIONS(324), 1, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108198,13 +108198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2714), 1, sym_identifier, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, - STATE(2155), 1, + STATE(2113), 1, sym_splat_pattern, - STATE(2565), 1, + STATE(2540), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, @@ -108214,7 +108214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2479), 8, + STATE(2453), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108224,15 +108224,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96332] = 15, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -108244,9 +108244,9 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2758), 1, sym_identifier, - STATE(1877), 1, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108256,7 +108256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2083), 9, + STATE(2098), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108267,15 +108267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96390] = 15, - ACTIONS(775), 1, + ACTIONS(819), 1, sym_string_start, ACTIONS(2584), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2586), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2588), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, ACTIONS(2594), 1, anon_sym_DASH, @@ -108287,9 +108287,9 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2758), 1, sym_identifier, - STATE(1877), 1, + STATE(1858), 1, sym_string, - STATE(2098), 1, + STATE(2080), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108299,7 +108299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2104), 9, + STATE(2102), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108310,6 +108310,49 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96448] = 15, + ACTIONS(327), 1, + sym_string_start, + ACTIONS(2558), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_STAR_STAR, + ACTIONS(2568), 1, + anon_sym_LBRACK, + ACTIONS(2570), 1, + anon_sym_DASH, + ACTIONS(2574), 1, + anon_sym_LBRACE, + ACTIONS(2576), 1, + sym_integer, + ACTIONS(2578), 1, + sym_float, + ACTIONS(2714), 1, + sym_identifier, + STATE(1818), 1, + sym_string, + STATE(1908), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2764), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1893), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96506] = 15, ACTIONS(704), 1, sym_string_start, ACTIONS(2696), 1, @@ -108328,21 +108371,21 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2712), 1, sym_float, - ACTIONS(2764), 1, + ACTIONS(2766), 1, sym_identifier, - STATE(1880), 1, + STATE(1847), 1, sym_string, - STATE(1995), 1, + STATE(2067), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2766), 4, + ACTIONS(2768), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2022), 9, + STATE(2073), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108352,7 +108395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96506] = 15, + [96564] = 15, ACTIONS(704), 1, sym_string_start, ACTIONS(2696), 1, @@ -108371,21 +108414,21 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2712), 1, sym_float, - ACTIONS(2764), 1, + ACTIONS(2766), 1, sym_identifier, - STATE(1880), 1, + STATE(1847), 1, sym_string, - STATE(1995), 1, + STATE(2067), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2768), 4, + ACTIONS(2770), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2026), 9, + STATE(2074), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108395,32 +108438,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96564] = 9, - ACTIONS(2100), 1, + [96622] = 9, + ACTIONS(2777), 1, + anon_sym_EQ, + ACTIONS(2779), 1, anon_sym_not, - ACTIONS(2106), 1, + ACTIONS(2782), 1, anon_sym_is, - ACTIONS(2772), 1, - anon_sym_EQ, STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2108), 2, + ACTIONS(2785), 2, anon_sym_LT, anon_sym_GT, - STATE(948), 2, + STATE(901), 2, sym__not_in, sym__is_not, - ACTIONS(2086), 6, + ACTIONS(2774), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 11, + ACTIONS(2772), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108432,32 +108475,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96610] = 9, - ACTIONS(2779), 1, - anon_sym_EQ, - ACTIONS(2781), 1, + [96668] = 9, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2784), 1, + ACTIONS(2108), 1, anon_sym_is, + ACTIONS(2790), 1, + anon_sym_EQ, STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2787), 2, + ACTIONS(2110), 2, anon_sym_LT, anon_sym_GT, - STATE(948), 2, + STATE(901), 2, sym__not_in, sym__is_not, - ACTIONS(2776), 6, + ACTIONS(2088), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 11, + ACTIONS(2788), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108469,8 +108512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96656] = 15, - ACTIONS(324), 1, + [96714] = 15, + ACTIONS(327), 1, sym_string_start, ACTIONS(2558), 1, anon_sym_LPAREN, @@ -108490,19 +108533,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(2714), 1, sym_identifier, - STATE(1830), 1, + STATE(1818), 1, sym_string, - STATE(1960), 1, + STATE(1908), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2792), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1933), 9, + STATE(1942), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108512,10 +108555,10 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96714] = 15, - ACTIONS(797), 1, + [96772] = 15, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -108523,62 +108566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_DASH, - ACTIONS(2624), 1, - anon_sym_LBRACE, - ACTIONS(2626), 1, - sym_integer, - ACTIONS(2628), 1, - sym_float, - ACTIONS(2792), 1, - sym_identifier, - STATE(1846), 1, - sym_string, - STATE(2006), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2794), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2051), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96772] = 15, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_STAR, - ACTIONS(2566), 1, - anon_sym_STAR_STAR, - ACTIONS(2568), 1, - anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2578), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2714), 1, + ACTIONS(2794), 1, sym_identifier, - STATE(1830), 1, + STATE(1842), 1, sym_string, - STATE(1960), 1, + STATE(2097), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108588,7 +108588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1920), 9, + STATE(2022), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108599,9 +108599,9 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96830] = 15, - ACTIONS(797), 1, + ACTIONS(729), 1, sym_string_start, - ACTIONS(2610), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, ACTIONS(2612), 1, anon_sym_STAR, @@ -108609,19 +108609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, + ACTIONS(2618), 1, anon_sym_DASH, - ACTIONS(2624), 1, + ACTIONS(2622), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2624), 1, sym_integer, - ACTIONS(2628), 1, + ACTIONS(2626), 1, sym_float, - ACTIONS(2792), 1, + ACTIONS(2794), 1, sym_identifier, - STATE(1846), 1, + STATE(1842), 1, sym_string, - STATE(2006), 1, + STATE(2097), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108631,7 +108631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2039), 9, + STATE(2004), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108642,31 +108642,31 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, [96888] = 9, - ACTIONS(2100), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2292), 1, + ACTIONS(2356), 1, anon_sym_is, - ACTIONS(2772), 1, + ACTIONS(2790), 1, anon_sym_EQ, STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2358), 2, anon_sym_LT, anon_sym_GT, - STATE(877), 2, + STATE(898), 2, sym__not_in, sym__is_not, - ACTIONS(2276), 6, + ACTIONS(2340), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 9, + ACTIONS(2788), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108677,9 +108677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [96932] = 9, - ACTIONS(2779), 1, + ACTIONS(2777), 1, anon_sym_EQ, - ACTIONS(2781), 1, + ACTIONS(2779), 1, anon_sym_not, ACTIONS(2803), 1, anon_sym_is, @@ -108691,7 +108691,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2806), 2, anon_sym_LT, anon_sym_GT, - STATE(955), 2, + STATE(928), 2, sym__not_in, sym__is_not, ACTIONS(2800), 6, @@ -108701,7 +108701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 9, + ACTIONS(2772), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108712,31 +108712,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [96976] = 9, - ACTIONS(2100), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2380), 1, + ACTIONS(2391), 1, anon_sym_is, - ACTIONS(2772), 1, + ACTIONS(2790), 1, anon_sym_EQ, STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2382), 2, + ACTIONS(2393), 2, anon_sym_LT, anon_sym_GT, - STATE(955), 2, + STATE(928), 2, sym__not_in, sym__is_not, - ACTIONS(2364), 6, + ACTIONS(2375), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 9, + ACTIONS(2788), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108747,9 +108747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97020] = 9, - ACTIONS(2779), 1, + ACTIONS(2777), 1, anon_sym_EQ, - ACTIONS(2781), 1, + ACTIONS(2779), 1, anon_sym_not, ACTIONS(2812), 1, anon_sym_is, @@ -108761,7 +108761,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2815), 2, anon_sym_LT, anon_sym_GT, - STATE(877), 2, + STATE(898), 2, sym__not_in, sym__is_not, ACTIONS(2809), 6, @@ -108771,7 +108771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 9, + ACTIONS(2772), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108781,10 +108781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97064] = 9, + [97064] = 8, ACTIONS(2779), 1, - anon_sym_as, - ACTIONS(2781), 1, anon_sym_not, ACTIONS(2821), 1, anon_sym_is, @@ -108796,7 +108794,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2824), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(941), 2, sym__not_in, sym__is_not, ACTIONS(2818), 6, @@ -108806,17 +108804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 8, + ACTIONS(2772), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97107] = 8, - ACTIONS(2781), 1, + [97105] = 9, + ACTIONS(2777), 1, + anon_sym_EQ, + ACTIONS(2779), 1, anon_sym_not, ACTIONS(2830), 1, anon_sym_is, @@ -108828,7 +108829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2833), 2, anon_sym_LT, anon_sym_GT, - STATE(905), 2, + STATE(940), 2, sym__not_in, sym__is_not, ACTIONS(2827), 6, @@ -108838,42 +108839,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 9, - anon_sym_DOT, + ACTIONS(2772), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, + sym_type_conversion, [97148] = 9, - ACTIONS(2100), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2198), 1, + ACTIONS(2212), 1, anon_sym_is, - ACTIONS(2772), 1, + ACTIONS(2790), 1, anon_sym_as, - STATE(1563), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2200), 2, + ACTIONS(2214), 2, anon_sym_LT, anon_sym_GT, - STATE(940), 2, + STATE(873), 2, sym__not_in, sym__is_not, - ACTIONS(2182), 6, + ACTIONS(2196), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 8, + ACTIONS(2788), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -108883,29 +108883,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97191] = 8, - ACTIONS(2100), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2426), 1, anon_sym_is, - STATE(1564), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2433), 2, + ACTIONS(2428), 2, anon_sym_LT, anon_sym_GT, - STATE(905), 2, + STATE(941), 2, sym__not_in, sym__is_not, - ACTIONS(2415), 6, + ACTIONS(2410), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 9, + ACTIONS(2788), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108916,31 +108916,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, [97232] = 9, - ACTIONS(2779), 1, - anon_sym_EQ, - ACTIONS(2781), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2184), 1, anon_sym_is, - STATE(1567), 1, + ACTIONS(2790), 1, + anon_sym_EQ, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2186), 2, anon_sym_LT, anon_sym_GT, - STATE(921), 2, + STATE(940), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + ACTIONS(2168), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 8, + ACTIONS(2788), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -108950,65 +108950,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, sym_type_conversion, [97275] = 9, - ACTIONS(2100), 1, + ACTIONS(2777), 1, + anon_sym_as, + ACTIONS(2779), 1, anon_sym_not, - ACTIONS(2234), 1, + ACTIONS(2839), 1, anon_sym_is, - ACTIONS(2772), 1, - anon_sym_EQ, - STATE(1567), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2236), 2, + ACTIONS(2842), 2, anon_sym_LT, anon_sym_GT, - STATE(921), 2, + STATE(873), 2, sym__not_in, sym__is_not, - ACTIONS(2218), 6, + ACTIONS(2836), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 8, + ACTIONS(2772), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, + [97318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2847), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2845), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97348] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(319), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, sym_type_conversion, - [97318] = 9, - ACTIONS(2779), 1, - anon_sym_as, - ACTIONS(2781), 1, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97380] = 9, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2848), 1, + ACTIONS(2292), 1, anon_sym_is, - STATE(1569), 1, + ACTIONS(2790), 1, + anon_sym_as, + STATE(1575), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 2, + ACTIONS(2294), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(889), 2, sym__not_in, sym__is_not, - ACTIONS(2845), 6, + ACTIONS(2276), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 7, + ACTIONS(2788), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109016,32 +109071,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [97360] = 9, - ACTIONS(2779), 1, - anon_sym_as, - ACTIONS(2781), 1, + [97422] = 9, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2857), 1, + ACTIONS(2324), 1, anon_sym_is, - STATE(1570), 1, + ACTIONS(2790), 1, + anon_sym_as, + STATE(1579), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 2, + ACTIONS(2326), 2, anon_sym_LT, anon_sym_GT, - STATE(961), 2, + STATE(869), 2, sym__not_in, sym__is_not, - ACTIONS(2854), 6, + ACTIONS(2308), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2774), 7, + ACTIONS(2788), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -109049,11 +109104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97402] = 3, + [97464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2865), 10, + ACTIONS(2851), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109064,7 +109119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2863), 11, + ACTIONS(2849), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -109076,20 +109131,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97432] = 4, + [97494] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1657), 5, + ACTIONS(1646), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1648), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109104,35 +109159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97464] = 4, + [97526] = 9, + ACTIONS(2777), 1, + anon_sym_as, + ACTIONS(2779), 1, + anon_sym_not, + ACTIONS(2856), 1, + anon_sym_is, + STATE(1575), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1633), 5, + ACTIONS(2859), 2, + anon_sym_LT, + anon_sym_GT, + STATE(889), 2, + sym__not_in, + sym__is_not, + ACTIONS(2853), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2772), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1626), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97496] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97568] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -109160,14 +109220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97528] = 4, + [97600] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 5, + ACTIONS(319), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -109188,39 +109248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97560] = 4, + [97632] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(316), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97592] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1646), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1563), 5, @@ -109229,7 +109261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1641), 14, + ACTIONS(1609), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109244,111 +109276,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97624] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2869), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2867), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [97654] = 9, - ACTIONS(2100), 1, - anon_sym_not, - ACTIONS(2320), 1, - anon_sym_is, - ACTIONS(2772), 1, + [97664] = 9, + ACTIONS(2777), 1, anon_sym_as, - STATE(1570), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_LT, - anon_sym_GT, - STATE(961), 2, - sym__not_in, - sym__is_not, - ACTIONS(2304), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2770), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [97696] = 9, - ACTIONS(2100), 1, + ACTIONS(2779), 1, anon_sym_not, - ACTIONS(2348), 1, + ACTIONS(2865), 1, anon_sym_is, - ACTIONS(2772), 1, - anon_sym_as, - STATE(1569), 1, + STATE(1579), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2350), 2, + ACTIONS(2868), 2, anon_sym_LT, anon_sym_GT, - STATE(898), 2, + STATE(869), 2, sym__not_in, sym__is_not, - ACTIONS(2332), 6, + ACTIONS(2862), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2770), 7, - anon_sym_RPAREN, + ACTIONS(2772), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97738] = 4, + [97706] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 3, - anon_sym_RPAREN, + ACTIONS(1630), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109363,7 +109337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97768] = 4, + [97738] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -109389,44 +109363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97798] = 4, - ACTIONS(2873), 1, - anon_sym_COMMA, - STATE(1583), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2871), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [97828] = 4, + [97768] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 3, + ACTIONS(663), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1547), 14, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109441,14 +109389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97858] = 4, + [97798] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2876), 3, + ACTIONS(1648), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -109467,18 +109415,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97888] = 4, + [97828] = 4, + ACTIONS(2871), 1, + anon_sym_COMMA, + STATE(1587), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(959), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97858] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 3, + ACTIONS(2873), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109493,14 +109467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97918] = 4, + [97888] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 3, + ACTIONS(1415), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -109519,15 +109493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97948] = 4, - ACTIONS(2878), 1, + [97918] = 4, + ACTIONS(2877), 1, anon_sym_COMMA, - STATE(1583), 1, + STATE(1587), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 17, + ACTIONS(2875), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109545,17 +109519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97978] = 4, + [97948] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1563), 2, + ACTIONS(1415), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1547), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109570,17 +109545,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98007] = 4, + [97978] = 13, + ACTIONS(2160), 1, + anon_sym_DOT, + ACTIONS(2172), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, + anon_sym_AMP, + ACTIONS(2389), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2373), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98025] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1563), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1646), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 14, + ACTIONS(1609), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109595,17 +109604,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98036] = 4, + [98054] = 13, + ACTIONS(2328), 1, + anon_sym_DOT, + ACTIONS(2330), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, + anon_sym_AMP, + ACTIONS(2389), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(2373), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98101] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98126] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1630), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109620,16 +109686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98065] = 4, + [98155] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(319), 2, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109645,16 +109711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98094] = 4, + [98184] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(663), 2, + ACTIONS(319), 2, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109670,84 +109736,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98123] = 13, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2378), 1, - anon_sym_CARET, - ACTIONS(2880), 1, - anon_sym_DOT, - ACTIONS(2882), 1, - anon_sym_LBRACK, + [98213] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98170] = 13, - ACTIONS(2356), 1, + ACTIONS(1609), 14, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2368), 1, anon_sym_LBRACK, - ACTIONS(2374), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2376), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2378), 1, anon_sym_CARET, + anon_sym_LT_LT, + [98242] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1547), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98217] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98271] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 2, + ACTIONS(1563), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -109763,17 +109811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98246] = 4, + [98300] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 2, + ACTIONS(1630), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109788,17 +109836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98275] = 4, + [98329] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 2, + ACTIONS(1646), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109813,17 +109861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98304] = 4, + [98358] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2876), 2, + ACTIONS(319), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1547), 14, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109838,14 +109886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98333] = 4, + [98387] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(319), 2, anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(277), 14, @@ -109863,17 +109911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98362] = 4, + [98416] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, + ACTIONS(1609), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109888,11 +109936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98391] = 2, + [98445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 18, + ACTIONS(2880), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -109911,17 +109959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98416] = 4, + [98470] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1633), 2, + ACTIONS(1415), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1626), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109936,51 +109984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98445] = 13, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2378), 1, - anon_sym_CARET, + [98499] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2362), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98492] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1657), 2, + ACTIONS(1630), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1648), 14, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109995,51 +110009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98521] = 13, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2378), 1, - anon_sym_CARET, + [98528] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2362), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98568] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(1648), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110054,17 +110034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98597] = 4, + [98557] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1657), 2, - anon_sym_RPAREN, + ACTIONS(663), 2, anon_sym_COMMA, - ACTIONS(1648), 14, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110079,17 +110059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98626] = 4, + [98586] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1646), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 14, + ACTIONS(663), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110104,17 +110084,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98655] = 4, + [98615] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2875), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98640] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1552), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1633), 2, - anon_sym_RPAREN, + ACTIONS(2873), 2, anon_sym_COMMA, - ACTIONS(1626), 14, + anon_sym_COLON, + ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110129,41 +110132,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98684] = 13, - ACTIONS(2078), 1, + [98669] = 13, + ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2092), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2374), 1, + ACTIONS(2379), 1, + anon_sym_LBRACK, + ACTIONS(2385), 1, anon_sym_PIPE, - ACTIONS(2376), 1, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2389), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98731] = 4, + [98716] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -110171,8 +110174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, ACTIONS(1563), 2, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_in, ACTIONS(1547), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -110188,265 +110191,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98760] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1547), 14, + [98745] = 13, + ACTIONS(2080), 1, anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2385), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2387), 1, anon_sym_AMP, + ACTIONS(2389), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98789] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1646), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2373), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2383), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [98792] = 13, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, anon_sym_AMP, + ACTIONS(2389), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98818] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1633), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1626), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2373), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2383), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [98839] = 13, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, anon_sym_AMP, + ACTIONS(2389), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98847] = 4, + ACTIONS(2882), 1, + anon_sym_DOT, + ACTIONS(2884), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1657), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1648), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2373), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2383), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98876] = 13, - ACTIONS(2268), 1, + [98886] = 13, + ACTIONS(2332), 1, anon_sym_DOT, - ACTIONS(2280), 1, + ACTIONS(2344), 1, anon_sym_LBRACK, - ACTIONS(2358), 1, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2374), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - ACTIONS(2376), 1, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2389), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98923] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2871), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98948] = 13, - ACTIONS(2358), 1, + [98933] = 13, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2374), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - ACTIONS(2376), 1, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(2407), 1, + ACTIONS(2402), 1, anon_sym_DOT, - ACTIONS(2419), 1, + ACTIONS(2414), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98995] = 2, + [98980] = 13, + ACTIONS(2300), 1, + anon_sym_DOT, + ACTIONS(2312), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_PIPE, + ACTIONS(2387), 1, + anon_sym_AMP, + ACTIONS(2389), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99020] = 13, - ACTIONS(2358), 1, + ACTIONS(2371), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2373), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2383), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2381), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99027] = 13, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + ACTIONS(2377), 1, anon_sym_STAR_STAR, - ACTIONS(2374), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - ACTIONS(2376), 1, + ACTIONS(2387), 1, anon_sym_AMP, - ACTIONS(2378), 1, + ACTIONS(2389), 1, anon_sym_CARET, - ACTIONS(2391), 1, - anon_sym_DOT, - ACTIONS(2393), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(2371), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(2373), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2372), 2, + ACTIONS(2383), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1265), 2, + STATE(1403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2370), 3, + ACTIONS(2381), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99067] = 4, + [99074] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(1646), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110461,17 +110454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99096] = 4, + [99103] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(1646), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(277), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110486,106 +110479,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99125] = 2, + [99132] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(319), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99150] = 13, - ACTIONS(2296), 1, + anon_sym_in, + ACTIONS(277), 14, anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2366), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2374), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2376), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2378), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99161] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(319), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99197] = 13, - ACTIONS(2174), 1, - anon_sym_DOT, - ACTIONS(2186), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_STAR_STAR, - ACTIONS(2374), 1, - anon_sym_PIPE, - ACTIONS(2376), 1, anon_sym_AMP, - ACTIONS(2378), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99190] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2362), 2, + ACTIONS(1415), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2372), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1265), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2370), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99244] = 4, - ACTIONS(2888), 1, - anon_sym_COMMA, - STATE(1636), 1, - aux_sym__patterns_repeat1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99219] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(959), 15, + ACTIONS(2886), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -110601,44 +110577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99272] = 13, - ACTIONS(2890), 1, - sym_identifier, - ACTIONS(2892), 1, - anon_sym_LPAREN, - ACTIONS(2894), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - anon_sym_COLON, - ACTIONS(2898), 1, - anon_sym_STAR_STAR, - ACTIONS(2900), 1, - anon_sym_SLASH, - STATE(2268), 1, - sym_parameter, - STATE(2270), 1, - sym_tuple_pattern, - STATE(2733), 1, - sym__parameters, - STATE(2766), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2525), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2524), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99318] = 2, + [99244] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 17, + ACTIONS(2880), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110656,222 +110599,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99342] = 13, - ACTIONS(2890), 1, + [99268] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2894), 1, + anon_sym_COLON, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2902), 1, - anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2733), 1, - sym__parameters, - STATE(2734), 1, + STATE(2639), 1, sym_lambda_parameters, + STATE(2718), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99388] = 13, - ACTIONS(2890), 1, + [99314] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2904), 1, + ACTIONS(2900), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2650), 1, + STATE(2711), 1, sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99434] = 13, - ACTIONS(2890), 1, - sym_identifier, - ACTIONS(2892), 1, - anon_sym_LPAREN, - ACTIONS(2894), 1, - anon_sym_STAR, - ACTIONS(2898), 1, - anon_sym_STAR_STAR, - ACTIONS(2900), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, + [99360] = 5, + ACTIONS(2904), 1, anon_sym_COLON, - STATE(2268), 1, - sym_parameter, - STATE(2270), 1, - sym_tuple_pattern, - STATE(2659), 1, - sym_lambda_parameters, - STATE(2733), 1, - sym__parameters, + ACTIONS(2906), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2524), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99480] = 13, - ACTIONS(2890), 1, + ACTIONS(2902), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2908), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99390] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2908), 1, + ACTIONS(2910), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2725), 1, + STATE(2671), 1, sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99526] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2886), 17, - anon_sym_COMMA, + [99436] = 6, + ACTIONS(2904), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2906), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99550] = 6, - ACTIONS(2910), 1, - anon_sym_COMMA, ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, - anon_sym_EQ, - STATE(1588), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2916), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99582] = 4, - ACTIONS(2918), 1, anon_sym_COMMA, - STATE(1636), 1, + STATE(1584), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99610] = 5, - ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2921), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2916), 13, + ACTIONS(2908), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110885,52 +110749,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99640] = 13, - ACTIONS(2890), 1, + [99468] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2923), 1, + ACTIONS(2914), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2708), 1, - sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, + STATE(2724), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99686] = 6, - ACTIONS(2912), 1, + [99514] = 6, + ACTIONS(2904), 1, anon_sym_COLON, - ACTIONS(2914), 1, + ACTIONS(2906), 1, anon_sym_EQ, - ACTIONS(2925), 1, + ACTIONS(2916), 1, anon_sym_COMMA, - STATE(1627), 1, + STATE(1644), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2916), 13, + ACTIONS(2908), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110944,110 +110808,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99718] = 13, - ACTIONS(2890), 1, + [99546] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, + ACTIONS(2896), 1, + anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_SLASH, + ACTIONS(2918), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_parameter, + STATE(2458), 1, + sym_tuple_pattern, + STATE(2718), 1, + sym__parameters, + STATE(2750), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2580), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2577), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99592] = 13, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2927), 1, + ACTIONS(2920), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2646), 1, + STATE(2600), 1, sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99764] = 13, - ACTIONS(2890), 1, + [99638] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2929), 1, + ACTIONS(2922), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2733), 1, - sym__parameters, - STATE(2783), 1, + STATE(2677), 1, sym_lambda_parameters, + STATE(2718), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99810] = 13, - ACTIONS(2890), 1, + [99684] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - ACTIONS(2931), 1, + ACTIONS(2924), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2733), 1, - sym__parameters, - STATE(2764), 1, + STATE(2682), 1, sym_lambda_parameters, + STATE(2718), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99856] = 2, + [99730] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 17, + ACTIONS(2875), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111065,7 +110962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99880] = 2, + [99754] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -111087,67 +110984,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99904] = 13, - ACTIONS(2890), 1, + [99778] = 4, + ACTIONS(2926), 1, + anon_sym_COMMA, + STATE(1641), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2875), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99806] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2886), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99830] = 13, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, + ACTIONS(2896), 1, + anon_sym_STAR_STAR, ACTIONS(2898), 1, + anon_sym_SLASH, + ACTIONS(2929), 1, + anon_sym_COLON, + STATE(2457), 1, + sym_parameter, + STATE(2458), 1, + sym_tuple_pattern, + STATE(2609), 1, + sym_lambda_parameters, + STATE(2718), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2580), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2577), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99876] = 4, + ACTIONS(2931), 1, + anon_sym_COMMA, + STATE(1641), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(959), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99904] = 13, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, ACTIONS(2933), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2672), 1, + STATE(2717), 1, sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, [99950] = 13, - ACTIONS(2890), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, ACTIONS(2935), 1, anon_sym_COLON, - STATE(2268), 1, + STATE(2457), 1, sym_parameter, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2619), 1, + STATE(2655), 1, sym_lambda_parameters, - STATE(2733), 1, + STATE(2718), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, @@ -111166,184 +111166,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2947), 1, anon_sym_SLASH, - STATE(2401), 1, - sym_tuple_pattern, - STATE(2403), 1, + STATE(2482), 1, sym_parameter, - STATE(2606), 1, + STATE(2487), 1, + sym_tuple_pattern, + STATE(2763), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2396), 2, + STATE(2489), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2575), 5, + STATE(2537), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100039] = 11, - ACTIONS(2937), 1, + [100039] = 4, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(2906), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2908), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100065] = 11, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2898), 1, anon_sym_SLASH, ACTIONS(2949), 1, - anon_sym_RPAREN, - STATE(2401), 1, + anon_sym_COLON, + STATE(2458), 1, sym_tuple_pattern, - STATE(2546), 1, + STATE(2549), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2396), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2575), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100079] = 11, - ACTIONS(2937), 1, + [100105] = 11, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2945), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2947), 1, + ACTIONS(2898), 1, anon_sym_SLASH, ACTIONS(2951), 1, - anon_sym_RPAREN, - STATE(2401), 1, + anon_sym_COLON, + STATE(2458), 1, sym_tuple_pattern, - STATE(2546), 1, + STATE(2549), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2396), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2575), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100119] = 11, - ACTIONS(2890), 1, + [100145] = 11, + ACTIONS(2937), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2947), 1, anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_COLON, - STATE(2270), 1, + ACTIONS(2949), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_tuple_pattern, - STATE(2564), 1, + STATE(2593), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2489), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2537), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100159] = 4, - ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2916), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, [100185] = 11, - ACTIONS(2890), 1, + ACTIONS(2937), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2945), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2947), 1, anon_sym_SLASH, - ACTIONS(2949), 1, - anon_sym_COLON, - STATE(2270), 1, + ACTIONS(2951), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_tuple_pattern, - STATE(2564), 1, + STATE(2593), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2489), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2537), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, [100225] = 10, - ACTIONS(2890), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2892), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - ACTIONS(2894), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2898), 1, + ACTIONS(2896), 1, anon_sym_STAR_STAR, - ACTIONS(2900), 1, + ACTIONS(2898), 1, anon_sym_SLASH, - STATE(2270), 1, + STATE(2458), 1, sym_tuple_pattern, - STATE(2564), 1, + STATE(2549), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2525), 2, + STATE(2580), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2524), 5, + STATE(2577), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, @@ -111360,131 +111360,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2947), 1, anon_sym_SLASH, - STATE(2401), 1, + STATE(2487), 1, sym_tuple_pattern, - STATE(2546), 1, + STATE(2593), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2396), 2, + STATE(2489), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2575), 5, + STATE(2537), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100299] = 5, - ACTIONS(2955), 1, - anon_sym_as, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2953), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100299] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100324] = 13, - ACTIONS(2962), 1, - anon_sym_COMMA, - ACTIONS(2964), 1, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2966), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2968), 1, + ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2970), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2974), 1, + ACTIONS(2965), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2969), 1, anon_sym_or, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2273), 1, + STATE(2348), 1, aux_sym__collection_elements_repeat1, - STATE(2641), 1, + STATE(2618), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100365] = 13, - ACTIONS(2962), 1, + [100340] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(2964), 1, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2966), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2968), 1, + ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2970), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2974), 1, + ACTIONS(2965), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2969), 1, anon_sym_or, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2273), 1, + STATE(2348), 1, aux_sym__collection_elements_repeat1, - STATE(2706), 1, + STATE(2690), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100406] = 13, - ACTIONS(2962), 1, - anon_sym_COMMA, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2968), 1, - anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_async, - ACTIONS(2972), 1, - anon_sym_for, - ACTIONS(2974), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [100381] = 4, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2975), 1, anon_sym_or, - STATE(1878), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym__collection_elements_repeat1, - STATE(2758), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 12, + ACTIONS(2971), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111495,64 +111451,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [100466] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, + [100404] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 8, + ACTIONS(2977), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100493] = 13, - ACTIONS(2962), 1, - anon_sym_COMMA, - ACTIONS(2964), 1, anon_sym_as, - ACTIONS(2966), 1, anon_sym_if, - ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_async, - ACTIONS(2972), 1, - anon_sym_for, - ACTIONS(2974), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2978), 1, anon_sym_or, - STATE(1878), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym__collection_elements_repeat1, - STATE(2745), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100534] = 3, - ACTIONS(2958), 1, + [100423] = 3, + ACTIONS(2973), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 11, + ACTIONS(2977), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111564,112 +111486,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [100555] = 13, - ACTIONS(2962), 1, - anon_sym_COMMA, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2968), 1, - anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_async, - ACTIONS(2972), 1, - anon_sym_for, - ACTIONS(2974), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [100444] = 6, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2975), 1, anon_sym_or, - STATE(1878), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym__collection_elements_repeat1, - STATE(2742), 1, - sym__comprehension_clauses, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100596] = 13, - ACTIONS(2962), 1, + ACTIONS(2979), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_async, - ACTIONS(2972), 1, - anon_sym_for, - ACTIONS(2974), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + anon_sym_EQ, + anon_sym_PIPE, + [100471] = 6, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2975), 1, anon_sym_or, - STATE(1878), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym__collection_elements_repeat1, - STATE(2632), 1, - sym__comprehension_clauses, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100637] = 2, + ACTIONS(2985), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100498] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 12, + ACTIONS(2987), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [100656] = 13, - ACTIONS(2962), 1, + [100525] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(2964), 1, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2966), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2968), 1, + ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2970), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2974), 1, + ACTIONS(2965), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2969), 1, anon_sym_or, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2273), 1, + STATE(2348), 1, aux_sym__collection_elements_repeat1, - STATE(2624), 1, + STATE(2670), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100697] = 2, + [100566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 12, + ACTIONS(2989), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111682,1246 +111594,1279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [100716] = 6, - ACTIONS(2958), 1, + [100585] = 5, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(2993), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2990), 8, + ACTIONS(2991), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100743] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, + [100610] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 8, + ACTIONS(2078), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100770] = 4, - ACTIONS(2958), 1, anon_sym_and, - ACTIONS(2960), 1, anon_sym_or, + [100629] = 13, + ACTIONS(2953), 1, + anon_sym_COMMA, + ACTIONS(2955), 1, + anon_sym_as, + ACTIONS(2957), 1, + anon_sym_if, + ACTIONS(2959), 1, + anon_sym_COLON, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(2965), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, + STATE(1865), 1, + sym_for_in_clause, + STATE(2348), 1, + aux_sym__collection_elements_repeat1, + STATE(2742), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100670] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, + ACTIONS(2955), 1, anon_sym_as, + ACTIONS(2957), 1, anon_sym_if, + ACTIONS(2959), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100793] = 13, - ACTIONS(2962), 1, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(2965), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, + STATE(1865), 1, + sym_for_in_clause, + STATE(2348), 1, + aux_sym__collection_elements_repeat1, + STATE(2669), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100711] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(2964), 1, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2966), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(2968), 1, + ACTIONS(2959), 1, anon_sym_COLON, - ACTIONS(2970), 1, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(2974), 1, + ACTIONS(2965), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2969), 1, anon_sym_or, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2273), 1, + STATE(2348), 1, aux_sym__collection_elements_repeat1, - STATE(2656), 1, + STATE(2739), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100834] = 12, - ACTIONS(2996), 1, - anon_sym_RPAREN, - ACTIONS(2998), 1, + [100752] = 13, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(3000), 1, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(2959), 1, + anon_sym_COLON, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(2965), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(2969), 1, anon_sym_or, - STATE(1850), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2428), 1, - aux_sym_argument_list_repeat1, - STATE(2635), 1, + STATE(2348), 1, + aux_sym__collection_elements_repeat1, + STATE(2727), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100872] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3018), 1, - sym_string_end, - STATE(1816), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1687), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [100902] = 8, - ACTIONS(3), 1, + [100793] = 13, + ACTIONS(2953), 1, + anon_sym_COMMA, + ACTIONS(2955), 1, + anon_sym_as, + ACTIONS(2957), 1, + anon_sym_if, + ACTIONS(2959), 1, + anon_sym_COLON, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(2965), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, + STATE(1865), 1, + sym_for_in_clause, + STATE(2348), 1, + aux_sym__collection_elements_repeat1, + STATE(2607), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3020), 1, - sym_string_end, - STATE(1816), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1684), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [100932] = 8, + [100834] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3022), 1, + ACTIONS(3002), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1679), 3, + STATE(1715), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [100962] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, + [100864] = 12, + ACTIONS(2965), 1, + anon_sym_RBRACK, ACTIONS(3004), 1, - anon_sym_async, + anon_sym_COMMA, ACTIONS(3006), 1, - anon_sym_for, + anon_sym_as, ACTIONS(3008), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3024), 1, - anon_sym_RPAREN, - ACTIONS(3026), 1, - anon_sym_COMMA, - STATE(1850), 1, + anon_sym_async, + ACTIONS(3012), 1, + anon_sym_for, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3016), 1, + anon_sym_or, + STATE(1851), 1, sym_for_in_clause, - STATE(2443), 1, - aux_sym_argument_list_repeat1, - STATE(2699), 1, + STATE(2311), 1, + aux_sym__collection_elements_repeat1, + STATE(2615), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101000] = 8, + [100902] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3028), 1, + ACTIONS(3018), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101030] = 8, + [100932] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3030), 1, + ACTIONS(3020), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101060] = 8, + [100962] = 12, + ACTIONS(3022), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + STATE(1843), 1, + sym_for_in_clause, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, + STATE(2660), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101000] = 12, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3038), 1, + anon_sym_RPAREN, + ACTIONS(3040), 1, + anon_sym_COMMA, + STATE(1843), 1, + sym_for_in_clause, + STATE(2335), 1, + aux_sym_argument_list_repeat1, + STATE(2660), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101038] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3032), 1, + ACTIONS(3042), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1679), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101090] = 8, + [101068] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3034), 1, + ACTIONS(3044), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1701), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101120] = 12, - ACTIONS(3000), 1, + [101098] = 12, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, + ACTIONS(3046), 1, + anon_sym_RPAREN, + STATE(1843), 1, + sym_for_in_clause, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, + STATE(2726), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101136] = 12, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3048), 1, anon_sym_RPAREN, - ACTIONS(3038), 1, + STATE(1843), 1, + sym_for_in_clause, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, + STATE(2707), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101174] = 12, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3050), 1, + anon_sym_RPAREN, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2380), 1, + STATE(2472), 1, aux_sym_argument_list_repeat1, - STATE(2649), 1, + STATE(2726), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101158] = 8, + [101212] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3040), 1, + ACTIONS(3054), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101188] = 8, + [101242] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3042), 1, + ACTIONS(3056), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1708), 3, + STATE(1685), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101218] = 8, + [101272] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3044), 1, + ACTIONS(3058), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101248] = 12, - ACTIONS(3000), 1, + [101302] = 12, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3046), 1, + ACTIONS(3060), 1, anon_sym_RPAREN, - ACTIONS(3048), 1, - anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, - STATE(2751), 1, + STATE(2721), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101286] = 12, - ACTIONS(3000), 1, + [101340] = 12, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3050), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(3064), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2276), 1, + STATE(2282), 1, aux_sym_argument_list_repeat1, - STATE(2751), 1, + STATE(2721), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101378] = 12, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3066), 1, + anon_sym_RPAREN, + STATE(1843), 1, + sym_for_in_clause, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, + STATE(2627), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101324] = 8, + [101416] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3054), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3063), 1, + ACTIONS(3068), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3057), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1690), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101354] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3065), 1, - anon_sym_RPAREN, - ACTIONS(3067), 1, - anon_sym_COMMA, - STATE(1850), 1, - sym_for_in_clause, - STATE(2477), 1, - aux_sym_argument_list_repeat1, - STATE(2770), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [101446] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [101392] = 12, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + anon_sym_BSLASH, + ACTIONS(3070), 1, + sym_string_end, + STATE(1812), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2998), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1706), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101476] = 12, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3036), 1, anon_sym_or, - STATE(1853), 1, + ACTIONS(3072), 1, + anon_sym_RPAREN, + STATE(1843), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, - STATE(2634), 1, + STATE(2713), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101430] = 12, - ACTIONS(3000), 1, + [101514] = 12, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3083), 1, + ACTIONS(3074), 1, anon_sym_RPAREN, - ACTIONS(3085), 1, + ACTIONS(3076), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2471), 1, + STATE(2301), 1, aux_sym_argument_list_repeat1, - STATE(2693), 1, + STATE(2627), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101468] = 12, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, + [101552] = 12, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3036), 1, anon_sym_or, - STATE(1853), 1, + ACTIONS(3078), 1, + anon_sym_RPAREN, + ACTIONS(3080), 1, + anon_sym_COMMA, + STATE(1843), 1, sym_for_in_clause, - STATE(2388), 1, - aux_sym__collection_elements_repeat1, - STATE(2767), 1, + STATE(2324), 1, + aux_sym_argument_list_repeat1, + STATE(2713), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101506] = 12, - ACTIONS(3000), 1, + [101590] = 12, + ACTIONS(3022), 1, + anon_sym_RPAREN, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3048), 1, + ACTIONS(3082), 1, anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_RPAREN, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, - STATE(2770), 1, + STATE(2660), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101544] = 8, + [101628] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3089), 1, + ACTIONS(3085), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1696), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101574] = 12, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_as, - ACTIONS(3073), 1, - anon_sym_if, - ACTIONS(3075), 1, - anon_sym_async, - ACTIONS(3077), 1, - anon_sym_for, - ACTIONS(3079), 1, - anon_sym_and, - ACTIONS(3081), 1, - anon_sym_or, - STATE(1853), 1, - sym_for_in_clause, - STATE(2388), 1, - aux_sym__collection_elements_repeat1, - STATE(2695), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101612] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_RPAREN, - STATE(1850), 1, - sym_for_in_clause, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - STATE(2622), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101650] = 8, + [101658] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3093), 1, + ACTIONS(3087), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101680] = 12, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, + [101688] = 12, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3036), 1, anon_sym_or, - STATE(1853), 1, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(1843), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, - STATE(2643), 1, + STATE(2680), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101718] = 9, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, - ACTIONS(3099), 1, - anon_sym_COMMA, - STATE(2122), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3095), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3097), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [101750] = 12, - ACTIONS(3000), 1, + [101726] = 12, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3101), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3093), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2274), 1, + STATE(2361), 1, aux_sym_argument_list_repeat1, - STATE(2738), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101788] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3105), 1, - anon_sym_RPAREN, - STATE(1850), 1, - sym_for_in_clause, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - STATE(2738), 1, + STATE(2680), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101826] = 8, + [101764] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3107), 1, + ACTIONS(3095), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1700), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101856] = 8, + [101794] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3109), 1, + ACTIONS(3097), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, - sym_escape_sequence, - STATE(1687), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101886] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1850), 1, - sym_for_in_clause, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - STATE(2649), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101924] = 12, - ACTIONS(3000), 1, + sym_escape_sequence, + STATE(1706), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101824] = 12, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3113), 1, + ACTIONS(3099), 1, anon_sym_RPAREN, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, - STATE(2699), 1, + STATE(2614), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101962] = 12, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, + [101862] = 12, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3036), 1, anon_sym_or, - STATE(1853), 1, + ACTIONS(3101), 1, + anon_sym_RPAREN, + ACTIONS(3103), 1, + anon_sym_COMMA, + STATE(1843), 1, sym_for_in_clause, - STATE(2388), 1, - aux_sym__collection_elements_repeat1, - STATE(2663), 1, + STATE(2394), 1, + aux_sym_argument_list_repeat1, + STATE(2614), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102000] = 8, + [101900] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3115), 1, + ACTIONS(3105), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1678), 3, + STATE(1704), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102030] = 12, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RPAREN, - STATE(1850), 1, - sym_for_in_clause, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - STATE(2635), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102068] = 8, + [101930] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3119), 1, + ACTIONS(3107), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102098] = 8, + [101960] = 12, + ACTIONS(2965), 1, + anon_sym_RBRACK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3008), 1, + anon_sym_if, + ACTIONS(3010), 1, + anon_sym_async, + ACTIONS(3012), 1, + anon_sym_for, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3016), 1, + anon_sym_or, + STATE(1851), 1, + sym_for_in_clause, + STATE(2311), 1, + aux_sym__collection_elements_repeat1, + STATE(2687), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101998] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3109), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3115), 1, anon_sym_BSLASH, - ACTIONS(3121), 1, + ACTIONS(3118), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3112), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1693), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102128] = 12, - ACTIONS(3000), 1, + [102028] = 12, + ACTIONS(2965), 1, + anon_sym_RBRACK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3046), 1, + STATE(1851), 1, + sym_for_in_clause, + STATE(2311), 1, + aux_sym__collection_elements_repeat1, + STATE(2663), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102066] = 12, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_async, + ACTIONS(3032), 1, + anon_sym_for, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3120), 1, anon_sym_RPAREN, - ACTIONS(3123), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1843), 1, sym_for_in_clause, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - STATE(2751), 1, + STATE(2479), 1, + aux_sym_argument_list_repeat1, + STATE(2707), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102166] = 12, - ACTIONS(2974), 1, + [102104] = 12, + ACTIONS(2965), 1, anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3016), 1, anon_sym_or, - STATE(1853), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2311), 1, aux_sym__collection_elements_repeat1, - STATE(2623), 1, + STATE(2733), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102204] = 8, + [102142] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3000), 1, anon_sym_BSLASH, - ACTIONS(3126), 1, + ACTIONS(3124), 1, sym_string_end, - STATE(1816), 2, + STATE(1812), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(2998), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1682), 3, + STATE(1683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102234] = 12, - ACTIONS(3000), 1, + [102172] = 12, + ACTIONS(2965), 1, + anon_sym_RBRACK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(1850), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2308), 1, + STATE(2311), 1, aux_sym__collection_elements_repeat1, - STATE(2693), 1, + STATE(2723), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102272] = 12, - ACTIONS(3000), 1, + [102210] = 12, + ACTIONS(2965), 1, + anon_sym_RBRACK, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3004), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3006), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3008), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3130), 1, - anon_sym_RPAREN, - ACTIONS(3132), 1, - anon_sym_COMMA, - STATE(1850), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2381), 1, - aux_sym_argument_list_repeat1, - STATE(2622), 1, + STATE(2311), 1, + aux_sym__collection_elements_repeat1, + STATE(2754), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102310] = 12, - ACTIONS(2974), 1, + [102248] = 12, + ACTIONS(2965), 1, anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3016), 1, anon_sym_or, - STATE(1853), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2311), 1, aux_sym__collection_elements_repeat1, - STATE(2756), 1, + STATE(2725), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102348] = 12, - ACTIONS(2974), 1, + [102286] = 12, + ACTIONS(2965), 1, anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3008), 1, anon_sym_if, - ACTIONS(3075), 1, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3012), 1, anon_sym_for, - ACTIONS(3079), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3016), 1, anon_sym_or, - STATE(1853), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2311), 1, aux_sym__collection_elements_repeat1, - STATE(2747), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102386] = 4, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3), 2, + [102324] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2994), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [102407] = 6, - ACTIONS(3134), 1, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + anon_sym_BSLASH, + ACTIONS(3126), 1, + sym_string_end, + STATE(1812), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2998), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1706), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102354] = 9, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2990), 6, - anon_sym_DOT, + ACTIONS(3132), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [102432] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, + STATE(2213), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 6, + ACTIONS(3128), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3130), 3, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, anon_sym_PIPE, - [102457] = 2, + [102386] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 10, + ACTIONS(2078), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -112932,49 +112877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102474] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2990), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102499] = 6, + [102403] = 4, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2980), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [102524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 10, + ACTIONS(2971), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112983,187 +112894,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102541] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + [102424] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 6, + ACTIONS(2977), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102566] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2988), 10, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102583] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, + [102441] = 6, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3097), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102608] = 3, - ACTIONS(3146), 1, + ACTIONS(3142), 1, anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 9, + ACTIONS(2979), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102627] = 8, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, - anon_sym_and, - ACTIONS(3160), 1, - anon_sym_or, - STATE(1961), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3156), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102656] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2986), 10, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + [102466] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3142), 1, anon_sym_and, + ACTIONS(3144), 1, anon_sym_or, - [102673] = 3, - ACTIONS(3134), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 9, + ACTIONS(2985), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102692] = 8, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, + [102491] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3136), 1, anon_sym_or, - STATE(1961), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3162), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [102721] = 4, ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2994), 8, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102742] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 10, + ACTIONS(2979), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102759] = 2, + [102516] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 10, + ACTIONS(2078), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113174,426 +112981,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102776] = 5, + [102533] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3164), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2953), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [102799] = 5, ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, - ACTIONS(3167), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2953), 7, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102822] = 6, - ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, ACTIONS(3148), 1, - anon_sym_or, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 6, + ACTIONS(3130), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102847] = 6, + [102558] = 5, ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3144), 1, anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102872] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2988), 9, + ACTIONS(2991), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, + [102581] = 6, + ACTIONS(3134), 1, anon_sym_and, + ACTIONS(3136), 1, anon_sym_or, - [102888] = 6, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2990), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [102912] = 3, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2986), 8, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [102930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 9, + ACTIONS(2987), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, + [102606] = 4, + ACTIONS(3142), 1, anon_sym_and, - anon_sym_or, - [102946] = 4, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3144), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 7, + ACTIONS(2971), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [102966] = 5, - ACTIONS(3174), 1, + [102627] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3178), 1, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2953), 6, + ACTIONS(2985), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [102988] = 4, - ACTIONS(2976), 1, - anon_sym_and, - ACTIONS(3181), 1, - anon_sym_as, + [102652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 7, + ACTIONS(2989), 10, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [103008] = 6, - ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3174), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3176), 1, anon_sym_or, + [102669] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 5, + ACTIONS(2977), 10, anon_sym_DOT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103032] = 3, - ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2986), 8, - anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103050] = 4, - ACTIONS(3185), 1, - anon_sym_DOT, - STATE(1748), 1, - aux_sym_dotted_name_repeat1, + [102686] = 3, + ACTIONS(3142), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2977), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [103070] = 9, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, anon_sym_or, - ACTIONS(2982), 1, + [102705] = 8, + ACTIONS(3153), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3190), 1, - anon_sym_from, - ACTIONS(3192), 1, - anon_sym_COMMA, - STATE(2041), 1, + ACTIONS(3161), 1, + anon_sym_and, + ACTIONS(3163), 1, + anon_sym_or, + STATE(1886), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3188), 2, - sym__newline, - anon_sym_SEMI, - [103100] = 5, - ACTIONS(2976), 1, - anon_sym_and, - ACTIONS(2978), 1, - anon_sym_or, - ACTIONS(3194), 1, - anon_sym_as, + ACTIONS(3159), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 6, + ACTIONS(2989), 10, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103122] = 6, - ACTIONS(2964), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [102751] = 6, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(2966), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(2976), 1, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(3144), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 5, + ACTIONS(2987), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103146] = 6, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [102776] = 3, ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 5, + ACTIONS(2977), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103170] = 6, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2976), 1, + anon_sym_or, + [102795] = 5, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(3136), 1, anon_sym_or, + ACTIONS(3165), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2990), 5, + ACTIONS(2991), 7, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103194] = 6, - ACTIONS(3152), 1, + anon_sym_EQ, + anon_sym_PIPE, + [102818] = 8, + ACTIONS(3153), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3154), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_or, + STATE(1886), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 5, - anon_sym_COMMA, + ACTIONS(3168), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103218] = 6, - ACTIONS(3152), 1, - anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, + [102847] = 6, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(2975), 1, anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 5, - anon_sym_COMMA, + ACTIONS(3130), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103242] = 3, - ACTIONS(3198), 1, + anon_sym_PIPE, + [102872] = 6, + ACTIONS(2955), 1, anon_sym_as, + ACTIONS(2957), 1, + anon_sym_if, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 8, + ACTIONS(2985), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103260] = 6, - ACTIONS(3170), 1, + [102896] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 5, - anon_sym_DOT, + ACTIONS(2985), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103284] = 5, - ACTIONS(3158), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102920] = 5, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_or, - ACTIONS(3200), 1, + ACTIONS(3170), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2953), 6, + ACTIONS(2991), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103306] = 4, - ACTIONS(3158), 1, + [102942] = 4, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 7, + ACTIONS(2971), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113601,11 +113317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103326] = 2, + [102962] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 9, + ACTIONS(2977), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113615,13 +113331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103342] = 3, - ACTIONS(3158), 1, + [102978] = 3, + ACTIONS(3161), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 8, + ACTIONS(2977), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113630,94 +113346,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_or, sym_type_conversion, - [103360] = 2, + [102996] = 3, + ACTIONS(3173), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 9, + ACTIONS(2989), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [103376] = 6, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2976), 1, + [103014] = 9, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2975), 1, anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3177), 1, + anon_sym_from, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103400] = 5, - ACTIONS(2976), 1, - anon_sym_and, - ACTIONS(2978), 1, - anon_sym_or, - ACTIONS(3203), 1, - anon_sym_as, + ACTIONS(3175), 2, + sym__newline, + anon_sym_SEMI, + [103044] = 4, + ACTIONS(3183), 1, + anon_sym_DOT, + STATE(1757), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2953), 6, + ACTIONS(3181), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103422] = 4, - ACTIONS(3208), 1, + anon_sym_PIPE, + [103064] = 5, + ACTIONS(3183), 1, anon_sym_DOT, - STATE(1773), 1, + ACTIONS(3185), 1, + anon_sym_EQ, + STATE(1757), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 7, - anon_sym_import, + ACTIONS(3181), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103442] = 6, - ACTIONS(3152), 1, + [103086] = 6, + ACTIONS(3155), 1, + anon_sym_as, + ACTIONS(3157), 1, + anon_sym_if, + ACTIONS(3161), 1, + anon_sym_and, + ACTIONS(3163), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2979), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103110] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3154), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2990), 5, + ACTIONS(2987), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103466] = 2, + [103134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 9, + ACTIONS(2078), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113727,97 +113465,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103482] = 3, - ACTIONS(2090), 1, + [103150] = 5, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, + ACTIONS(3187), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 8, + ACTIONS(2991), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, + [103172] = 5, + ACTIONS(2967), 1, anon_sym_and, + ACTIONS(2969), 1, anon_sym_or, - [103500] = 5, - ACTIONS(3208), 1, - anon_sym_DOT, - ACTIONS(3210), 1, - anon_sym_EQ, - STATE(1773), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3190), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 6, - anon_sym_LPAREN, + ACTIONS(2971), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103522] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103194] = 3, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 9, + ACTIONS(2977), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [103538] = 6, - ACTIONS(3170), 1, + [103212] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3174), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3176), 1, anon_sym_or, + sym_type_conversion, + [103228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 5, + ACTIONS(2989), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103562] = 6, - ACTIONS(3152), 1, - anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, anon_sym_and, - ACTIONS(3160), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3212), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103586] = 4, - ACTIONS(3208), 1, + [103244] = 4, + ACTIONS(3183), 1, anon_sym_DOT, - STATE(1748), 1, + STATE(1770), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 7, + ACTIONS(3194), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -113825,9253 +113558,9520 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103606] = 6, - ACTIONS(3152), 1, + [103264] = 6, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(3154), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(2969), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 5, + ACTIONS(2979), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103630] = 8, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, + [103288] = 6, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(2957), 1, anon_sym_if, - ACTIONS(3218), 1, - anon_sym_COMMA, - STATE(2145), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [103657] = 3, - ACTIONS(2090), 1, - anon_sym_as, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 7, + ACTIONS(2987), 5, anon_sym_COMMA, - anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, + anon_sym_RBRACE, + [103312] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, anon_sym_and, + ACTIONS(3202), 1, anon_sym_or, - [103674] = 3, - ACTIONS(3198), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 7, - anon_sym_RPAREN, + ACTIONS(2985), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103336] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [103691] = 5, - ACTIONS(3079), 1, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3144), 1, anon_sym_or, - ACTIONS(3220), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2953), 5, + ACTIONS(3130), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103712] = 9, - ACTIONS(3170), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103360] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3163), 1, anon_sym_or, - ACTIONS(3223), 1, - anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3227), 1, - anon_sym_RBRACK, - STATE(2358), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103741] = 5, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2976), 1, + ACTIONS(3204), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103384] = 5, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(3202), 1, anon_sym_or, + ACTIONS(3206), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(2991), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103762] = 6, - ACTIONS(2958), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103406] = 4, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2971), 7, + anon_sym_DOT, anon_sym_COMMA, - [103785] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3231), 1, - anon_sym_async, - ACTIONS(3233), 1, - anon_sym_def, - ACTIONS(3235), 1, - anon_sym_class, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(808), 2, - sym_function_definition, - sym_class_definition, - STATE(1893), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [103810] = 6, - ACTIONS(3071), 1, + ACTIONS(2977), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3073), 1, anon_sym_if, - ACTIONS(3079), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3081), 1, anon_sym_or, + [103442] = 3, + ACTIONS(3200), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 4, + ACTIONS(2977), 8, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103833] = 8, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3192), 1, - anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [103460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3156), 2, - sym__newline, - anon_sym_SEMI, - [103860] = 7, - ACTIONS(1499), 1, - anon_sym_except, - ACTIONS(1519), 1, - anon_sym_except_STAR, - ACTIONS(3237), 1, - anon_sym_finally, - STATE(732), 1, - sym_finally_clause, + ACTIONS(2078), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [103476] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(583), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(591), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [103885] = 6, - ACTIONS(3071), 1, + ACTIONS(3130), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103500] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3079), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 4, + ACTIONS(3209), 5, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103908] = 5, - ACTIONS(3239), 1, - anon_sym_DOT, - ACTIONS(3241), 1, + anon_sym_COLON, anon_sym_EQ, - STATE(1882), 1, + anon_sym_RBRACE, + sym_type_conversion, + [103524] = 4, + ACTIONS(3213), 1, + anon_sym_DOT, + STATE(1770), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, + ACTIONS(3211), 7, + anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [103929] = 5, - ACTIONS(2964), 1, + [103544] = 3, + ACTIONS(2092), 1, anon_sym_as, - ACTIONS(2976), 1, - anon_sym_and, - ACTIONS(2978), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(2078), 8, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103950] = 5, - ACTIONS(2964), 1, - anon_sym_as, - ACTIONS(2976), 1, anon_sym_and, - ACTIONS(2978), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3229), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103971] = 6, - ACTIONS(3071), 1, + [103562] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3073), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3079), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(3202), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2990), 4, + ACTIONS(2979), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [103994] = 6, - ACTIONS(3000), 1, + anon_sym_PIPE, + [103586] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3002), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3008), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3202), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2980), 4, - anon_sym_RPAREN, + ACTIONS(2987), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104017] = 5, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3008), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103610] = 4, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, - anon_sym_RPAREN, + ACTIONS(2977), 7, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - [104038] = 9, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, + anon_sym_RBRACE, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3243), 1, - anon_sym_COMMA, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2475), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [103630] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [104067] = 5, - ACTIONS(3247), 1, - anon_sym_DOT, - ACTIONS(3249), 1, - anon_sym_EQ, - STATE(1884), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3221), 1, + anon_sym_BSLASH, + ACTIONS(3216), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1775), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3218), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [103653] = 7, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_except_STAR, + ACTIONS(3224), 1, + anon_sym_finally, + STATE(737), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(485), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(486), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103678] = 6, + ACTIONS(3006), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [104088] = 5, - ACTIONS(3251), 1, - anon_sym_DOT, - ACTIONS(3253), 1, - anon_sym_EQ, - STATE(1848), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3008), 1, + anon_sym_if, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3016), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2987), 4, anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103701] = 8, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, anon_sym_as, - anon_sym_PIPE, - [104109] = 3, - ACTIONS(2090), 1, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2902), 2, + sym__newline, + anon_sym_SEMI, + [103728] = 3, + ACTIONS(3173), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2076), 7, - anon_sym_RPAREN, + ACTIONS(2989), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [104126] = 9, - ACTIONS(3170), 1, + [103745] = 8, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3228), 1, + anon_sym_COMMA, + STATE(2189), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3226), 2, + sym__newline, + anon_sym_SEMI, + [103772] = 8, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3255), 1, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3179), 1, anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RBRACK, - STATE(2472), 1, - aux_sym_subscript_repeat1, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104155] = 8, - ACTIONS(2958), 1, + ACTIONS(3230), 2, + sym__newline, + anon_sym_SEMI, + [103799] = 8, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3099), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - STATE(2122), 1, + STATE(2213), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 2, + ACTIONS(3128), 2, sym__newline, anon_sym_SEMI, - [104182] = 6, - ACTIONS(3000), 1, + [103826] = 5, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, - ACTIONS(3008), 1, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3036), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2990), 4, + ACTIONS(3232), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104205] = 9, - ACTIONS(3170), 1, + [103847] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3259), 1, + ACTIONS(3234), 1, anon_sym_COMMA, - ACTIONS(3261), 1, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3238), 1, anon_sym_RBRACK, - STATE(2448), 1, + STATE(2474), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104234] = 5, - ACTIONS(3071), 1, + [103876] = 3, + ACTIONS(3173), 1, anon_sym_as, - ACTIONS(3079), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(3081), 1, anon_sym_or, + [103893] = 5, + ACTIONS(3240), 1, + anon_sym_DOT, + ACTIONS(3242), 1, + anon_sym_EQ, + STATE(1871), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(3181), 5, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [103914] = 6, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3008), 1, anon_sym_if, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3016), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2979), 4, + anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104255] = 7, + [103937] = 7, ACTIONS(1487), 1, anon_sym_except, ACTIONS(1491), 1, anon_sym_except_STAR, - ACTIONS(3263), 1, + ACTIONS(3224), 1, anon_sym_finally, - STATE(838), 1, + STATE(785), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(525), 2, + STATE(562), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(526), 2, + STATE(563), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [104280] = 5, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3008), 1, + [103962] = 8, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(2975), 1, anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3228), 1, + anon_sym_COMMA, + STATE(2218), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3244), 2, + sym__newline, + anon_sym_SEMI, + [103989] = 9, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3246), 1, + anon_sym_COMMA, + ACTIONS(3248), 1, + anon_sym_RBRACK, + STATE(2286), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104018] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3250), 1, anon_sym_async, - anon_sym_for, - [104301] = 5, - ACTIONS(3071), 1, + ACTIONS(3252), 1, + anon_sym_def, + ACTIONS(3254), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(817), 2, + sym_function_definition, + sym_class_definition, + STATE(1954), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [104043] = 6, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(3079), 1, + ACTIONS(2957), 1, + anon_sym_if, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3081), 1, + ACTIONS(2969), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(3256), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104322] = 5, - ACTIONS(3071), 1, + anon_sym_RBRACE, + [104066] = 3, + ACTIONS(2092), 1, anon_sym_as, - ACTIONS(3079), 1, - anon_sym_and, - ACTIONS(3081), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(2078), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104343] = 9, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, anon_sym_and, - ACTIONS(3176), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3265), 1, - anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RBRACK, - STATE(2425), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104372] = 7, - ACTIONS(1487), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_except_STAR, - ACTIONS(3263), 1, - anon_sym_finally, - STATE(734), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(585), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(587), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [104397] = 6, - ACTIONS(2964), 1, + [104083] = 5, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(2966), 1, - anon_sym_if, - ACTIONS(2976), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(2969), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 4, + ACTIONS(3232), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104420] = 9, - ACTIONS(3170), 1, + [104104] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3236), 1, anon_sym_COLON, - ACTIONS(3271), 1, + ACTIONS(3258), 1, anon_sym_COMMA, - ACTIONS(3273), 1, + ACTIONS(3260), 1, anon_sym_RBRACK, - STATE(2332), 1, + STATE(2463), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104449] = 5, - ACTIONS(3079), 1, - anon_sym_and, - ACTIONS(3081), 1, - anon_sym_or, - ACTIONS(3194), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2994), 5, - anon_sym_COMMA, - anon_sym_if, + [104133] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3262), 1, anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104470] = 6, - ACTIONS(3), 1, + ACTIONS(3264), 1, + anon_sym_def, + ACTIONS(3266), 1, + anon_sym_class, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3280), 1, - anon_sym_BSLASH, - ACTIONS(3275), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1811), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3277), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104493] = 9, - ACTIONS(3170), 1, + STATE(795), 2, + sym_function_definition, + sym_class_definition, + STATE(1954), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [104158] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3236), 1, anon_sym_COLON, - ACTIONS(3283), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - ACTIONS(3285), 1, + ACTIONS(3270), 1, anon_sym_RBRACK, - STATE(2352), 1, + STATE(2328), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104522] = 8, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, + [104187] = 6, + ACTIONS(3026), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3289), 1, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2985), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2127), 1, - aux_sym_print_statement_repeat1, + anon_sym_async, + anon_sym_for, + [104210] = 7, + ACTIONS(1541), 1, + anon_sym_except, + ACTIONS(1545), 1, + anon_sym_except_STAR, + ACTIONS(3272), 1, + anon_sym_finally, + STATE(803), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 2, - sym__newline, - anon_sym_SEMI, - [104549] = 9, - ACTIONS(3170), 1, + STATE(590), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(591), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [104235] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3236), 1, anon_sym_COLON, - ACTIONS(3291), 1, + ACTIONS(3274), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3276), 1, anon_sym_RBRACK, - STATE(2368), 1, + STATE(2364), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104578] = 5, - ACTIONS(3008), 1, + [104264] = 5, + ACTIONS(3006), 1, + anon_sym_as, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3295), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2953), 5, - anon_sym_RPAREN, + ACTIONS(3232), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104599] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3302), 1, - anon_sym_BSLASH, - ACTIONS(3298), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1811), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3300), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104622] = 3, - ACTIONS(3181), 1, + anon_sym_RBRACK, + [104285] = 5, + ACTIONS(3006), 1, anon_sym_as, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3016), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 7, + ACTIONS(3232), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, + [104306] = 9, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, anon_sym_and, + ACTIONS(3202), 1, anon_sym_or, - [104639] = 5, - ACTIONS(3008), 1, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3278), 1, + anon_sym_COMMA, + ACTIONS(3280), 1, + anon_sym_RBRACK, + STATE(2342), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104335] = 5, + ACTIONS(2955), 1, + anon_sym_as, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(2969), 1, anon_sym_or, - ACTIONS(3194), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 5, - anon_sym_RPAREN, + ACTIONS(3232), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104660] = 3, - ACTIONS(3181), 1, + anon_sym_RBRACE, + [104356] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 7, - anon_sym_RPAREN, + ACTIONS(3204), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [104677] = 3, - ACTIONS(3198), 1, + [104379] = 3, + ACTIONS(2092), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 7, + ACTIONS(2078), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [104694] = 4, - ACTIONS(3008), 1, + [104396] = 5, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3181), 1, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3190), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 6, + ACTIONS(2971), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [104713] = 4, - ACTIONS(3079), 1, - anon_sym_and, - ACTIONS(3181), 1, + [104417] = 3, + ACTIONS(3192), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 6, + ACTIONS(2977), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [104732] = 5, - ACTIONS(3000), 1, - anon_sym_as, - ACTIONS(3008), 1, anon_sym_and, - ACTIONS(3010), 1, anon_sym_or, + [104434] = 4, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(2977), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104753] = 9, - ACTIONS(3170), 1, + anon_sym_or, + [104453] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3236), 1, anon_sym_COLON, - ACTIONS(3304), 1, + ACTIONS(3282), 1, anon_sym_COMMA, - ACTIONS(3306), 1, + ACTIONS(3284), 1, anon_sym_RBRACK, - STATE(2384), 1, + STATE(2397), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104782] = 2, + [104482] = 5, + ACTIONS(3286), 1, + anon_sym_DOT, + ACTIONS(3288), 1, + anon_sym_EQ, + STATE(1840), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 8, - anon_sym_import, - anon_sym_DOT, + ACTIONS(3181), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [104797] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3308), 1, - anon_sym_async, - ACTIONS(3310), 1, - anon_sym_def, - ACTIONS(3312), 1, - anon_sym_class, - ACTIONS(3), 2, + [104503] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(743), 2, - sym_function_definition, - sym_class_definition, - STATE(1893), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104822] = 8, - ACTIONS(2958), 1, + ACTIONS(3294), 1, + anon_sym_BSLASH, + ACTIONS(3290), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1775), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3292), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104526] = 6, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(3036), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2987), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104549] = 9, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3192), 1, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3296), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3298), 1, + anon_sym_RBRACK, + STATE(2322), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2921), 2, - sym__newline, - anon_sym_SEMI, - [104849] = 8, - ACTIONS(2958), 1, + [104578] = 8, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3218), 1, + ACTIONS(3179), 1, anon_sym_COMMA, - STATE(2128), 1, + STATE(2092), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3314), 2, + ACTIONS(3300), 2, sym__newline, anon_sym_SEMI, - [104876] = 6, - ACTIONS(3000), 1, + [104605] = 6, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3002), 1, - anon_sym_if, ACTIONS(3008), 1, + anon_sym_if, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2992), 4, - anon_sym_RPAREN, + ACTIONS(2985), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [104899] = 4, - ACTIONS(324), 1, + anon_sym_RBRACK, + [104628] = 9, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3304), 1, + anon_sym_RBRACK, + STATE(2409), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104657] = 4, + ACTIONS(327), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, + STATE(993), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3316), 5, + ACTIONS(3306), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104918] = 8, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, + [104676] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3211), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2984), 1, anon_sym_if, - ACTIONS(3192), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104691] = 9, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(3308), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3310), 1, + anon_sym_RBRACK, + STATE(2415), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, - sym__newline, - anon_sym_SEMI, - [104945] = 8, - ACTIONS(2958), 1, + [104720] = 5, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(3312), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3320), 2, - sym__newline, - anon_sym_SEMI, - [104972] = 7, - ACTIONS(1499), 1, + ACTIONS(2991), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104741] = 7, + ACTIONS(1541), 1, anon_sym_except, - ACTIONS(1519), 1, + ACTIONS(1545), 1, anon_sym_except_STAR, - ACTIONS(3237), 1, + ACTIONS(3272), 1, anon_sym_finally, - STATE(821), 1, + STATE(819), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(565), 2, + STATE(594), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(571), 2, + STATE(595), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [104997] = 9, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, + [104766] = 5, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3016), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3322), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RBRACK, - STATE(2280), 1, - aux_sym_subscript_repeat1, + ACTIONS(3190), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105026] = 8, - ACTIONS(2970), 1, + ACTIONS(2971), 5, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3328), 1, - anon_sym_RBRACE, - STATE(1878), 1, - sym_for_in_clause, - STATE(2354), 1, - aux_sym_dictionary_repeat1, - STATE(2655), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + [104787] = 5, + ACTIONS(2955), 1, + anon_sym_as, + ACTIONS(2967), 1, + anon_sym_and, + ACTIONS(2969), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105052] = 8, - ACTIONS(2970), 1, + ACTIONS(3232), 5, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, anon_sym_RBRACE, - STATE(1878), 1, - sym_for_in_clause, - STATE(2439), 1, - aux_sym_dictionary_repeat1, - STATE(2630), 1, - sym__comprehension_clauses, + [104808] = 3, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105078] = 8, - ACTIONS(2970), 1, + ACTIONS(2977), 7, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3336), 1, - anon_sym_RBRACE, - STATE(1878), 1, - sym_for_in_clause, - STATE(2259), 1, - aux_sym_dictionary_repeat1, - STATE(2744), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [104825] = 4, + ACTIONS(3014), 1, + anon_sym_and, + ACTIONS(3192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105104] = 7, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(3338), 1, - anon_sym_DOT, - ACTIONS(3340), 1, - anon_sym___future__, - STATE(2113), 1, - aux_sym_import_prefix_repeat1, - STATE(2246), 1, - sym_import_prefix, + ACTIONS(2977), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [104844] = 5, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2768), 2, - sym_relative_import, - sym_dotted_name, - [105128] = 6, - ACTIONS(2970), 1, + ACTIONS(3232), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(2972), 1, anon_sym_for, - ACTIONS(3342), 1, + [104865] = 8, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3344), 1, - anon_sym_RBRACE, + ACTIONS(3317), 1, + anon_sym_COMMA, + STATE(2185), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1842), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105150] = 7, - ACTIONS(1403), 1, - anon_sym_COLON, - ACTIONS(3170), 1, + ACTIONS(3315), 2, + sym__newline, + anon_sym_SEMI, + [104892] = 8, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 2, + sym__newline, + anon_sym_SEMI, + [104919] = 5, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3034), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3036), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1401), 2, + ACTIONS(3232), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [105174] = 5, - ACTIONS(2964), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104940] = 5, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(2976), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(2978), 1, + ACTIONS(3016), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3346), 4, + ACTIONS(3232), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105194] = 6, - ACTIONS(3348), 1, + anon_sym_RBRACK, + [104961] = 6, + ACTIONS(3026), 1, + anon_sym_as, + ACTIONS(3028), 1, anon_sym_if, - ACTIONS(3351), 1, - anon_sym_async, - ACTIONS(3354), 1, - anon_sym_for, - ACTIONS(3357), 1, - anon_sym_RBRACE, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1842), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105216] = 4, - ACTIONS(3359), 1, + ACTIONS(2979), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104984] = 5, + ACTIONS(3319), 1, anon_sym_DOT, - STATE(1843), 1, + ACTIONS(3321), 1, + anon_sym_EQ, + STATE(1838), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 5, + ACTIONS(3181), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [105234] = 3, + [105005] = 5, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, + ACTIONS(3323), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3364), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 5, + ACTIONS(2991), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105026] = 8, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, anon_sym_COLON, - anon_sym_PIPE, - [105250] = 8, - ACTIONS(3366), 1, - sym_identifier, - ACTIONS(3368), 1, - anon_sym_LPAREN, - ACTIONS(3370), 1, - anon_sym_STAR, - STATE(2082), 1, - sym_dotted_name, - STATE(2112), 1, - sym_aliased_import, - STATE(2499), 1, - sym__import_list, - STATE(2578), 1, - sym_wildcard_import, + STATE(2239), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105276] = 4, - ACTIONS(797), 1, - sym_string_start, + [105052] = 8, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3330), 1, + anon_sym_COMMA, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(1865), 1, + sym_for_in_clause, + STATE(2386), 1, + aux_sym_dictionary_repeat1, + STATE(2619), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3316), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105294] = 8, - ACTIONS(3156), 1, + [105078] = 8, + ACTIONS(3159), 1, anon_sym_RBRACK, - ACTIONS(3170), 1, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, - ACTIONS(3372), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - STATE(2295), 1, + STATE(2477), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105320] = 4, - ACTIONS(3251), 1, + [105104] = 4, + ACTIONS(3319), 1, anon_sym_DOT, - STATE(1843), 1, + STATE(1849), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 5, + ACTIONS(3194), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [105338] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3374), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [105360] = 6, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3376), 1, - anon_sym_RPAREN, - ACTIONS(3378), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1868), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105382] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [105122] = 8, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3380), 1, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(3382), 1, + ACTIONS(3336), 1, anon_sym_COLON, - STATE(2319), 1, + STATE(2239), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105408] = 4, - ACTIONS(3247), 1, + [105148] = 4, + ACTIONS(3286), 1, anon_sym_DOT, - STATE(1884), 1, + STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, + ACTIONS(3194), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105426] = 6, - ACTIONS(3075), 1, - anon_sym_async, - ACTIONS(3077), 1, - anon_sym_for, - ACTIONS(3376), 1, - anon_sym_RBRACK, - ACTIONS(3384), 1, - anon_sym_if, + [105166] = 4, + ACTIONS(3338), 1, + anon_sym_DOT, + STATE(1841), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1879), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105448] = 8, - ACTIONS(2970), 1, - anon_sym_async, - ACTIONS(2972), 1, - anon_sym_for, - ACTIONS(3386), 1, + ACTIONS(3211), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(1878), 1, - sym_for_in_clause, - STATE(2402), 1, - aux_sym_dictionary_repeat1, - STATE(2625), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105474] = 5, - ACTIONS(3000), 1, anon_sym_as, - ACTIONS(3008), 1, - anon_sym_and, - ACTIONS(3010), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_RBRACE, + [105184] = 4, + ACTIONS(729), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3346), 4, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3306), 4, anon_sym_RPAREN, - anon_sym_if, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [105202] = 6, + ACTIONS(3030), 1, anon_sym_async, + ACTIONS(3032), 1, anon_sym_for, - [105494] = 6, - ACTIONS(3357), 1, + ACTIONS(3341), 1, anon_sym_RPAREN, - ACTIONS(3390), 1, + ACTIONS(3343), 1, anon_sym_if, - ACTIONS(3393), 1, - anon_sym_async, - ACTIONS(3396), 1, - anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1856), 3, + STATE(1874), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105516] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + [105224] = 7, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3380), 1, - anon_sym_COMMA, - ACTIONS(3399), 1, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3236), 1, anon_sym_COLON, - STATE(2319), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105542] = 8, - ACTIONS(2970), 1, + ACTIONS(3345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105248] = 8, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3401), 1, + ACTIONS(3347), 1, anon_sym_COMMA, - ACTIONS(3403), 1, + ACTIONS(3349), 1, anon_sym_RBRACE, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2493), 1, + STATE(2313), 1, aux_sym_dictionary_repeat1, - STATE(2755), 1, + STATE(2621), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105568] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, + [105274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3405), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3306), 5, anon_sym_COMMA, - [105590] = 7, - ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3172), 1, anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, - anon_sym_or, - ACTIONS(3225), 1, anon_sym_COLON, + anon_sym_PIPE, + [105290] = 4, + ACTIONS(704), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 2, + STATE(984), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3306), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [105614] = 7, - ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [105308] = 8, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3409), 1, - anon_sym_COLON, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3159), 1, + anon_sym_RPAREN, + ACTIONS(3353), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1435), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [105638] = 4, - ACTIONS(3411), 1, + [105334] = 4, + ACTIONS(3355), 1, anon_sym_DOT, - STATE(1862), 1, + STATE(1849), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 5, + ACTIONS(3211), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [105656] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + [105352] = 7, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3414), 1, - anon_sym_COMMA, - ACTIONS(3416), 1, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3358), 1, anon_sym_COLON, - STATE(2398), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105682] = 4, - ACTIONS(3239), 1, - anon_sym_DOT, - STATE(1882), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105376] = 6, + ACTIONS(3010), 1, + anon_sym_async, + ACTIONS(3012), 1, + anon_sym_for, + ACTIONS(3341), 1, + anon_sym_RBRACK, + ACTIONS(3360), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(1861), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105398] = 5, + ACTIONS(3026), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105700] = 4, - ACTIONS(3418), 1, - anon_sym_DOT, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3034), 1, + anon_sym_and, + ACTIONS(3036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3362), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105418] = 7, + ACTIONS(1409), 1, + anon_sym_COLON, + ACTIONS(3196), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105718] = 3, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3421), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3316), 5, + ACTIONS(1407), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105442] = 4, + ACTIONS(3286), 1, + anon_sym_DOT, + STATE(1840), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [105734] = 8, - ACTIONS(2970), 1, + [105460] = 8, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3423), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(3425), 1, + ACTIONS(3366), 1, anon_sym_RBRACE, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2456), 1, + STATE(2421), 1, aux_sym_dictionary_repeat1, - STATE(2709), 1, + STATE(2744), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105760] = 6, - ACTIONS(3004), 1, - anon_sym_async, - ACTIONS(3006), 1, - anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(3378), 1, + [105486] = 8, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3370), 1, + anon_sym_COLON, + STATE(2399), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1856), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105782] = 8, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [105512] = 8, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3380), 1, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(3427), 1, + ACTIONS(3372), 1, anon_sym_COLON, - STATE(2319), 1, + STATE(2239), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105808] = 8, - ACTIONS(2970), 1, + [105538] = 4, + ACTIONS(819), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1111), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3306), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105556] = 8, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3429), 1, + ACTIONS(3374), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3376), 1, anon_sym_RBRACE, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2363), 1, + STATE(2245), 1, aux_sym_dictionary_repeat1, - STATE(2639), 1, + STATE(2678), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105834] = 8, - ACTIONS(3134), 1, + [105582] = 6, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3380), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_COLON, - STATE(2319), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105860] = 6, - ACTIONS(3357), 1, - anon_sym_RBRACK, - ACTIONS(3435), 1, - anon_sym_if, - ACTIONS(3438), 1, + ACTIONS(3378), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [105604] = 6, + ACTIONS(3010), 1, anon_sym_async, - ACTIONS(3441), 1, + ACTIONS(3012), 1, anon_sym_for, + ACTIONS(3360), 1, + anon_sym_if, + ACTIONS(3380), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, + STATE(1883), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105882] = 4, - ACTIONS(3251), 1, + [105626] = 8, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3382), 1, + anon_sym_COMMA, + ACTIONS(3384), 1, + anon_sym_RBRACE, + STATE(1865), 1, + sym_for_in_clause, + STATE(2352), 1, + aux_sym_dictionary_repeat1, + STATE(2694), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105652] = 8, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, + anon_sym_COLON, + STATE(2239), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105678] = 4, + ACTIONS(3388), 1, anon_sym_DOT, - STATE(1848), 1, + STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, + ACTIONS(3211), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105900] = 5, - ACTIONS(3071), 1, - anon_sym_as, - ACTIONS(3079), 1, - anon_sym_and, - ACTIONS(3081), 1, - anon_sym_or, + [105696] = 6, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3341), 1, + anon_sym_RBRACE, + ACTIONS(3391), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1872), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105718] = 8, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3393), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, + anon_sym_RBRACE, + STATE(1865), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym_dictionary_repeat1, + STATE(2728), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3346), 4, + [105744] = 6, + ACTIONS(3397), 1, + anon_sym_RPAREN, + ACTIONS(3399), 1, anon_sym_if, + ACTIONS(3402), 1, anon_sym_async, + ACTIONS(3405), 1, anon_sym_for, - anon_sym_RBRACK, - [105920] = 8, - ACTIONS(3142), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1867), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105766] = 8, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3144), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3146), 1, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3144), 1, anon_sym_or, - ACTIONS(3156), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, + ACTIONS(3408), 1, anon_sym_COMMA, - STATE(2271), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3410), 1, + anon_sym_COLON, + STATE(2483), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105946] = 8, - ACTIONS(3050), 1, - anon_sym_RPAREN, - ACTIONS(3052), 1, + [105792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3414), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3412), 5, anon_sym_COMMA, - ACTIONS(3142), 1, anon_sym_as, - ACTIONS(3144), 1, anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, - STATE(2276), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + anon_sym_PIPE, + [105808] = 4, + ACTIONS(3319), 1, + anon_sym_DOT, + STATE(1838), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105972] = 4, - ACTIONS(775), 1, - sym_string_start, + ACTIONS(3181), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105826] = 4, + ACTIONS(3240), 1, + anon_sym_DOT, + STATE(1841), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(988), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3316), 4, - anon_sym_RPAREN, + ACTIONS(3194), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105990] = 6, - ACTIONS(2970), 1, + anon_sym_RBRACE, + [105844] = 6, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3342), 1, - anon_sym_if, - ACTIONS(3376), 1, + ACTIONS(3380), 1, anon_sym_RBRACE, + ACTIONS(3391), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1839), 3, + STATE(1875), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106012] = 6, - ACTIONS(3075), 1, + [105866] = 7, + ACTIONS(2714), 1, + sym_identifier, + ACTIONS(3416), 1, + anon_sym_DOT, + ACTIONS(3418), 1, + anon_sym___future__, + STATE(2205), 1, + aux_sym_import_prefix_repeat1, + STATE(2363), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2740), 2, + sym_relative_import, + sym_dotted_name, + [105890] = 6, + ACTIONS(3030), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3032), 1, anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RBRACK, - ACTIONS(3384), 1, + ACTIONS(3343), 1, anon_sym_if, + ACTIONS(3380), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, + STATE(1867), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106034] = 4, - ACTIONS(704), 1, - sym_string_start, + [105912] = 6, + ACTIONS(3397), 1, + anon_sym_RBRACE, + ACTIONS(3420), 1, + anon_sym_if, + ACTIONS(3423), 1, + anon_sym_async, + ACTIONS(3426), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(983), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3316), 4, + STATE(1875), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105934] = 4, + ACTIONS(3240), 1, + anon_sym_DOT, + STATE(1871), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [106052] = 8, - ACTIONS(3134), 1, + [105952] = 6, + ACTIONS(2973), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(2975), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(2981), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(2983), 1, anon_sym_if, - ACTIONS(3446), 1, - anon_sym_COMMA, - ACTIONS(3448), 1, - anon_sym_COLON, - STATE(2345), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106078] = 4, - ACTIONS(3239), 1, - anon_sym_DOT, - STATE(1862), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 5, - anon_sym_LPAREN, + ACTIONS(3429), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106096] = 8, - ACTIONS(2970), 1, + [105974] = 8, + ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2972), 1, + ACTIONS(2963), 1, anon_sym_for, - ACTIONS(3450), 1, + ACTIONS(3431), 1, anon_sym_COMMA, - ACTIONS(3452), 1, + ACTIONS(3433), 1, anon_sym_RBRACE, - STATE(1878), 1, + STATE(1865), 1, sym_for_in_clause, - STATE(2258), 1, + STATE(2462), 1, aux_sym_dictionary_repeat1, - STATE(2739), 1, + STATE(2741), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106122] = 4, - ACTIONS(3247), 1, - anon_sym_DOT, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 5, - anon_sym_LPAREN, + [106000] = 8, + ACTIONS(3038), 1, + anon_sym_RPAREN, + ACTIONS(3040), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106140] = 7, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3454), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3458), 1, - anon_sym_COLON, + ACTIONS(3148), 1, + anon_sym_if, + STATE(2335), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106163] = 6, - ACTIONS(3142), 1, + [106026] = 5, + ACTIONS(2955), 1, anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, + ACTIONS(2967), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(2969), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3460), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3464), 1, - anon_sym_BSLASH, - ACTIONS(3462), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106201] = 2, + ACTIONS(3362), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106046] = 8, + ACTIONS(3435), 1, + sym_identifier, + ACTIONS(3437), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_STAR, + STATE(2077), 1, + sym_dotted_name, + STATE(2149), 1, + sym_aliased_import, + STATE(2530), 1, + sym__import_list, + STATE(2532), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106214] = 6, - ACTIONS(3152), 1, + [106072] = 5, + ACTIONS(3006), 1, anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(3014), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3016), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 2, + ACTIONS(3362), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106092] = 6, + ACTIONS(3397), 1, + anon_sym_RBRACK, + ACTIONS(3441), 1, + anon_sym_if, + ACTIONS(3444), 1, + anon_sym_async, + ACTIONS(3447), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1883), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106114] = 8, + ACTIONS(2961), 1, + anon_sym_async, + ACTIONS(2963), 1, + anon_sym_for, + ACTIONS(3450), 1, anon_sym_COMMA, + ACTIONS(3452), 1, anon_sym_RBRACE, - [106235] = 2, + STATE(1865), 1, + sym_for_in_clause, + STATE(2319), 1, + aux_sym_dictionary_repeat1, + STATE(2673), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106248] = 4, + [106140] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3470), 1, + ACTIONS(3456), 1, anon_sym_BSLASH, - ACTIONS(3468), 5, + ACTIONS(3454), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106265] = 2, + [106157] = 4, + ACTIONS(3458), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1293), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [106278] = 4, - ACTIONS(3476), 1, - anon_sym_AT, + anon_sym_RBRACE, + sym_type_conversion, + [106174] = 4, + ACTIONS(3460), 1, + anon_sym_COMMA, + STATE(1964), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1893), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3474), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [106295] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, + ACTIONS(3462), 4, anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3479), 2, + ACTIONS(3464), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [106316] = 6, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3481), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106337] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3483), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106350] = 5, - ACTIONS(3487), 1, - anon_sym_DOT, - ACTIONS(3489), 1, - anon_sym_COLON, - ACTIONS(3491), 1, - anon_sym_PIPE, + [106204] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [106369] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3493), 6, + ACTIONS(1650), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106382] = 2, + [106217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 6, + ACTIONS(3466), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106395] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3495), 2, - sym__newline, - anon_sym_SEMI, - [106416] = 2, + [106230] = 4, + ACTIONS(3468), 1, + anon_sym_COMMA, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106429] = 6, - ACTIONS(3142), 1, + ACTIONS(3462), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106247] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3144), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3146), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3499), 2, - anon_sym_RPAREN, + ACTIONS(3470), 2, anon_sym_COMMA, - [106450] = 6, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3505), 1, - anon_sym_COLON, - ACTIONS(3507), 1, - anon_sym_EQ, - ACTIONS(3509), 1, + anon_sym_RBRACE, + [106268] = 4, + ACTIONS(3474), 1, anon_sym_PIPE, + STATE(1959), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 2, - anon_sym_RPAREN, + ACTIONS(3472), 4, anon_sym_COMMA, - [106471] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3196), 2, - anon_sym_COMMA, anon_sym_COLON, - [106492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3513), 1, - anon_sym_BSLASH, - ACTIONS(3511), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106509] = 4, - ACTIONS(3517), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3515), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106526] = 4, - ACTIONS(3520), 1, - anon_sym_COMMA, - STATE(1921), 1, - aux_sym_for_in_clause_repeat1, + [106285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106543] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + ACTIONS(3130), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106298] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 2, + ACTIONS(3211), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [106564] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, + anon_sym_PIPE, + [106311] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3479), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106585] = 4, - ACTIONS(3526), 1, + ACTIONS(3476), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(1910), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2871), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106602] = 6, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3499), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106623] = 7, + anon_sym_PIPE, + [106324] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3456), 1, - anon_sym_as, - ACTIONS(3529), 1, - anon_sym_COMMA, - ACTIONS(3531), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106646] = 6, - ACTIONS(3170), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3174), 1, - anon_sym_and, - ACTIONS(3176), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 2, + ACTIONS(3470), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106667] = 4, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [106345] = 4, + ACTIONS(3478), 1, + anon_sym_DOT, + STATE(1946), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 4, + ACTIONS(3194), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [106684] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3497), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106697] = 4, - ACTIONS(3535), 1, + [106362] = 4, + ACTIONS(3482), 1, anon_sym_COMMA, - STATE(1984), 1, + STATE(1977), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 4, + ACTIONS(3480), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [106714] = 6, - ACTIONS(3152), 1, - anon_sym_as, - ACTIONS(3154), 1, - anon_sym_if, - ACTIONS(3158), 1, - anon_sym_and, - ACTIONS(3160), 1, - anon_sym_or, + [106379] = 4, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 2, - anon_sym_COMMA, + ACTIONS(3486), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [106735] = 4, - ACTIONS(3539), 1, + [106396] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(1906), 1, + STATE(1891), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 4, - anon_sym_RPAREN, + ACTIONS(3486), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [106752] = 4, - ACTIONS(3543), 1, - anon_sym_PIPE, - STATE(1919), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3541), 4, - anon_sym_COMMA, + anon_sym_RBRACK, + [106413] = 6, + ACTIONS(3155), 1, anon_sym_as, + ACTIONS(3157), 1, anon_sym_if, - anon_sym_COLON, - [106769] = 3, - STATE(1934), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3161), 1, + anon_sym_and, + ACTIONS(3163), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106784] = 4, - ACTIONS(3546), 1, + ACTIONS(3490), 2, anon_sym_COMMA, - STATE(1921), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [106434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106801] = 4, - ACTIONS(3549), 1, + ACTIONS(3492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3306), 4, anon_sym_COMMA, - STATE(1910), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(959), 4, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [106818] = 7, - ACTIONS(3551), 1, + [106449] = 7, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3553), 1, + ACTIONS(3496), 1, anon_sym_COMMA, - ACTIONS(3555), 1, + ACTIONS(3498), 1, anon_sym_COLON, - ACTIONS(3557), 1, + ACTIONS(3500), 1, anon_sym_RBRACK, - ACTIONS(3559), 1, + ACTIONS(3502), 1, anon_sym_PIPE, - STATE(2285), 1, + STATE(2480), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106841] = 4, - ACTIONS(3561), 1, - anon_sym_DOT, - STATE(1985), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + [106472] = 6, + ACTIONS(3155), 1, anon_sym_as, - [106858] = 3, + ACTIONS(3157), 1, + anon_sym_if, + ACTIONS(3161), 1, + anon_sym_and, + ACTIONS(3163), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3563), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 4, - anon_sym_RPAREN, + ACTIONS(3504), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106873] = 6, - ACTIONS(3487), 1, + anon_sym_RBRACE, + [106493] = 4, + ACTIONS(3478), 1, anon_sym_DOT, - ACTIONS(3489), 1, - anon_sym_COLON, - ACTIONS(3491), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_EQ, + STATE(1898), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3565), 2, + ACTIONS(3181), 4, sym__newline, anon_sym_SEMI, - [106894] = 4, - ACTIONS(3569), 1, anon_sym_COMMA, - STATE(1921), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + [106510] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3571), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106911] = 4, - ACTIONS(3573), 1, + ACTIONS(3209), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, + [106531] = 3, + ACTIONS(3506), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 4, + ACTIONS(3306), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106928] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_PIPE, + [106546] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3578), 1, - anon_sym_BSLASH, - ACTIONS(3576), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106945] = 6, + ACTIONS(3508), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106567] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3148), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 2, + ACTIONS(3510), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [106966] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [106588] = 6, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3580), 2, + ACTIONS(3204), 2, anon_sym_COMMA, anon_sym_COLON, - [106987] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3183), 6, - anon_sym_DOT, - anon_sym_LPAREN, + [106609] = 7, + ACTIONS(3512), 1, anon_sym_COMMA, + ACTIONS(3514), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [107000] = 4, - ACTIONS(3584), 1, - anon_sym_PIPE, - STATE(1934), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3516), 1, + anon_sym_if, + ACTIONS(3518), 1, + anon_sym_COLON, + STATE(2065), 1, + aux_sym_case_clause_repeat1, + STATE(2779), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107017] = 4, - ACTIONS(3584), 1, + [106632] = 4, + ACTIONS(3474), 1, anon_sym_PIPE, - STATE(1919), 1, + STATE(1959), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 4, + ACTIONS(3520), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107034] = 2, + [106649] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1443), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [107047] = 6, - ACTIONS(3170), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, + [106670] = 4, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3144), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3212), 2, + ACTIONS(2971), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [107068] = 6, - ACTIONS(2958), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [106687] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3148), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3212), 2, - sym__newline, - anon_sym_SEMI, - [107089] = 2, + ACTIONS(3522), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106708] = 4, + ACTIONS(3524), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3204), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107102] = 2, + anon_sym_RBRACE, + sym_type_conversion, + [106725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, + ACTIONS(1650), 6, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107115] = 7, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - anon_sym_PIPE, - ACTIONS(3590), 1, - anon_sym_COMMA, - ACTIONS(3592), 1, - anon_sym_RBRACK, - STATE(2485), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107138] = 6, - ACTIONS(3142), 1, + [106738] = 6, + ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3144), 1, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3146), 1, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3144), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 2, + ACTIONS(3527), 2, + anon_sym_COMMA, + anon_sym_COLON, + [106759] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3412), 4, anon_sym_RPAREN, anon_sym_COMMA, - [107159] = 6, - ACTIONS(3170), 1, anon_sym_as, - ACTIONS(3172), 1, - anon_sym_if, - ACTIONS(3174), 1, + anon_sym_PIPE, + [106774] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3136), 1, anon_sym_or, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1435), 2, + ACTIONS(3531), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107180] = 4, - ACTIONS(3594), 1, + [106795] = 7, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_COLON, + ACTIONS(3502), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, anon_sym_COMMA, - STATE(1907), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3535), 1, + anon_sym_RBRACK, + STATE(2372), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107197] = 4, - ACTIONS(3598), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, + [106818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107214] = 6, - ACTIONS(3142), 1, + ACTIONS(3211), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_RBRACE, + [106831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3539), 1, + anon_sym_BSLASH, + ACTIONS(3537), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106848] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + ACTIONS(3466), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [107235] = 7, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3559), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(3602), 1, + [106861] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3543), 1, + anon_sym_BSLASH, + ACTIONS(3541), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106878] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3545), 2, + sym__newline, + anon_sym_SEMI, + [106899] = 4, + ACTIONS(3547), 1, anon_sym_COMMA, - ACTIONS(3604), 1, - anon_sym_RBRACK, - STATE(2442), 1, - aux_sym_type_parameter_repeat1, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107258] = 6, - ACTIONS(3170), 1, + ACTIONS(3550), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106916] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3460), 2, + ACTIONS(3209), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107279] = 4, - ACTIONS(3561), 1, - anon_sym_DOT, - STATE(1924), 1, - aux_sym_dotted_name_repeat1, + [106937] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3552), 2, anon_sym_COMMA, + anon_sym_COLON, + [106958] = 6, + ACTIONS(3196), 1, anon_sym_as, - [107296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3608), 1, - anon_sym_BSLASH, - ACTIONS(3606), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107313] = 3, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 4, + ACTIONS(1425), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [107328] = 2, + [106979] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 6, + ACTIONS(3476), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107341] = 4, - ACTIONS(3612), 1, + [106992] = 4, + ACTIONS(3554), 1, anon_sym_COMMA, - STATE(1952), 1, - aux_sym_assert_statement_repeat1, + STATE(1951), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 4, + ACTIONS(959), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [107358] = 6, - ACTIONS(2958), 1, + [107009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3558), 1, + anon_sym_BSLASH, + ACTIONS(3556), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107026] = 4, + ACTIONS(3560), 1, + anon_sym_COMMA, + STATE(1964), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3562), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107043] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(2960), 1, + ACTIONS(3136), 1, anon_sym_or, - ACTIONS(2982), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3148), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 2, - sym__newline, - anon_sym_SEMI, - [107379] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3097), 6, - anon_sym_DOT, + ACTIONS(3490), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107392] = 5, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3505), 1, - anon_sym_COLON, - ACTIONS(3509), 1, - anon_sym_PIPE, + [107064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 3, - anon_sym_RPAREN, + ACTIONS(3564), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3306), 4, anon_sym_COMMA, - anon_sym_EQ, - [107411] = 4, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [107079] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3619), 1, + ACTIONS(3568), 1, anon_sym_BSLASH, - ACTIONS(3617), 5, + ACTIONS(3566), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107428] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + [107096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3621), 2, - anon_sym_RPAREN, + ACTIONS(3570), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3412), 4, anon_sym_COMMA, - [107449] = 6, - ACTIONS(3152), 1, anon_sym_as, - ACTIONS(3154), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [107111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3574), 1, + anon_sym_BSLASH, + ACTIONS(3572), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107128] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3144), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3460), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107470] = 4, - ACTIONS(3623), 1, + ACTIONS(3576), 2, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + [107149] = 3, + STATE(1959), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3571), 4, + ACTIONS(3578), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107487] = 3, - ACTIONS(3625), 1, - anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_PIPE, + [107164] = 4, + ACTIONS(3580), 1, + anon_sym_PIPE, + STATE(1943), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 5, + ACTIONS(3578), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [107502] = 4, - ACTIONS(3627), 1, - anon_sym_COMMA, - STATE(1952), 1, - aux_sym_assert_statement_repeat1, + [107181] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_and, + ACTIONS(3202), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107519] = 4, - ACTIONS(3629), 1, + ACTIONS(3490), 2, anon_sym_COMMA, - STATE(1944), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [107202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107536] = 2, + ACTIONS(3130), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107215] = 4, + ACTIONS(3583), 1, + anon_sym_DOT, + STATE(1946), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 6, + ACTIONS(3211), 4, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107549] = 4, - ACTIONS(3631), 1, anon_sym_COMMA, - STATE(1927), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + [107232] = 7, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3586), 1, + anon_sym_COMMA, + ACTIONS(3588), 1, + anon_sym_as, + ACTIONS(3590), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 4, + [107255] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - anon_sym_DOT, + ACTIONS(3592), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107579] = 3, + [107276] = 6, + ACTIONS(3134), 1, + anon_sym_and, + ACTIONS(3136), 1, + anon_sym_or, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3633), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3316), 4, + ACTIONS(3204), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [107594] = 2, + [107297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 6, + ACTIONS(3594), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107607] = 7, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - anon_sym_PIPE, - ACTIONS(3635), 1, + [107310] = 4, + ACTIONS(3596), 1, anon_sym_COMMA, - ACTIONS(3637), 1, - anon_sym_RBRACK, - STATE(2387), 1, - aux_sym_type_parameter_repeat1, + STATE(1951), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3641), 1, - anon_sym_BSLASH, - ACTIONS(3639), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107647] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + ACTIONS(2875), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3212), 2, + ACTIONS(3599), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [107668] = 4, - ACTIONS(3584), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(1934), 1, - aux_sym_union_pattern_repeat1, + [107340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 4, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3306), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107685] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + [107355] = 4, + ACTIONS(3605), 1, + anon_sym_AT, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3647), 1, - anon_sym_BSLASH, - ACTIONS(3645), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107702] = 7, - ACTIONS(3649), 1, + STATE(1954), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3603), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [107372] = 4, + ACTIONS(3608), 1, anon_sym_COMMA, - ACTIONS(3651), 1, - anon_sym_as, - ACTIONS(3653), 1, - anon_sym_if, - ACTIONS(3655), 1, - anon_sym_COLON, - STATE(2079), 1, - aux_sym_case_clause_repeat1, - STATE(2727), 1, - sym_if_clause, + STATE(1961), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107725] = 6, - ACTIONS(3142), 1, + ACTIONS(3462), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107389] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3144), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3146), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3202), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 2, + ACTIONS(3204), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107410] = 5, + ACTIONS(3610), 1, + anon_sym_DOT, + ACTIONS(3614), 1, + anon_sym_COLON, + ACTIONS(3616), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3612), 3, anon_sym_RPAREN, anon_sym_COMMA, - [107746] = 2, + anon_sym_EQ, + [107429] = 7, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_COLON, + ACTIONS(3502), 1, + anon_sym_PIPE, + ACTIONS(3618), 1, + anon_sym_COMMA, + ACTIONS(3620), 1, + anon_sym_RBRACK, + STATE(2384), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [107452] = 4, + ACTIONS(3474), 1, anon_sym_PIPE, - [107759] = 3, + STATE(1943), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3316), 4, + ACTIONS(3622), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107774] = 2, + anon_sym_if, + anon_sym_COLON, + [107469] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 6, + ACTIONS(3624), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107787] = 4, - ACTIONS(3659), 1, + [107482] = 4, + ACTIONS(3626), 1, anon_sym_COMMA, - STATE(1959), 1, + STATE(1961), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 4, + ACTIONS(3550), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107804] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, - anon_sym_and, - ACTIONS(3148), 1, - anon_sym_or, + [107499] = 4, + ACTIONS(3629), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 2, + ACTIONS(3486), 4, anon_sym_RPAREN, - anon_sym_COMMA, - [107825] = 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107516] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 4, + ACTIONS(3464), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, + [107529] = 4, + ACTIONS(3631), 1, + anon_sym_COMMA, + STATE(1964), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3550), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [107840] = 2, + [107546] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 2, + sym__newline, + anon_sym_SEMI, + [107567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, + ACTIONS(3476), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107853] = 3, + [107580] = 7, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3588), 1, + anon_sym_as, + ACTIONS(3634), 1, + anon_sym_COMMA, + ACTIONS(3636), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, + [107603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3638), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3316), 4, + ACTIONS(3412), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [107868] = 6, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3144), 1, - anon_sym_if, - ACTIONS(3146), 1, + [107618] = 6, + ACTIONS(3134), 1, anon_sym_and, - ACTIONS(3148), 1, + ACTIONS(3136), 1, anon_sym_or, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 2, + ACTIONS(3504), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107889] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3571), 4, - anon_sym_RPAREN, + [107639] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107906] = 4, - ACTIONS(3671), 1, - anon_sym_DOT, - STATE(1985), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 4, + ACTIONS(3640), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [107923] = 2, + [107660] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3483), 6, + ACTIONS(3599), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107936] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3588), 6, + [107673] = 5, + ACTIONS(3642), 1, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3644), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3646), 1, anon_sym_PIPE, - [107949] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3621), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107970] = 6, - ACTIONS(3170), 1, + ACTIONS(3612), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [107692] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3200), 1, anon_sym_and, - ACTIONS(3176), 1, + ACTIONS(3202), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1439), 2, + ACTIONS(3504), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107991] = 4, - ACTIONS(3674), 1, + [107713] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3624), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3650), 1, + anon_sym_BSLASH, + ACTIONS(3648), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3654), 1, + anon_sym_BSLASH, + ACTIONS(3652), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107760] = 4, + ACTIONS(3656), 1, anon_sym_COMMA, - STATE(1918), 1, + STATE(1961), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 4, + ACTIONS(3562), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [108008] = 6, - ACTIONS(3152), 1, + [107777] = 6, + ACTIONS(3155), 1, anon_sym_as, - ACTIONS(3154), 1, + ACTIONS(3157), 1, anon_sym_if, - ACTIONS(3158), 1, + ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3499), 2, + ACTIONS(3256), 2, anon_sym_COMMA, anon_sym_RBRACE, - [108029] = 2, + [107798] = 6, + ACTIONS(3642), 1, + anon_sym_DOT, + ACTIONS(3644), 1, + anon_sym_COLON, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(3660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 5, + ACTIONS(3658), 2, + sym__newline, + anon_sym_SEMI, + [107819] = 4, + ACTIONS(3662), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108041] = 2, + STATE(1928), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 5, + ACTIONS(3562), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107836] = 6, + ACTIONS(3610), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3614), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3616), 1, anon_sym_PIPE, - [108053] = 6, + ACTIONS(3666), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3664), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107857] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3676), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108073] = 3, - ACTIONS(3678), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3316), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [108087] = 4, - ACTIONS(3680), 1, - anon_sym_PIPE, - STATE(2012), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, + ACTIONS(3527), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [108103] = 2, + [107878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3483), 5, + ACTIONS(3211), 6, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [108115] = 2, + [107891] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, + ACTIONS(3592), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACE, - [108127] = 5, - ACTIONS(3551), 1, + [107912] = 7, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3555), 1, + ACTIONS(3498), 1, anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3502), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3485), 2, + ACTIONS(3668), 1, anon_sym_COMMA, + ACTIONS(3670), 1, anon_sym_RBRACK, - [108145] = 4, - ACTIONS(3684), 1, - anon_sym_COMMA, - STATE(2000), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3196), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108161] = 2, + STATE(2360), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 5, - anon_sym_DOT, + [107935] = 4, + ACTIONS(3672), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108173] = 2, + STATE(1980), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3480), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [108185] = 5, - ACTIONS(3366), 1, - sym_identifier, - STATE(2133), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3687), 2, - sym__newline, - anon_sym_SEMI, - [108203] = 5, - ACTIONS(3366), 1, - sym_identifier, - STATE(2133), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3687), 2, - sym__newline, - anon_sym_SEMI, - [108221] = 6, + [107952] = 6, ACTIONS(3134), 1, anon_sym_and, ACTIONS(3136), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3140), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3346), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108241] = 3, - ACTIONS(3689), 1, - anon_sym_LPAREN, + ACTIONS(3552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107973] = 4, + ACTIONS(3674), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [108255] = 2, + ACTIONS(3480), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107990] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 5, + ACTIONS(3464), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - [108267] = 4, - ACTIONS(3691), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(2020), 1, - aux_sym_union_pattern_repeat1, + [108003] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, + ACTIONS(3594), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [108283] = 6, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3695), 1, - anon_sym_RBRACE, - ACTIONS(3697), 1, - aux_sym_format_specifier_token1, - STATE(2086), 1, - aux_sym_format_specifier_repeat1, - STATE(2452), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [108303] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3699), 1, anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108323] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3097), 5, + ACTIONS(3594), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108335] = 4, - ACTIONS(3680), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(2030), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3586), 3, - anon_sym_COMMA, + [108029] = 6, + ACTIONS(3138), 1, anon_sym_as, - anon_sym_RBRACE, - [108351] = 2, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3676), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [108049] = 4, + ACTIONS(3678), 1, anon_sym_PIPE, - [108363] = 2, + STATE(2089), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 5, + ACTIONS(3520), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + [108065] = 5, + ACTIONS(3642), 1, + anon_sym_DOT, + ACTIONS(3644), 1, anon_sym_COLON, + ACTIONS(3646), 1, anon_sym_PIPE, - [108375] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3705), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108395] = 2, + ACTIONS(3680), 2, + sym__newline, + anon_sym_SEMI, + [108083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 5, + ACTIONS(3624), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108407] = 2, + [108095] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 5, + ACTIONS(3682), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108107] = 6, + ACTIONS(3684), 1, anon_sym_COLON, - anon_sym_PIPE, - [108419] = 2, + ACTIONS(3686), 1, + anon_sym_EQ, + ACTIONS(3688), 1, + anon_sym_RBRACE, + ACTIONS(3690), 1, + sym_type_conversion, + STATE(2616), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108431] = 2, + [108127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 5, + ACTIONS(3550), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108139] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3692), 1, anon_sym_COLON, - anon_sym_PIPE, - [108443] = 4, - ACTIONS(3691), 1, - anon_sym_PIPE, - STATE(2052), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [108459] = 6, - ACTIONS(3134), 1, + [108159] = 6, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3144), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3694), 1, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3711), 1, - anon_sym_else, + ACTIONS(3696), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108479] = 4, - ACTIONS(3680), 1, - anon_sym_PIPE, - STATE(2012), 1, - aux_sym_union_pattern_repeat1, + [108179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 3, + ACTIONS(3159), 5, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [108495] = 2, + sym_type_conversion, + [108191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, - anon_sym_DOT, + ACTIONS(3698), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [108507] = 2, + [108203] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 5, + ACTIONS(3700), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108519] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3715), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108539] = 3, - STATE(2012), 1, + [108215] = 4, + ACTIONS(3678), 1, + anon_sym_PIPE, + STATE(2089), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 4, + ACTIONS(3472), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [108553] = 2, + [108231] = 5, + ACTIONS(3435), 1, + sym_identifier, + STATE(2135), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108565] = 2, + ACTIONS(3702), 2, + sym__newline, + anon_sym_SEMI, + [108249] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 5, + ACTIONS(3704), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108577] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3721), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108597] = 4, - ACTIONS(3723), 1, - anon_sym_PIPE, - STATE(2030), 1, - aux_sym_union_pattern_repeat1, + [108261] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 3, + ACTIONS(3706), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108613] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 5, - anon_sym_DOT, + ACTIONS(3708), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [108625] = 2, + [108285] = 6, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(3710), 1, + anon_sym_EQ, + ACTIONS(3712), 1, + anon_sym_RBRACE, + ACTIONS(3714), 1, + sym_type_conversion, + STATE(2714), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108637] = 2, + [108305] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 5, + ACTIONS(3716), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108649] = 2, + [108317] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3718), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108661] = 6, - ACTIONS(3503), 1, - anon_sym_COMMA, - ACTIONS(3728), 1, + [108337] = 5, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3730), 1, + ACTIONS(3498), 1, anon_sym_COLON, - ACTIONS(3732), 1, - anon_sym_EQ, - ACTIONS(3734), 1, + ACTIONS(3502), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108681] = 6, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_COLON, - STATE(2349), 1, - sym_type_parameter, - STATE(2664), 1, - sym_argument_list, + ACTIONS(3720), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108355] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3722), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108701] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [108375] = 6, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3740), 1, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3724), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108721] = 5, - ACTIONS(3742), 1, + [108395] = 4, + ACTIONS(3726), 1, anon_sym_COMMA, - ACTIONS(3744), 1, - anon_sym_RBRACE, - STATE(2413), 1, - aux_sym_dict_pattern_repeat1, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3204), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [108411] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, + ACTIONS(3130), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108739] = 4, - ACTIONS(3691), 1, - anon_sym_PIPE, - STATE(2020), 1, - aux_sym_union_pattern_repeat1, + [108423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 3, + ACTIONS(1650), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [108755] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108435] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 5, + ACTIONS(3466), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [108767] = 4, - ACTIONS(3746), 1, - anon_sym_COMMA, - STATE(2000), 1, - aux_sym_assert_statement_repeat1, + [108447] = 6, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, + anon_sym_LPAREN, + ACTIONS(3731), 1, + anon_sym_COLON, + STATE(2272), 1, + sym_type_parameter, + STATE(2636), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108783] = 2, + [108467] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + ACTIONS(3733), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [108795] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3750), 1, - anon_sym_as, - ACTIONS(3752), 1, - anon_sym_COLON, + [108479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108815] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3750), 1, + ACTIONS(3735), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3754), 1, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, + [108491] = 3, + STATE(2089), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108835] = 2, + ACTIONS(3578), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [108505] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3756), 5, + ACTIONS(3737), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108847] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3758), 1, - anon_sym_COLON, + [108517] = 4, + ACTIONS(3739), 1, + anon_sym_PIPE, + STATE(2024), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108867] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3578), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3760), 1, - anon_sym_COLON, + [108533] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108887] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3742), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3762), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108907] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [108545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 5, + ACTIONS(3744), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108919] = 2, + [108557] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 5, + ACTIONS(3746), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108931] = 3, - STATE(2020), 1, - aux_sym_union_pattern_repeat1, + [108569] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 4, + ACTIONS(3748), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [108945] = 4, - ACTIONS(3768), 1, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2052), 1, - aux_sym_union_pattern_repeat1, + [108581] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 3, + ACTIONS(3750), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [108961] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3771), 5, + ACTIONS(3752), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108973] = 2, + [108605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 5, + ACTIONS(2880), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108985] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3773), 1, - anon_sym_COLON, + [108617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109005] = 2, + ACTIONS(1650), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108629] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3775), 5, + ACTIONS(3466), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109017] = 2, + [108641] = 6, + ACTIONS(2973), 1, + anon_sym_and, + ACTIONS(2975), 1, + anon_sym_or, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(2983), 1, + anon_sym_if, + ACTIONS(3754), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + [108661] = 5, + ACTIONS(3756), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3758), 1, anon_sym_RBRACE, - [109029] = 6, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3777), 1, - anon_sym_COLON, - STATE(2338), 1, - sym_type_parameter, - STATE(2685), 1, - sym_argument_list, + STATE(2253), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109049] = 5, - ACTIONS(3366), 1, + ACTIONS(3306), 2, + anon_sym_COLON, + anon_sym_PIPE, + [108679] = 6, + ACTIONS(3435), 1, sym_identifier, - STATE(2133), 1, + ACTIONS(3760), 1, + anon_sym_LPAREN, + STATE(2077), 1, sym_dotted_name, - STATE(2372), 1, + STATE(2149), 1, sym_aliased_import, + STATE(2513), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3779), 2, - sym__newline, - anon_sym_SEMI, - [109067] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2886), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109079] = 6, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3783), 1, - anon_sym_EQ, - ACTIONS(3785), 1, + [108699] = 6, + ACTIONS(3762), 1, + anon_sym_LBRACE, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(3787), 1, - sym_type_conversion, - STATE(2627), 1, - sym_format_specifier, - ACTIONS(3), 2, + ACTIONS(3766), 1, + aux_sym_format_specifier_token1, + STATE(2058), 1, + aux_sym_format_specifier_repeat1, + STATE(2426), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [109099] = 2, + [108719] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, + ACTIONS(3768), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109111] = 5, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3505), 1, - anon_sym_COLON, - ACTIONS(3509), 1, - anon_sym_PIPE, + [108731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 2, - anon_sym_RPAREN, + ACTIONS(3770), 5, anon_sym_COMMA, - [109129] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108743] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3717), 5, + ACTIONS(3772), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109141] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [108755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3483), 5, - anon_sym_DOT, + ACTIONS(2886), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [109153] = 6, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3791), 1, - anon_sym_EQ, - ACTIONS(3793), 1, anon_sym_RBRACE, - ACTIONS(3795), 1, sym_type_conversion, - STATE(2638), 1, - sym_format_specifier, + [108767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109173] = 5, - ACTIONS(3487), 1, - anon_sym_DOT, - ACTIONS(3489), 1, + ACTIONS(3774), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3491), 1, anon_sym_PIPE, + [108779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 2, - sym__newline, - anon_sym_SEMI, - [109191] = 4, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2994), 3, + ACTIONS(3776), 5, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [109207] = 6, - ACTIONS(2958), 1, - anon_sym_and, - ACTIONS(2960), 1, - anon_sym_or, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_if, - ACTIONS(3799), 1, - sym__newline, - ACTIONS(3), 2, + anon_sym_PIPE, + [108791] = 6, + ACTIONS(3762), 1, + anon_sym_LBRACE, + ACTIONS(3778), 1, + anon_sym_RBRACE, + ACTIONS(3780), 1, + aux_sym_format_specifier_token1, + STATE(2037), 1, + aux_sym_format_specifier_repeat1, + STATE(2426), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [109227] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3801), 1, - anon_sym_COLON, + [108811] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109247] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3782), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3803), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109267] = 5, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3730), 1, anon_sym_COLON, - ACTIONS(3734), 1, anon_sym_PIPE, + [108823] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 2, + ACTIONS(2875), 5, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [109285] = 2, + anon_sym_RBRACE, + sym_type_conversion, + [108835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 5, + ACTIONS(3211), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109297] = 2, + [108847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 5, + ACTIONS(3733), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [109309] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + [108859] = 6, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3807), 1, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3784), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109329] = 2, + [108879] = 5, + ACTIONS(3435), 1, + sym_identifier, + STATE(2135), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109341] = 2, + ACTIONS(3786), 2, + sym__newline, + anon_sym_SEMI, + [108897] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 5, + ACTIONS(3788), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109353] = 2, + [108909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 5, + ACTIONS(1563), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109365] = 6, - ACTIONS(2564), 1, anon_sym_COLON, - ACTIONS(3653), 1, - anon_sym_if, - ACTIONS(3813), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108921] = 6, + ACTIONS(3664), 1, anon_sym_COMMA, - STATE(2154), 1, - aux_sym_case_clause_repeat1, - STATE(2704), 1, - sym_if_clause, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3792), 1, + anon_sym_COLON, + ACTIONS(3794), 1, + anon_sym_EQ, + ACTIONS(3796), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109385] = 2, + [108941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 5, - anon_sym_DOT, + ACTIONS(3798), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109397] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, anon_sym_as, - ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3815), 1, anon_sym_COLON, + anon_sym_PIPE, + [108953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109417] = 5, - ACTIONS(3819), 1, + ACTIONS(3800), 5, anon_sym_COMMA, - ACTIONS(3821), 1, anon_sym_as, - STATE(2124), 1, - aux_sym__import_list_repeat1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108965] = 5, + ACTIONS(3435), 1, + sym_identifier, + STATE(2135), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3817), 2, + ACTIONS(3786), 2, sym__newline, anon_sym_SEMI, - [109435] = 4, - ACTIONS(3823), 1, - anon_sym_PIPE, - STATE(2094), 1, - aux_sym_union_pattern_repeat1, + [108983] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 3, - anon_sym_RPAREN, + ACTIONS(3802), 5, anon_sym_COMMA, anon_sym_as, - [109451] = 6, - ACTIONS(3825), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108995] = 6, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3807), 1, anon_sym_RBRACE, - ACTIONS(3830), 1, + ACTIONS(3809), 1, aux_sym_format_specifier_token1, - STATE(2084), 1, + STATE(2058), 1, aux_sym_format_specifier_repeat1, - STATE(2452), 1, + STATE(2426), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [109471] = 2, + [109015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3156), 5, + ACTIONS(3599), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109483] = 6, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3833), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, - aux_sym_format_specifier_token1, - STATE(2084), 1, - aux_sym_format_specifier_repeat1, - STATE(2452), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [109027] = 5, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_COLON, + ACTIONS(3502), 1, + anon_sym_PIPE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109503] = 2, + ACTIONS(3612), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109045] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + ACTIONS(3624), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [109515] = 5, - ACTIONS(3837), 1, + anon_sym_PIPE, + [109057] = 5, + ACTIONS(3812), 1, anon_sym_COMMA, - ACTIONS(3839), 1, + ACTIONS(3814), 1, anon_sym_RBRACE, - STATE(2299), 1, + STATE(2297), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, + ACTIONS(3306), 2, anon_sym_COLON, anon_sym_PIPE, - [109533] = 2, + [109075] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3816), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3841), 5, - anon_sym_COMMA, + [109095] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3362), 1, anon_sym_COLON, - anon_sym_PIPE, - [109545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 5, - anon_sym_DOT, + [109115] = 6, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3516), 1, + anon_sym_if, + ACTIONS(3818), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym_case_clause_repeat1, + STATE(2699), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109135] = 5, + ACTIONS(3820), 1, anon_sym_COMMA, + ACTIONS(3822), 1, + anon_sym_RBRACE, + STATE(2251), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3306), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109557] = 6, - ACTIONS(3366), 1, - sym_identifier, - ACTIONS(3843), 1, + [109153] = 3, + ACTIONS(3824), 1, anon_sym_LPAREN, - STATE(2082), 1, - sym_dotted_name, - STATE(2112), 1, - sym_aliased_import, - STATE(2599), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109577] = 5, - ACTIONS(3551), 1, - anon_sym_DOT, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(3559), 1, + ACTIONS(3306), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109167] = 4, + ACTIONS(3826), 1, anon_sym_PIPE, + STATE(2072), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109595] = 5, - ACTIONS(3847), 1, + ACTIONS(3520), 3, anon_sym_COMMA, - ACTIONS(3849), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2314), 1, - aux_sym_dict_pattern_repeat1, + [109183] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3594), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109195] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3828), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, + ACTIONS(3798), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, anon_sym_PIPE, - [109613] = 4, - ACTIONS(3823), 1, + anon_sym_RBRACE, + [109227] = 4, + ACTIONS(3826), 1, anon_sym_PIPE, - STATE(2100), 1, + STATE(2075), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 3, - anon_sym_RPAREN, + ACTIONS(3622), 3, anon_sym_COMMA, anon_sym_as, - [109629] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + anon_sym_RBRACE, + [109243] = 4, + ACTIONS(3826), 1, + anon_sym_PIPE, + STATE(2072), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3472), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3851), 1, - anon_sym_COLON, + anon_sym_RBRACE, + [109259] = 3, + STATE(2072), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109649] = 6, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, + ACTIONS(3578), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109273] = 4, + ACTIONS(3830), 1, + anon_sym_PIPE, + STATE(2075), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3578), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [109289] = 6, ACTIONS(3138), 1, anon_sym_as, ACTIONS(3140), 1, anon_sym_if, - ACTIONS(3853), 1, - anon_sym_COLON, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3833), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109669] = 5, - ACTIONS(3855), 1, + [109309] = 5, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3857), 1, - anon_sym_RBRACE, - STATE(2464), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3839), 1, + anon_sym_as, + STATE(2190), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, - anon_sym_COLON, - anon_sym_PIPE, - [109687] = 3, - ACTIONS(3859), 1, - anon_sym_LPAREN, + ACTIONS(3835), 2, + sym__newline, + anon_sym_SEMI, + [109327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 4, - anon_sym_RPAREN, + ACTIONS(3599), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109701] = 2, + [109339] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3841), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109359] = 3, + ACTIONS(3843), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 5, + ACTIONS(3306), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109713] = 4, - ACTIONS(3863), 1, + [109373] = 4, + ACTIONS(3845), 1, anon_sym_PIPE, - STATE(2100), 1, + STATE(2086), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 3, - anon_sym_RPAREN, + ACTIONS(3520), 3, anon_sym_COMMA, anon_sym_as, - [109729] = 2, + anon_sym_RBRACK, + [109389] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3866), 5, + ACTIONS(3476), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109741] = 2, + [109401] = 4, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 5, - anon_sym_COMMA, + ACTIONS(2971), 3, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [109753] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_COMMA, + [109417] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109765] = 3, - STATE(2094), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3847), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [109437] = 5, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3792), 1, + anon_sym_COLON, + ACTIONS(3796), 1, anon_sym_PIPE, - [109779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 5, - anon_sym_DOT, + ACTIONS(3612), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, + [109455] = 4, + ACTIONS(3845), 1, anon_sym_PIPE, - [109791] = 4, - ACTIONS(3823), 1, - anon_sym_PIPE, - STATE(2094), 1, + STATE(2103), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, - anon_sym_RPAREN, + ACTIONS(3622), 3, anon_sym_COMMA, anon_sym_as, - [109807] = 2, + anon_sym_RBRACK, + [109471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 5, + ACTIONS(3464), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109483] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3849), 1, anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109503] = 4, + ACTIONS(3678), 1, anon_sym_PIPE, - [109819] = 2, + STATE(2024), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 5, + ACTIONS(3622), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109831] = 2, + [109519] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 5, + ACTIONS(3682), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109531] = 6, + ACTIONS(3138), 1, anon_sym_as, + ACTIONS(3140), 1, anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3851), 1, anon_sym_COLON, - anon_sym_PIPE, - [109843] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + [109551] = 4, + ACTIONS(3853), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109854] = 2, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1293), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [109567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, + ACTIONS(3550), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109579] = 6, + ACTIONS(3138), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109865] = 4, - ACTIONS(3819), 1, - anon_sym_COMMA, - STATE(2123), 1, - aux_sym__import_list_repeat1, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3855), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3817), 2, - sym__newline, - anon_sym_SEMI, - [109880] = 4, - ACTIONS(3878), 1, - anon_sym_DOT, - STATE(2125), 1, - aux_sym_import_prefix_repeat1, + [109599] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3857), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 2, - anon_sym_import, - sym_identifier, - [109895] = 5, + [109619] = 6, ACTIONS(1561), 1, anon_sym_LBRACK, - ACTIONS(3880), 1, + ACTIONS(3729), 1, anon_sym_LPAREN, - STATE(2507), 1, + ACTIONS(3859), 1, + anon_sym_COLON, + STATE(2429), 1, sym_type_parameter, - STATE(2545), 1, - sym_parameters, + STATE(2684), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109912] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3880), 1, + [109639] = 3, + ACTIONS(3861), 1, anon_sym_LPAREN, - STATE(2509), 1, - sym_type_parameter, - STATE(2547), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109929] = 4, - ACTIONS(3884), 1, + ACTIONS(3306), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2126), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3882), 2, - sym__newline, - anon_sym_SEMI, - [109944] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3880), 1, - anon_sym_LPAREN, - STATE(2551), 1, - sym_type_parameter, - STATE(2552), 1, - sym_parameters, + anon_sym_as, + anon_sym_PIPE, + [109653] = 4, + ACTIONS(3845), 1, + anon_sym_PIPE, + STATE(2086), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109961] = 4, - ACTIONS(3888), 1, + ACTIONS(3472), 3, anon_sym_COMMA, - STATE(2130), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [109669] = 6, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3694), 1, + anon_sym_as, + ACTIONS(3863), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3886), 2, - sym__newline, - anon_sym_SEMI, - [109976] = 4, - ACTIONS(3888), 1, - anon_sym_COMMA, - STATE(2139), 1, - aux_sym_global_statement_repeat1, + [109689] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3865), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, - sym__newline, - anon_sym_SEMI, - [109991] = 5, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3730), 1, + [109709] = 6, + ACTIONS(3138), 1, + anon_sym_as, + ACTIONS(3140), 1, + anon_sym_if, + ACTIONS(3142), 1, + anon_sym_and, + ACTIONS(3144), 1, + anon_sym_or, + ACTIONS(3867), 1, anon_sym_COLON, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(3892), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110008] = 5, - ACTIONS(3366), 1, - sym_identifier, - STATE(2082), 1, - sym_dotted_name, - STATE(2112), 1, - sym_aliased_import, - STATE(2506), 1, - sym__import_list, + [109729] = 3, + STATE(2086), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110025] = 4, - ACTIONS(3894), 1, + ACTIONS(3578), 4, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109743] = 4, + ACTIONS(3869), 1, + anon_sym_PIPE, + STATE(2103), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 2, - sym__newline, - anon_sym_SEMI, - [110040] = 4, - ACTIONS(3898), 1, + ACTIONS(3578), 3, anon_sym_COMMA, - STATE(2135), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [109759] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3896), 2, - sym__newline, - anon_sym_SEMI, - [110055] = 4, - ACTIONS(3900), 1, + ACTIONS(3733), 5, anon_sym_COMMA, - STATE(2135), 1, - aux_sym__import_list_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109771] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3896), 2, - sym__newline, - anon_sym_SEMI, - [110070] = 4, - ACTIONS(3904), 1, - anon_sym_DOT, - STATE(2125), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3550), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109783] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 2, - anon_sym_import, - sym_identifier, - [110085] = 4, - ACTIONS(3909), 1, + ACTIONS(3682), 5, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2138), 1, - aux_sym_print_statement_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 2, - sym__newline, - anon_sym_SEMI, - [110100] = 4, - ACTIONS(3913), 1, + ACTIONS(3130), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(2138), 1, - aux_sym_print_statement_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109807] = 5, + ACTIONS(3610), 1, + anon_sym_DOT, + ACTIONS(3614), 1, + anon_sym_COLON, + ACTIONS(3616), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3911), 2, - sym__newline, - anon_sym_SEMI, - [110115] = 4, - ACTIONS(3218), 1, + ACTIONS(3664), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_assert_statement_repeat1, + [109825] = 5, + ACTIONS(3872), 1, + anon_sym_COMMA, + ACTIONS(3874), 1, + anon_sym_RBRACE, + STATE(2413), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3915), 2, - sym__newline, - anon_sym_SEMI, - [110130] = 5, - ACTIONS(1561), 1, - anon_sym_LBRACK, - ACTIONS(3880), 1, - anon_sym_LPAREN, - STATE(2591), 1, - sym_type_parameter, - STATE(2592), 1, - sym_parameters, + ACTIONS(3306), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109843] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110147] = 4, - ACTIONS(3888), 1, + ACTIONS(3735), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109854] = 4, + ACTIONS(3878), 1, anon_sym_COMMA, - STATE(2140), 1, + STATE(2134), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3917), 2, + ACTIONS(3876), 2, sym__newline, anon_sym_SEMI, - [110162] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3919), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110173] = 5, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3921), 1, - anon_sym_RBRACE, - ACTIONS(3923), 1, - sym_type_conversion, - STATE(2700), 1, - sym_format_specifier, + [109869] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110190] = 3, - ACTIONS(3821), 1, + ACTIONS(3770), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + [109880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3306), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3880), 2, anon_sym_COMMA, - [110203] = 5, - ACTIONS(3927), 1, - anon_sym_case, - ACTIONS(3929), 1, - sym__dedent, - STATE(2147), 1, - aux_sym__match_block_repeat1, - STATE(2534), 1, - sym_case_clause, + anon_sym_RBRACE, + [109893] = 4, + ACTIONS(3884), 1, + anon_sym_COLON, + ACTIONS(3886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110220] = 4, - ACTIONS(3933), 1, + ACTIONS(3882), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2135), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3931), 2, - sym__newline, - anon_sym_SEMI, - [110235] = 5, - ACTIONS(3936), 1, - sym_identifier, - STATE(2156), 1, - sym_dotted_name, - STATE(2416), 1, - sym_aliased_import, - STATE(2730), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110252] = 5, - ACTIONS(3936), 1, - sym_identifier, - STATE(2156), 1, - sym_dotted_name, - STATE(2416), 1, - sym_aliased_import, - STATE(2707), 1, - sym__import_list, + [109908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110269] = 4, - ACTIONS(3940), 1, + ACTIONS(3772), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2138), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [109919] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - sym__newline, - anon_sym_SEMI, - [110284] = 4, - ACTIONS(3888), 1, + ACTIONS(3774), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2140), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [109930] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2512), 1, + sym_type_parameter, + STATE(2536), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3943), 2, - sym__newline, - anon_sym_SEMI, - [110299] = 4, - ACTIONS(3947), 1, + [109947] = 5, + ACTIONS(3890), 1, + anon_sym_RPAREN, + ACTIONS(3892), 1, anon_sym_COMMA, - STATE(2140), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3894), 1, + anon_sym_as, + STATE(2247), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3945), 2, - sym__newline, - anon_sym_SEMI, - [110314] = 5, - ACTIONS(3503), 1, + [109964] = 5, + ACTIONS(3896), 1, anon_sym_COMMA, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3730), 1, - anon_sym_COLON, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110331] = 5, - ACTIONS(3927), 1, - anon_sym_case, - ACTIONS(3950), 1, - sym__dedent, - STATE(2144), 1, - aux_sym__match_block_repeat1, - STATE(2534), 1, - sym_case_clause, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3900), 1, + anon_sym_RBRACK, + STATE(2248), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110348] = 5, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3952), 1, - anon_sym_RBRACE, - ACTIONS(3954), 1, - sym_type_conversion, - STATE(2675), 1, - sym_format_specifier, + [109981] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110365] = 5, - ACTIONS(3927), 1, - anon_sym_case, - ACTIONS(3956), 1, - sym__dedent, - STATE(2147), 1, - aux_sym__match_block_repeat1, - STATE(2534), 1, - sym_case_clause, + ACTIONS(3700), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [109992] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110382] = 4, - ACTIONS(3218), 1, + ACTIONS(3776), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110003] = 4, + ACTIONS(3878), 1, + anon_sym_COMMA, + STATE(2225), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3958), 2, + ACTIONS(3902), 2, sym__newline, anon_sym_SEMI, - [110397] = 2, + [110018] = 5, + ACTIONS(3894), 1, + anon_sym_as, + ACTIONS(3904), 1, + anon_sym_RPAREN, + ACTIONS(3906), 1, + anon_sym_COMMA, + STATE(2255), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110408] = 5, - ACTIONS(3960), 1, - anon_sym_case, - ACTIONS(3963), 1, - sym__dedent, - STATE(2147), 1, - aux_sym__match_block_repeat1, - STATE(2534), 1, - sym_case_clause, + [110035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110425] = 5, - ACTIONS(3965), 1, + ACTIONS(3782), 4, anon_sym_RPAREN, - ACTIONS(3967), 1, anon_sym_COMMA, - ACTIONS(3969), 1, anon_sym_as, - STATE(2469), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [110046] = 5, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(3908), 1, + anon_sym_RBRACE, + ACTIONS(3910), 1, + sym_type_conversion, + STATE(2768), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110442] = 5, - ACTIONS(3927), 1, - anon_sym_case, - ACTIONS(3971), 1, - sym__dedent, - STATE(2134), 1, - aux_sym__match_block_repeat1, - STATE(2534), 1, - sym_case_clause, + [110063] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110459] = 5, - ACTIONS(3973), 1, + ACTIONS(3708), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3975), 1, - anon_sym_as, - ACTIONS(3977), 1, - anon_sym_RBRACK, - STATE(2468), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110476] = 5, - ACTIONS(3969), 1, anon_sym_as, - ACTIONS(3979), 1, - anon_sym_RPAREN, - ACTIONS(3981), 1, + anon_sym_PIPE, + [110074] = 5, + ACTIONS(3664), 1, anon_sym_COMMA, - STATE(2433), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3792), 1, + anon_sym_COLON, + ACTIONS(3796), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110493] = 3, - ACTIONS(3651), 1, - anon_sym_as, + [110091] = 4, + ACTIONS(3914), 1, + anon_sym_COMMA, + STATE(2150), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3983), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [110506] = 2, + ACTIONS(3912), 2, + sym__newline, + anon_sym_SEMI, + [110106] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 4, + ACTIONS(3788), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [110117] = 5, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3792), 1, anon_sym_COLON, - [110517] = 4, - ACTIONS(3987), 1, - anon_sym_COMMA, - STATE(2154), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(3916), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3983), 2, - anon_sym_if, - anon_sym_COLON, - [110532] = 3, + [110134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3990), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [110545] = 5, - ACTIONS(3817), 1, + ACTIONS(3698), 4, anon_sym_RPAREN, - ACTIONS(3992), 1, anon_sym_COMMA, - ACTIONS(3994), 1, anon_sym_as, - STATE(2389), 1, - aux_sym__import_list_repeat1, + anon_sym_PIPE, + [110145] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110562] = 5, - ACTIONS(3969), 1, + ACTIONS(3800), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3996), 1, - anon_sym_RPAREN, - ACTIONS(3998), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [110156] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3802), 4, anon_sym_COMMA, - STATE(2420), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110167] = 4, + ACTIONS(3920), 1, + anon_sym_COMMA, + STATE(2134), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110579] = 4, - ACTIONS(4002), 1, - anon_sym_COLON, - ACTIONS(4004), 1, - anon_sym_EQ, + ACTIONS(3918), 2, + sym__newline, + anon_sym_SEMI, + [110182] = 3, + ACTIONS(3839), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_RPAREN, + ACTIONS(3923), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [110594] = 5, - ACTIONS(3975), 1, - anon_sym_as, - ACTIONS(4006), 1, + [110195] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(4008), 1, - anon_sym_RBRACK, - STATE(2408), 1, - aux_sym_case_clause_repeat1, + STATE(2136), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110611] = 5, - ACTIONS(3969), 1, - anon_sym_as, - ACTIONS(4010), 1, - anon_sym_RPAREN, - ACTIONS(4012), 1, + ACTIONS(3925), 2, + sym__newline, + anon_sym_SEMI, + [110210] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3698), 4, anon_sym_COMMA, - STATE(2406), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110221] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110628] = 5, - ACTIONS(3687), 1, - anon_sym_RPAREN, - ACTIONS(3936), 1, - sym_identifier, - STATE(2371), 1, - sym_dotted_name, - STATE(2561), 1, - sym_aliased_import, + ACTIONS(3700), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110645] = 5, - ACTIONS(3687), 1, + ACTIONS(3704), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110243] = 5, + ACTIONS(3702), 1, anon_sym_RPAREN, - ACTIONS(3936), 1, + ACTIONS(3930), 1, sym_identifier, - STATE(2371), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2599), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110662] = 5, - ACTIONS(3779), 1, - anon_sym_RPAREN, - ACTIONS(3936), 1, - sym_identifier, - STATE(2371), 1, - sym_dotted_name, - STATE(2561), 1, - sym_aliased_import, + [110260] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110679] = 2, + ACTIONS(3706), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, - anon_sym_RPAREN, + ACTIONS(3708), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110690] = 2, + anon_sym_RBRACE, + [110282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 4, + ACTIONS(3716), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110701] = 2, + [110293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3866), 4, - anon_sym_RPAREN, + ACTIONS(3716), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110712] = 2, + anon_sym_RBRACE, + [110304] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3735), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110723] = 2, + [110315] = 5, + ACTIONS(3894), 1, + anon_sym_as, + ACTIONS(3932), 1, + anon_sym_RPAREN, + ACTIONS(3934), 1, + anon_sym_COMMA, + STATE(2439), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3841), 4, + [110332] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3735), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110734] = 2, + [110343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3737), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110745] = 2, + [110354] = 4, + ACTIONS(3837), 1, + anon_sym_COMMA, + STATE(2128), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3835), 2, + sym__newline, + anon_sym_SEMI, + [110369] = 4, + ACTIONS(3938), 1, + anon_sym_COMMA, + STATE(2150), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3936), 2, + sym__newline, + anon_sym_SEMI, + [110384] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, + ACTIONS(3742), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110756] = 2, + [110395] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, + ACTIONS(3744), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110767] = 2, + [110406] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110778] = 2, + [110417] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(3748), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110789] = 2, + [110428] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3750), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110800] = 2, + [110439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3752), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110811] = 5, - ACTIONS(3969), 1, - anon_sym_as, - ACTIONS(4014), 1, - anon_sym_RPAREN, - ACTIONS(4016), 1, - anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, + [110450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110828] = 5, - ACTIONS(3975), 1, - anon_sym_as, - ACTIONS(4018), 1, + ACTIONS(3768), 4, anon_sym_COMMA, - ACTIONS(4020), 1, - anon_sym_RBRACK, - STATE(2311), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110461] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110845] = 2, + ACTIONS(3770), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110472] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, - anon_sym_RPAREN, + ACTIONS(3772), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110856] = 2, + anon_sym_RBRACE, + [110483] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3774), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110867] = 2, + [110494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, - anon_sym_RPAREN, + ACTIONS(3776), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110878] = 2, + anon_sym_RBRACE, + [110505] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 4, + ACTIONS(3782), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110889] = 5, - ACTIONS(3969), 1, - anon_sym_as, - ACTIONS(4022), 1, + [110516] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3737), 4, anon_sym_RPAREN, - ACTIONS(4024), 1, anon_sym_COMMA, - STATE(2322), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110527] = 5, + ACTIONS(3941), 1, + anon_sym_case, + ACTIONS(3943), 1, + sym__dedent, + STATE(2182), 1, + aux_sym__match_block_repeat1, + STATE(2589), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110906] = 2, + [110544] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3775), 4, + ACTIONS(3742), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110917] = 2, + [110555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3771), 4, + ACTIONS(3744), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110928] = 2, + [110566] = 5, + ACTIONS(3835), 1, + anon_sym_RPAREN, + ACTIONS(3945), 1, + anon_sym_COMMA, + ACTIONS(3947), 1, + anon_sym_as, + STATE(2296), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110583] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3746), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110939] = 2, + [110594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3756), 4, + ACTIONS(3748), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110950] = 2, + [110605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + ACTIONS(3788), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110961] = 2, + [110616] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3798), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110972] = 2, + [110627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, + ACTIONS(3800), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110983] = 2, + [110638] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 4, + ACTIONS(3788), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110994] = 2, + [110649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + ACTIONS(3798), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111005] = 2, + [110660] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, + ACTIONS(3800), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111016] = 2, + [110671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 4, + ACTIONS(3802), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111027] = 2, + [110682] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, + ACTIONS(3802), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111038] = 2, + [110693] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110704] = 4, + ACTIONS(3878), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3951), 2, + sym__newline, + anon_sym_SEMI, + [110719] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, + ACTIONS(3750), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111049] = 2, + [110730] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3752), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111060] = 2, + [110741] = 5, + ACTIONS(3941), 1, + anon_sym_case, + ACTIONS(3953), 1, + sym__dedent, + STATE(2217), 1, + aux_sym__match_block_repeat1, + STATE(2589), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, - anon_sym_COMMA, + [110758] = 5, + ACTIONS(3894), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111071] = 5, - ACTIONS(3975), 1, + ACTIONS(3955), 1, + anon_sym_RPAREN, + ACTIONS(3957), 1, + anon_sym_COMMA, + STATE(2402), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110775] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(4026), 1, + ACTIONS(3959), 1, anon_sym_COMMA, - ACTIONS(4028), 1, + ACTIONS(3961), 1, anon_sym_RBRACK, - STATE(2309), 1, + STATE(2404), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111088] = 2, + [110792] = 4, + ACTIONS(3965), 1, + anon_sym_COMMA, + STATE(2136), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 2, + sym__newline, + anon_sym_SEMI, + [110807] = 4, + ACTIONS(3969), 1, + anon_sym_COMMA, + STATE(2197), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, + sym__newline, + anon_sym_SEMI, + [110822] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3866), 4, + ACTIONS(3971), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111099] = 5, - ACTIONS(3969), 1, + anon_sym_if, + anon_sym_COLON, + [110833] = 5, + ACTIONS(3894), 1, anon_sym_as, - ACTIONS(4030), 1, + ACTIONS(3973), 1, anon_sym_RPAREN, - ACTIONS(4032), 1, + ACTIONS(3975), 1, anon_sym_COMMA, - STATE(2307), 1, + STATE(2418), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111116] = 5, - ACTIONS(3969), 1, + [110850] = 4, + ACTIONS(3228), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3977), 2, + sym__newline, + anon_sym_SEMI, + [110865] = 4, + ACTIONS(3979), 1, + anon_sym_COMMA, + STATE(2150), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3912), 2, + sym__newline, + anon_sym_SEMI, + [110880] = 5, + ACTIONS(3894), 1, anon_sym_as, - ACTIONS(4034), 1, + ACTIONS(3981), 1, anon_sym_RPAREN, - ACTIONS(4036), 1, + ACTIONS(3983), 1, anon_sym_COMMA, - STATE(2290), 1, + STATE(2244), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111133] = 2, + [110897] = 5, + ACTIONS(3894), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_RPAREN, + ACTIONS(3987), 1, + anon_sym_COMMA, + STATE(2422), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111144] = 2, + [110914] = 5, + ACTIONS(3786), 1, + anon_sym_RPAREN, + ACTIONS(3930), 1, + sym_identifier, + STATE(2417), 1, + sym_dotted_name, + STATE(2599), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + [110931] = 5, + ACTIONS(3786), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3930), 1, + sym_identifier, + STATE(2417), 1, + sym_dotted_name, + STATE(2599), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110948] = 5, + ACTIONS(3898), 1, anon_sym_as, - anon_sym_PIPE, - [111155] = 2, + ACTIONS(3989), 1, + anon_sym_COMMA, + ACTIONS(3991), 1, + anon_sym_RBRACK, + STATE(2246), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3771), 4, - anon_sym_RPAREN, + [110965] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3698), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111166] = 2, + [110976] = 4, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(2136), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3775), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3993), 2, + sym__newline, + anon_sym_SEMI, + [110991] = 5, + ACTIONS(3898), 1, anon_sym_as, - anon_sym_PIPE, - [111177] = 2, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RBRACK, + STATE(2496), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 4, - anon_sym_RPAREN, + [111008] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3700), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111188] = 2, + [111019] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, - anon_sym_RPAREN, + ACTIONS(3704), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111199] = 2, + [111030] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3841), 4, + ACTIONS(3706), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111210] = 2, + [111041] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3520), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [111052] = 5, + ACTIONS(3941), 1, + anon_sym_case, + ACTIONS(4001), 1, + sym__dedent, + STATE(2217), 1, + aux_sym__match_block_repeat1, + STATE(2589), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3708), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111221] = 2, + [111080] = 4, + ACTIONS(4005), 1, + anon_sym_DOT, + STATE(2206), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4003), 2, + anon_sym_import, + sym_identifier, + [111095] = 4, + ACTIONS(4009), 1, + anon_sym_DOT, + STATE(2206), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4007), 2, + anon_sym_import, + sym_identifier, + [111110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, + ACTIONS(3716), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111232] = 2, + [111121] = 5, + ACTIONS(3930), 1, + sym_identifier, + STATE(2167), 1, + sym_dotted_name, + STATE(2356), 1, + sym_aliased_import, + STATE(2610), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, + ACTIONS(3704), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111243] = 2, + [111149] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3706), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111254] = 2, + [111160] = 5, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_RBRACE, + ACTIONS(4014), 1, + sym_type_conversion, + STATE(2762), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111177] = 5, + ACTIONS(3930), 1, + sym_identifier, + STATE(2167), 1, + sym_dotted_name, + STATE(2356), 1, + sym_aliased_import, + STATE(2701), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111194] = 4, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + [111209] = 4, + ACTIONS(4018), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4021), 2, + anon_sym_if, + anon_sym_COLON, + [111224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, + ACTIONS(3737), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111265] = 2, + [111235] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(3742), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111276] = 2, + [111246] = 5, + ACTIONS(4023), 1, + anon_sym_case, + ACTIONS(4026), 1, + sym__dedent, + STATE(2217), 1, + aux_sym__match_block_repeat1, + STATE(2589), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111263] = 4, + ACTIONS(3228), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4028), 2, + sym__newline, + anon_sym_SEMI, + [111278] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3744), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111287] = 2, + [111289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111298] = 2, + [111300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 4, + ACTIONS(3748), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111309] = 2, + [111311] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3775), 4, + ACTIONS(3750), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111320] = 2, + [111322] = 5, + ACTIONS(3941), 1, + anon_sym_case, + ACTIONS(4030), 1, + sym__dedent, + STATE(2203), 1, + aux_sym__match_block_repeat1, + STATE(2589), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3771), 4, + [111339] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3752), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111331] = 2, + [111350] = 4, + ACTIONS(3878), 1, + anon_sym_COMMA, + STATE(2134), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4032), 2, + sym__newline, + anon_sym_SEMI, + [111365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3768), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111342] = 2, + [111376] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3756), 4, + ACTIONS(3770), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111353] = 2, + [111387] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, - anon_sym_RPAREN, + ACTIONS(3772), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111364] = 2, + [111398] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, - anon_sym_RPAREN, + ACTIONS(3774), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111375] = 2, + [111409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, - anon_sym_RPAREN, + ACTIONS(3776), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111386] = 2, + [111420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3782), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111397] = 2, + [111431] = 5, + ACTIONS(3435), 1, + sym_identifier, + STATE(2077), 1, + sym_dotted_name, + STATE(2149), 1, + sym_aliased_import, + STATE(2571), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111448] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_parameters, + STATE(2591), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111465] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2564), 1, + sym_parameters, + STATE(2594), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, + ACTIONS(3768), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111408] = 2, + [111493] = 5, + ACTIONS(1561), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2561), 1, + sym_parameters, + STATE(2565), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 4, + [111510] = 5, + ACTIONS(3894), 1, + anon_sym_as, + ACTIONS(4034), 1, + anon_sym_RPAREN, + ACTIONS(4036), 1, anon_sym_COMMA, + STATE(2276), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111527] = 3, + ACTIONS(3514), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4021), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [111540] = 4, + ACTIONS(1293), 1, + anon_sym_COLON, + ACTIONS(4038), 1, + anon_sym_COMMA, + STATE(2478), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111554] = 4, + ACTIONS(3720), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [111419] = 2, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, - anon_sym_RPAREN, + [111568] = 4, + ACTIONS(4043), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111430] = 2, + ACTIONS(4045), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3756), 4, - anon_sym_RPAREN, + [111582] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111441] = 2, + ACTIONS(3066), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + [111596] = 4, + ACTIONS(4047), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111452] = 2, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(2250), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, + [111610] = 4, + ACTIONS(2630), 1, + anon_sym_RPAREN, + ACTIONS(4051), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111463] = 2, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, - anon_sym_RPAREN, + [111624] = 4, + ACTIONS(1341), 1, + anon_sym_RBRACE, + ACTIONS(4053), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111474] = 2, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, - anon_sym_COMMA, - anon_sym_as, + [111638] = 4, + ACTIONS(2632), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [111485] = 2, + ACTIONS(4055), 1, + anon_sym_COMMA, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3841), 4, + [111652] = 4, + ACTIONS(2672), 1, anon_sym_RPAREN, + ACTIONS(4057), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111496] = 2, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, - anon_sym_RPAREN, + [111666] = 4, + ACTIONS(2674), 1, + anon_sym_RBRACK, + ACTIONS(4059), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111507] = 2, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + [111680] = 4, + ACTIONS(1447), 1, + anon_sym_COLON, + ACTIONS(4061), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111518] = 2, + STATE(2275), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3866), 4, + [111694] = 4, + ACTIONS(4063), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111529] = 2, + ACTIONS(4065), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3682), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111540] = 4, - ACTIONS(4038), 1, - anon_sym_RPAREN, - ACTIONS(4040), 1, + [111708] = 4, + ACTIONS(4067), 1, anon_sym_COMMA, - STATE(2376), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4069), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111554] = 2, + [111722] = 4, + ACTIONS(4071), 1, + anon_sym_COMMA, + ACTIONS(4073), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [111564] = 4, - ACTIONS(4042), 1, + [111736] = 4, + ACTIONS(4075), 1, anon_sym_COMMA, - ACTIONS(4044), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + ACTIONS(4077), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111578] = 4, - ACTIONS(4042), 1, + [111750] = 4, + ACTIONS(1291), 1, + anon_sym_RPAREN, + ACTIONS(4079), 1, anon_sym_COMMA, - ACTIONS(4046), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + STATE(2266), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111592] = 4, - ACTIONS(4048), 1, - anon_sym_SEMI, - ACTIONS(4050), 1, - sym__newline, - STATE(2272), 1, - aux_sym__simple_statements_repeat1, + [111764] = 4, + ACTIONS(2680), 1, + anon_sym_RPAREN, + ACTIONS(4081), 1, + anon_sym_COMMA, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111606] = 4, - ACTIONS(3334), 1, + [111778] = 4, + ACTIONS(4083), 1, anon_sym_COMMA, - ACTIONS(3336), 1, + ACTIONS(4086), 1, anon_sym_RBRACE, - STATE(2259), 1, + STATE(2256), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111620] = 2, + [111792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, + ACTIONS(3520), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [111630] = 4, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(4052), 1, - anon_sym_import, - STATE(2712), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111644] = 4, - ACTIONS(2974), 1, - anon_sym_RPAREN, - ACTIONS(3048), 1, + anon_sym_RBRACE, + [111802] = 4, + ACTIONS(4088), 1, anon_sym_COMMA, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4091), 1, + anon_sym_COLON, + STATE(2258), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111658] = 4, - ACTIONS(3499), 1, - anon_sym_RBRACE, - ACTIONS(4054), 1, - anon_sym_COMMA, - STATE(2248), 1, - aux_sym__collection_elements_repeat1, + [111816] = 3, + ACTIONS(1682), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111672] = 4, - ACTIONS(617), 1, - sym__newline, - ACTIONS(4057), 1, + ACTIONS(1684), 2, + anon_sym_except_STAR, + anon_sym_finally, + [111828] = 4, + ACTIONS(4093), 1, anon_sym_SEMI, - STATE(2360), 1, + ACTIONS(4095), 1, + sym__newline, + STATE(2268), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111686] = 4, - ACTIONS(4059), 1, - anon_sym_RPAREN, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2316), 1, - aux_sym__patterns_repeat1, + [111842] = 3, + ACTIONS(3894), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111700] = 4, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3113), 1, + ACTIONS(4021), 2, anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COMMA, + [111854] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4097), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111714] = 3, - ACTIONS(3190), 1, - anon_sym_from, + [111868] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3188), 2, + ACTIONS(3918), 3, sym__newline, anon_sym_SEMI, - [111726] = 4, - ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + [111878] = 4, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111740] = 4, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(4065), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + [111892] = 3, + ACTIONS(3541), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [111754] = 4, - ACTIONS(4042), 1, + ACTIONS(3543), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111904] = 4, + ACTIONS(3490), 1, + anon_sym_RPAREN, + ACTIONS(4099), 1, anon_sym_COMMA, - ACTIONS(4067), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + STATE(2266), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111768] = 4, - ACTIONS(4069), 1, + [111918] = 4, + ACTIONS(3393), 1, anon_sym_COMMA, - ACTIONS(4071), 1, - anon_sym_COLON, - STATE(2348), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3395), 1, + anon_sym_RBRACE, + STATE(2271), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111782] = 4, - ACTIONS(643), 1, + [111932] = 4, + ACTIONS(629), 1, sym__newline, - ACTIONS(4073), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - STATE(2360), 1, + STATE(2400), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111796] = 4, - ACTIONS(1331), 1, - anon_sym_RBRACE, - ACTIONS(4075), 1, + [111946] = 4, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4106), 1, + anon_sym_COLON, + STATE(2249), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111810] = 4, - ACTIONS(1311), 1, - anon_sym_RBRACE, - ACTIONS(4077), 1, + [111960] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111824] = 4, - ACTIONS(959), 1, + ACTIONS(4110), 1, anon_sym_in, - ACTIONS(4079), 1, - anon_sym_COMMA, - STATE(2459), 1, + STATE(2346), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111838] = 3, - ACTIONS(4083), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4081), 2, - sym__newline, - anon_sym_SEMI, - [111850] = 4, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3328), 1, + [111974] = 4, + ACTIONS(1307), 1, anon_sym_RBRACE, - STATE(2354), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111864] = 4, - ACTIONS(3196), 1, - anon_sym_RPAREN, - ACTIONS(4085), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - STATE(2263), 1, - aux_sym_assert_statement_repeat1, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111878] = 3, - ACTIONS(4088), 1, - anon_sym_EQ, + [111988] = 4, + ACTIONS(3729), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_COLON, + STATE(2770), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_COMMA, - anon_sym_COLON, - [111890] = 4, - ACTIONS(3050), 1, + [112002] = 4, + ACTIONS(3062), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(3064), 1, anon_sym_COMMA, - STATE(2276), 1, + STATE(2282), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111904] = 4, - ACTIONS(4090), 1, + [112016] = 4, + ACTIONS(4116), 1, anon_sym_RPAREN, - ACTIONS(4092), 1, + ACTIONS(4118), 1, anon_sym_COMMA, - STATE(2278), 1, + STATE(2284), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111918] = 4, - ACTIONS(2871), 1, - anon_sym_RBRACK, - ACTIONS(4094), 1, + [112030] = 4, + ACTIONS(4120), 1, anon_sym_COMMA, - STATE(2267), 1, - aux_sym__patterns_repeat1, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(2275), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111932] = 4, - ACTIONS(4097), 1, + [112044] = 4, + ACTIONS(2640), 1, + anon_sym_RPAREN, + ACTIONS(4125), 1, anon_sym_COMMA, - ACTIONS(4099), 1, - anon_sym_COLON, - STATE(2356), 1, - aux_sym__parameters_repeat1, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111946] = 4, - ACTIONS(3322), 1, + [112058] = 4, + ACTIONS(3246), 1, anon_sym_COMMA, - ACTIONS(3324), 1, + ACTIONS(3248), 1, anon_sym_RBRACK, - STATE(2281), 1, + STATE(2287), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111960] = 3, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_COMMA, - anon_sym_COLON, - [111972] = 4, - ACTIONS(1261), 1, - anon_sym_RPAREN, - ACTIONS(4101), 1, - anon_sym_COMMA, - STATE(2263), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111986] = 4, - ACTIONS(645), 1, - sym__newline, - ACTIONS(4103), 1, - anon_sym_SEMI, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, + [112072] = 3, + ACTIONS(3556), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112000] = 4, - ACTIONS(1269), 1, + ACTIONS(3558), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4105), 1, + [112084] = 4, + ACTIONS(3374), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3376), 1, + anon_sym_RBRACE, + STATE(2245), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112014] = 4, - ACTIONS(1239), 1, - anon_sym_RPAREN, - ACTIONS(4107), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + [112098] = 3, + ACTIONS(1698), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112028] = 4, - ACTIONS(2962), 1, - anon_sym_COMMA, - ACTIONS(2974), 1, - anon_sym_RBRACE, - STATE(2273), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + ACTIONS(1700), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112110] = 3, + ACTIONS(3648), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112042] = 4, - ACTIONS(1233), 1, + ACTIONS(3650), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112122] = 4, + ACTIONS(1201), 1, anon_sym_RPAREN, - ACTIONS(4109), 1, + ACTIONS(4127), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112056] = 4, - ACTIONS(4042), 1, + [112136] = 4, + ACTIONS(4129), 1, anon_sym_COMMA, - ACTIONS(4111), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + ACTIONS(4131), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112070] = 4, - ACTIONS(1235), 1, + [112150] = 4, + ACTIONS(1203), 1, anon_sym_RPAREN, - ACTIONS(4113), 1, + ACTIONS(4133), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112084] = 4, - ACTIONS(4042), 1, + [112164] = 4, + ACTIONS(2875), 1, + anon_sym_RBRACK, + ACTIONS(4135), 1, anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_in, - STATE(2260), 1, + STATE(2285), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112098] = 4, - ACTIONS(4117), 1, + [112178] = 4, + ACTIONS(4138), 1, anon_sym_COMMA, - ACTIONS(4119), 1, + ACTIONS(4140), 1, anon_sym_RBRACK, - STATE(2498), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112112] = 4, - ACTIONS(4121), 1, + [112192] = 4, + ACTIONS(4142), 1, anon_sym_COMMA, - ACTIONS(4123), 1, + ACTIONS(4144), 1, anon_sym_RBRACK, - STATE(2498), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112126] = 4, - ACTIONS(3046), 1, - anon_sym_RPAREN, - ACTIONS(3048), 1, - anon_sym_COMMA, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112140] = 4, - ACTIONS(1245), 1, - anon_sym_RPAREN, - ACTIONS(4125), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [112206] = 3, + ACTIONS(3566), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112154] = 4, - ACTIONS(3450), 1, + ACTIONS(3568), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112218] = 4, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(3452), 1, + ACTIONS(3366), 1, anon_sym_RBRACE, - STATE(2258), 1, + STATE(2421), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112168] = 4, - ACTIONS(993), 1, - anon_sym_RBRACK, - ACTIONS(4127), 1, - anon_sym_COMMA, - STATE(2484), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112182] = 4, - ACTIONS(4129), 1, - anon_sym_SEMI, - ACTIONS(4131), 1, - sym__newline, - STATE(2249), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112196] = 3, - ACTIONS(3975), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3983), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [112208] = 2, + [112232] = 4, + ACTIONS(3435), 1, + sym_identifier, + STATE(2135), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [112218] = 4, - ACTIONS(3983), 1, - anon_sym_RBRACK, - ACTIONS(4133), 1, - anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, + [112246] = 4, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(4146), 1, + anon_sym_RBRACE, + STATE(2603), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112232] = 4, - ACTIONS(2656), 1, + [112260] = 4, + ACTIONS(1996), 1, anon_sym_RPAREN, - ACTIONS(4136), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112246] = 4, - ACTIONS(3048), 1, + ACTIONS(4148), 1, anon_sym_COMMA, - ACTIONS(4138), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + STATE(2373), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(3728), 1, + [112274] = 4, + ACTIONS(3790), 1, anon_sym_DOT, - ACTIONS(3734), 1, + ACTIONS(3796), 1, anon_sym_PIPE, - ACTIONS(4140), 1, + ACTIONS(4150), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2458), 3, - sym__newline, + [112288] = 4, + ACTIONS(4152), 1, anon_sym_SEMI, - anon_sym_in, - [112284] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(4142), 1, - anon_sym_COLON, + ACTIONS(4154), 1, + sym__newline, + STATE(2308), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112298] = 4, - ACTIONS(1261), 1, - anon_sym_RBRACK, - ACTIONS(4144), 1, + [112302] = 4, + ACTIONS(3912), 1, + anon_sym_RPAREN, + ACTIONS(4156), 1, anon_sym_COMMA, - STATE(2296), 1, - aux_sym_assert_statement_repeat1, + STATE(2419), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112312] = 4, - ACTIONS(3196), 1, - anon_sym_RBRACK, - ACTIONS(4146), 1, + [112316] = 4, + ACTIONS(3912), 1, + anon_sym_RPAREN, + ACTIONS(4158), 1, anon_sym_COMMA, - STATE(2296), 1, - aux_sym_assert_statement_repeat1, + STATE(2419), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112326] = 3, - ACTIONS(3639), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112330] = 4, + ACTIONS(4160), 1, + anon_sym_COMMA, + ACTIONS(4162), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112338] = 2, + [112344] = 4, + ACTIONS(3022), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, + anon_sym_COMMA, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2445), 3, - sym__newline, + [112358] = 4, + ACTIONS(4164), 1, anon_sym_SEMI, - anon_sym_in, - [112348] = 4, - ACTIONS(4149), 1, - anon_sym_COMMA, - ACTIONS(4151), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4166), 1, + sym__newline, + STATE(2310), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112362] = 4, - ACTIONS(4153), 1, - anon_sym_COMMA, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(2312), 1, - aux_sym_dict_pattern_repeat1, + [112372] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112376] = 4, - ACTIONS(3983), 1, + ACTIONS(2445), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112382] = 4, + ACTIONS(1173), 1, anon_sym_RPAREN, - ACTIONS(4157), 1, + ACTIONS(4168), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112390] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(4160), 1, - anon_sym_COLON, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112404] = 2, + [112396] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 3, - anon_sym_RPAREN, + ACTIONS(3971), 3, anon_sym_COMMA, anon_sym_as, - [112414] = 4, - ACTIONS(3048), 1, + anon_sym_RBRACE, + [112406] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(4162), 1, + ACTIONS(3072), 1, anon_sym_RPAREN, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112428] = 3, - ACTIONS(3969), 1, - anon_sym_as, + [112420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3983), 2, - anon_sym_RPAREN, + ACTIONS(1630), 3, anon_sym_COMMA, - [112440] = 4, - ACTIONS(4164), 1, + anon_sym_COLON, + anon_sym_EQ, + [112430] = 4, + ACTIONS(3450), 1, anon_sym_COMMA, - ACTIONS(4166), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + STATE(2319), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112444] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(3923), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, [112454] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(4168), 1, + ACTIONS(3347), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3349), 1, + anon_sym_RBRACE, + STATE(2313), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112468] = 4, - ACTIONS(1269), 1, - anon_sym_RPAREN, + ACTIONS(627), 1, + sym__newline, ACTIONS(4170), 1, - anon_sym_COMMA, - STATE(2407), 1, - aux_sym__collection_elements_repeat1, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112482] = 4, - ACTIONS(2670), 1, - anon_sym_RBRACK, + ACTIONS(1187), 1, + anon_sym_RPAREN, ACTIONS(4172), 1, anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112496] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, + ACTIONS(633), 1, + sym__newline, ACTIONS(4174), 1, - anon_sym_COLON, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112510] = 4, - ACTIONS(2646), 1, + ACTIONS(1291), 1, anon_sym_RBRACK, ACTIONS(4176), 1, anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, + STATE(2428), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112524] = 4, - ACTIONS(4178), 1, - anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + [112524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112538] = 4, - ACTIONS(2634), 1, + ACTIONS(2880), 3, anon_sym_RPAREN, - ACTIONS(4182), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + anon_sym_EQ, + [112534] = 4, + ACTIONS(1319), 1, + anon_sym_RBRACE, + ACTIONS(4178), 1, + anon_sym_COMMA, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112552] = 4, - ACTIONS(4184), 1, + [112548] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4180), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112566] = 2, + [112562] = 4, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(4182), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, [112576] = 4, - ACTIONS(1866), 1, + ACTIONS(3078), 1, anon_sym_RPAREN, - ACTIONS(4188), 1, + ACTIONS(3080), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym__patterns_repeat1, + STATE(2324), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112590] = 4, - ACTIONS(4042), 1, + ACTIONS(4184), 1, + anon_sym_RPAREN, + ACTIONS(4186), 1, anon_sym_COMMA, - ACTIONS(4190), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + STATE(2326), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112604] = 4, - ACTIONS(4192), 1, + ACTIONS(3204), 1, + anon_sym_RPAREN, + ACTIONS(4188), 1, anon_sym_COMMA, - ACTIONS(4194), 1, - anon_sym_RBRACE, - STATE(2306), 1, - aux_sym_dict_pattern_repeat1, + STATE(2318), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112618] = 4, - ACTIONS(1261), 1, - anon_sym_COLON, - ACTIONS(4196), 1, + ACTIONS(1305), 1, + anon_sym_RBRACE, + ACTIONS(4191), 1, anon_sym_COMMA, - STATE(2320), 1, - aux_sym_assert_statement_repeat1, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [112632] = 4, - ACTIONS(3196), 1, - anon_sym_COLON, - ACTIONS(4198), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(2320), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3270), 1, + anon_sym_RBRACK, + STATE(2329), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112646] = 2, + [112646] = 4, + ACTIONS(1996), 1, + anon_sym_RBRACK, + ACTIONS(4193), 1, + anon_sym_COMMA, + STATE(2285), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [112656] = 4, - ACTIONS(2690), 1, - anon_sym_RPAREN, - ACTIONS(4201), 1, + [112660] = 4, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4197), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112670] = 3, - ACTIONS(3645), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3647), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112682] = 2, + [112674] = 4, + ACTIONS(3038), 1, + anon_sym_RPAREN, + ACTIONS(3040), 1, + anon_sym_COMMA, + STATE(2335), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 3, + [112688] = 4, + ACTIONS(1213), 1, anon_sym_RPAREN, + ACTIONS(4199), 1, anon_sym_COMMA, - anon_sym_as, - [112692] = 3, - ACTIONS(3511), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3513), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112704] = 3, - ACTIONS(3468), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112716] = 3, - ACTIONS(3462), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2438), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112728] = 4, + [112702] = 4, + ACTIONS(4201), 1, + anon_sym_RPAREN, ACTIONS(4203), 1, - sym__newline, - ACTIONS(4205), 1, - sym__indent, - STATE(776), 1, - sym__match_block, + anon_sym_COMMA, + STATE(2338), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112742] = 4, - ACTIONS(3936), 1, - sym_identifier, - STATE(2371), 1, - sym_dotted_name, - STATE(2561), 1, - sym_aliased_import, + [112716] = 4, + ACTIONS(1215), 1, + anon_sym_RPAREN, + ACTIONS(4205), 1, + anon_sym_COMMA, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112756] = 3, - ACTIONS(3606), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3608), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112768] = 3, - ACTIONS(3617), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3619), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112780] = 4, + [112730] = 4, ACTIONS(4207), 1, anon_sym_COMMA, ACTIONS(4209), 1, anon_sym_RBRACK, - STATE(2498), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112794] = 3, - ACTIONS(1718), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1716), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112806] = 4, + [112744] = 4, ACTIONS(4211), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(4213), 1, - sym__newline, - STATE(2355), 1, - aux_sym__simple_statements_repeat1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112820] = 4, + [112758] = 4, ACTIONS(4215), 1, anon_sym_COMMA, ACTIONS(4217), 1, anon_sym_RBRACK, - STATE(2498), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112834] = 4, - ACTIONS(4219), 1, - anon_sym_RPAREN, - ACTIONS(4221), 1, + [112772] = 4, + ACTIONS(3278), 1, anon_sym_COMMA, - STATE(2336), 1, - aux_sym__parameters_repeat1, + ACTIONS(3280), 1, + anon_sym_RBRACK, + STATE(2343), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112848] = 4, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4224), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + [112786] = 4, + ACTIONS(4219), 1, + sym__newline, + ACTIONS(4221), 1, + sym__indent, + STATE(804), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112862] = 4, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(4226), 1, + [112800] = 4, + ACTIONS(3684), 1, anon_sym_COLON, - STATE(2694), 1, - sym_argument_list, + ACTIONS(4223), 1, + anon_sym_RBRACE, + STATE(2653), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112814] = 4, + ACTIONS(3204), 1, + anon_sym_RBRACK, + ACTIONS(4225), 1, + anon_sym_COMMA, + STATE(2333), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112876] = 4, + [112828] = 4, + ACTIONS(617), 1, + sym__newline, ACTIONS(4228), 1, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112842] = 4, + ACTIONS(1175), 1, anon_sym_RPAREN, ACTIONS(4230), 1, anon_sym_COMMA, - STATE(2339), 1, - aux_sym_with_clause_repeat1, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112890] = 4, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, + [112856] = 4, + ACTIONS(3120), 1, anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3122), 1, + anon_sym_COMMA, + STATE(2479), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112904] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(4233), 1, - anon_sym_RBRACE, - STATE(2722), 1, - sym_format_specifier, + [112870] = 4, + ACTIONS(1439), 1, + anon_sym_RPAREN, + ACTIONS(4232), 1, + anon_sym_COMMA, + STATE(2468), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112918] = 4, - ACTIONS(4235), 1, - sym__newline, - ACTIONS(4237), 1, - sym__indent, - STATE(836), 1, - sym__match_block, + [112884] = 4, + ACTIONS(1177), 1, + anon_sym_RPAREN, + ACTIONS(4234), 1, + anon_sym_COMMA, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112932] = 4, - ACTIONS(4203), 1, - sym__newline, - ACTIONS(4205), 1, - sym__indent, - STATE(754), 1, - sym__match_block, + [112898] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112946] = 4, - ACTIONS(3499), 1, - anon_sym_RBRACK, - ACTIONS(4239), 1, + ACTIONS(4236), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2344), 1, - aux_sym__collection_elements_repeat1, + [112908] = 4, + ACTIONS(4238), 1, + anon_sym_RPAREN, + ACTIONS(4240), 1, + anon_sym_COMMA, + STATE(2292), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112960] = 4, + [112922] = 4, ACTIONS(4242), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(4244), 1, - anon_sym_COLON, - STATE(2421), 1, - aux_sym_match_statement_repeat1, + sym__newline, + STATE(2350), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112974] = 4, - ACTIONS(4042), 1, - anon_sym_COMMA, + [112936] = 4, ACTIONS(4246), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + anon_sym_COMMA, + ACTIONS(4248), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112988] = 4, - ACTIONS(4248), 1, - anon_sym_RPAREN, + [112950] = 4, ACTIONS(4250), 1, anon_sym_COMMA, - STATE(2423), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4252), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113002] = 4, - ACTIONS(1441), 1, - anon_sym_COLON, - ACTIONS(4252), 1, + [112964] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - STATE(2426), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113016] = 4, - ACTIONS(3736), 1, - anon_sym_LPAREN, + [112978] = 4, + ACTIONS(2965), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, + anon_sym_COMMA, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112992] = 4, + ACTIONS(959), 1, + anon_sym_in, ACTIONS(4254), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_argument_list, + anon_sym_COMMA, + STATE(2424), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113030] = 4, - ACTIONS(3429), 1, + [113006] = 4, + ACTIONS(3382), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3384), 1, anon_sym_RBRACE, - STATE(2363), 1, + STATE(2352), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113044] = 4, + [113020] = 4, + ACTIONS(1291), 1, + anon_sym_RBRACE, ACTIONS(4256), 1, anon_sym_COMMA, - ACTIONS(4258), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + STATE(2427), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113058] = 4, - ACTIONS(4260), 1, - anon_sym_COMMA, - ACTIONS(4262), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + [113034] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113072] = 4, - ACTIONS(3283), 1, + ACTIONS(3520), 3, anon_sym_COMMA, - ACTIONS(3285), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2351), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113086] = 4, - ACTIONS(1307), 1, - anon_sym_RBRACE, - ACTIONS(4264), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113100] = 4, - ACTIONS(627), 1, + [113044] = 4, + ACTIONS(639), 1, sym__newline, - ACTIONS(4266), 1, + ACTIONS(4258), 1, anon_sym_SEMI, - STATE(2360), 1, + STATE(2400), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113114] = 4, - ACTIONS(2951), 1, - anon_sym_COLON, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2440), 1, - aux_sym__parameters_repeat1, + [113058] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113128] = 4, - ACTIONS(4270), 1, + ACTIONS(1630), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113142] = 4, - ACTIONS(4274), 1, + anon_sym_EQ, + [113068] = 4, + ACTIONS(1327), 1, + anon_sym_RBRACE, + ACTIONS(4260), 1, anon_sym_COMMA, - ACTIONS(4276), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113156] = 4, - ACTIONS(3223), 1, + [113082] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RBRACK, - STATE(2357), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113170] = 4, - ACTIONS(4278), 1, - anon_sym_SEMI, - ACTIONS(4281), 1, - sym__newline, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113184] = 4, - ACTIONS(3024), 1, + [113096] = 4, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(3026), 1, + ACTIONS(3093), 1, anon_sym_COMMA, - STATE(2443), 1, + STATE(2361), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113198] = 4, - ACTIONS(4283), 1, + [113110] = 4, + ACTIONS(4262), 1, anon_sym_RPAREN, - ACTIONS(4285), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(2447), 1, + STATE(2362), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113212] = 4, - ACTIONS(1325), 1, - anon_sym_RBRACE, - ACTIONS(4287), 1, + [113124] = 4, + ACTIONS(3835), 1, + anon_sym_RPAREN, + ACTIONS(3945), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + STATE(2295), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113226] = 4, - ACTIONS(3259), 1, + [113138] = 4, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(3261), 1, - anon_sym_RBRACK, - STATE(2451), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113240] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(4289), 1, + ACTIONS(2965), 1, anon_sym_RBRACE, - STATE(2703), 1, - sym_format_specifier, + STATE(2348), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113254] = 4, - ACTIONS(3931), 1, - anon_sym_RPAREN, - ACTIONS(4291), 1, + [113152] = 4, + ACTIONS(3274), 1, anon_sym_COMMA, - STATE(2366), 1, - aux_sym__import_list_repeat1, + ACTIONS(3276), 1, + anon_sym_RBRACK, + STATE(2365), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113268] = 4, - ACTIONS(4294), 1, - anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + [113166] = 3, + ACTIONS(3177), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113282] = 4, - ACTIONS(4298), 1, - anon_sym_COMMA, - ACTIONS(4300), 1, + ACTIONS(3175), 2, + sym__newline, + anon_sym_SEMI, + [113178] = 4, + ACTIONS(985), 1, anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(4266), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113296] = 4, - ACTIONS(3036), 1, + [113192] = 4, + ACTIONS(1225), 1, anon_sym_RPAREN, - ACTIONS(3038), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - STATE(2380), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113310] = 4, - ACTIONS(4302), 1, + [113206] = 4, + ACTIONS(1227), 1, anon_sym_RPAREN, - ACTIONS(4304), 1, + ACTIONS(4270), 1, anon_sym_COMMA, - STATE(2382), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113324] = 3, - ACTIONS(3994), 1, - anon_sym_as, + [113220] = 4, + ACTIONS(2714), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_import, + STATE(2732), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, - anon_sym_RPAREN, + [113234] = 4, + ACTIONS(4274), 1, anon_sym_COMMA, - [113336] = 2, + ACTIONS(4276), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113346] = 4, - ACTIONS(3304), 1, + [113248] = 4, + ACTIONS(4278), 1, anon_sym_COMMA, - ACTIONS(3306), 1, + ACTIONS(4280), 1, anon_sym_RBRACK, - STATE(2385), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113360] = 3, - ACTIONS(3576), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113262] = 4, + ACTIONS(4219), 1, + sym__newline, + ACTIONS(4221), 1, + sym__indent, + STATE(730), 1, + sym__match_block, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3578), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113372] = 4, - ACTIONS(2871), 1, + [113276] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3971), 3, anon_sym_RPAREN, - ACTIONS(4306), 1, anon_sym_COMMA, - STATE(2375), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + [113286] = 4, + ACTIONS(2951), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + anon_sym_COMMA, + STATE(2486), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113386] = 4, - ACTIONS(1241), 1, + [113300] = 4, + ACTIONS(4284), 1, + anon_sym_COMMA, + ACTIONS(4287), 1, + anon_sym_COLON, + STATE(2369), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113314] = 4, + ACTIONS(4289), 1, anon_sym_RPAREN, - ACTIONS(4309), 1, + ACTIONS(4291), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2383), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113400] = 3, - ACTIONS(1722), 1, + [113328] = 3, + ACTIONS(1702), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, + ACTIONS(1704), 2, anon_sym_except_STAR, anon_sym_finally, - [113412] = 4, - ACTIONS(2951), 1, - anon_sym_RPAREN, - ACTIONS(4311), 1, + [113340] = 4, + ACTIONS(1023), 1, + anon_sym_RBRACK, + ACTIONS(4293), 1, anon_sym_COMMA, - STATE(2336), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113426] = 2, + STATE(2240), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [113436] = 4, - ACTIONS(1219), 1, + [113354] = 4, + ACTIONS(2875), 1, anon_sym_RPAREN, - ACTIONS(4313), 1, + ACTIONS(4295), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + STATE(2373), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113450] = 4, - ACTIONS(1243), 1, - anon_sym_RPAREN, - ACTIONS(4315), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + [113368] = 4, + ACTIONS(4298), 1, + anon_sym_SEMI, + ACTIONS(4300), 1, + sym__newline, + STATE(2498), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113464] = 4, - ACTIONS(1247), 1, + [113382] = 4, + ACTIONS(4021), 1, anon_sym_RPAREN, - ACTIONS(4317), 1, + ACTIONS(4302), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113478] = 4, - ACTIONS(1866), 1, - anon_sym_RBRACK, - ACTIONS(4319), 1, - anon_sym_COMMA, - STATE(2267), 1, - aux_sym__patterns_repeat1, + [113396] = 4, + ACTIONS(4305), 1, + anon_sym_SEMI, + ACTIONS(4307), 1, + sym__newline, + STATE(2431), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113492] = 4, - ACTIONS(4321), 1, + [113410] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(4323), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(3099), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113506] = 4, - ACTIONS(4325), 1, - anon_sym_COMMA, - ACTIONS(4327), 1, + [113424] = 4, + ACTIONS(2965), 1, anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(3004), 1, + anon_sym_COMMA, + STATE(2311), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113520] = 2, + [113438] = 4, + ACTIONS(3024), 1, + anon_sym_COMMA, + ACTIONS(4309), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [113530] = 4, - ACTIONS(985), 1, - anon_sym_RBRACK, - ACTIONS(4329), 1, + [113452] = 4, + ACTIONS(3330), 1, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(2386), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113544] = 4, - ACTIONS(1269), 1, - anon_sym_RBRACK, - ACTIONS(4331), 1, + [113466] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - STATE(2344), 1, + ACTIONS(4311), 1, + anon_sym_RPAREN, + STATE(2254), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113558] = 4, - ACTIONS(3896), 1, - anon_sym_RPAREN, - ACTIONS(4333), 1, + [113480] = 4, + ACTIONS(4238), 1, + anon_sym_RBRACK, + ACTIONS(4313), 1, anon_sym_COMMA, - STATE(2366), 1, - aux_sym__import_list_repeat1, + STATE(2321), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113572] = 4, - ACTIONS(3896), 1, + [113494] = 4, + ACTIONS(1155), 1, anon_sym_RPAREN, - ACTIONS(4335), 1, + ACTIONS(4315), 1, anon_sym_COMMA, - STATE(2366), 1, - aux_sym__import_list_repeat1, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113586] = 4, - ACTIONS(2974), 1, + [113508] = 4, + ACTIONS(997), 1, anon_sym_RBRACK, - ACTIONS(3069), 1, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(2388), 1, - aux_sym__collection_elements_repeat1, + STATE(2240), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113600] = 3, - ACTIONS(1700), 1, - anon_sym_except, + [113522] = 3, + ACTIONS(4321), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113612] = 2, + ACTIONS(4319), 2, + sym__newline, + anon_sym_SEMI, + [113534] = 4, + ACTIONS(1337), 1, + anon_sym_RBRACE, + ACTIONS(4323), 1, + anon_sym_COMMA, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4337), 3, + [113548] = 4, + ACTIONS(4219), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113622] = 4, + ACTIONS(4221), 1, + sym__indent, + STATE(735), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113562] = 4, ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3103), 1, anon_sym_COMMA, - STATE(2274), 1, + STATE(2394), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113636] = 4, - ACTIONS(3291), 1, + [113576] = 4, + ACTIONS(4325), 1, + anon_sym_RPAREN, + ACTIONS(4327), 1, anon_sym_COMMA, - ACTIONS(3293), 1, - anon_sym_RBRACK, - STATE(2367), 1, - aux_sym_subscript_repeat1, + STATE(2395), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113650] = 3, - ACTIONS(4339), 1, - anon_sym_COLON, + [113590] = 4, + ACTIONS(4329), 1, + sym__newline, + ACTIONS(4331), 1, + sym__indent, + STATE(802), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_RPAREN, + [113604] = 4, + ACTIONS(3282), 1, anon_sym_COMMA, - [113662] = 4, - ACTIONS(4341), 1, - anon_sym_RPAREN, - ACTIONS(4343), 1, + ACTIONS(3284), 1, + anon_sym_RBRACK, + STATE(2398), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113618] = 4, + ACTIONS(2951), 1, + anon_sym_COLON, + ACTIONS(4333), 1, anon_sym_COMMA, - STATE(2283), 1, - aux_sym_argument_list_repeat1, + STATE(2258), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113676] = 4, - ACTIONS(4345), 1, + [113632] = 4, + ACTIONS(4335), 1, anon_sym_COMMA, - ACTIONS(4347), 1, - anon_sym_COLON, - STATE(2421), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4337), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113690] = 4, - ACTIONS(3130), 1, + [113646] = 4, + ACTIONS(1235), 1, anon_sym_RPAREN, - ACTIONS(3132), 1, + ACTIONS(4339), 1, anon_sym_COMMA, - STATE(2381), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113704] = 4, - ACTIONS(4349), 1, + [113660] = 4, + ACTIONS(1237), 1, + anon_sym_RPAREN, + ACTIONS(4341), 1, anon_sym_COMMA, - ACTIONS(4351), 1, - anon_sym_RBRACE, - STATE(2411), 1, - aux_sym_dict_pattern_repeat1, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113718] = 3, - ACTIONS(4004), 1, - anon_sym_EQ, + [113674] = 3, + ACTIONS(4345), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_RPAREN, + ACTIONS(4343), 2, anon_sym_COMMA, - [113730] = 4, - ACTIONS(1339), 1, anon_sym_RBRACE, - ACTIONS(4353), 1, + [113686] = 4, + ACTIONS(4347), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4349), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113744] = 4, - ACTIONS(4099), 1, - anon_sym_RPAREN, - ACTIONS(4355), 1, + [113700] = 4, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(2378), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113758] = 4, - ACTIONS(641), 1, - sym__newline, - ACTIONS(4357), 1, - anon_sym_SEMI, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(4353), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113772] = 4, - ACTIONS(3386), 1, + [113714] = 4, + ACTIONS(4355), 1, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(2402), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4357), 1, + anon_sym_COLON, + STATE(2369), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113786] = 4, - ACTIONS(2630), 1, - anon_sym_RPAREN, + [113728] = 4, ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + anon_sym_SEMI, + ACTIONS(4362), 1, + sym__newline, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113800] = 4, - ACTIONS(3499), 1, - anon_sym_RPAREN, - ACTIONS(4361), 1, - anon_sym_COMMA, - STATE(2407), 1, - aux_sym__collection_elements_repeat1, + [113742] = 4, + ACTIONS(4329), 1, + sym__newline, + ACTIONS(4331), 1, + sym__indent, + STATE(828), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113814] = 4, - ACTIONS(2676), 1, - anon_sym_RBRACK, + [113756] = 4, + ACTIONS(2652), 1, + anon_sym_RPAREN, ACTIONS(4364), 1, anon_sym_COMMA, - STATE(2289), 1, + STATE(2375), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113828] = 4, - ACTIONS(4042), 1, + [113770] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, ACTIONS(4366), 1, anon_sym_in, - STATE(2260), 1, + STATE(2346), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113842] = 4, - ACTIONS(4059), 1, + [113784] = 4, + ACTIONS(2692), 1, anon_sym_RBRACK, ACTIONS(4368), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__patterns_repeat1, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113856] = 4, + [113798] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2458), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113808] = 4, ACTIONS(4370), 1, anon_sym_COMMA, ACTIONS(4372), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2420), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113870] = 3, - ACTIONS(4376), 1, - anon_sym_as, + [113822] = 4, + ACTIONS(4374), 1, + anon_sym_COMMA, + ACTIONS(4377), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4374), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113882] = 4, - ACTIONS(4378), 1, + [113836] = 4, + ACTIONS(3302), 1, anon_sym_COMMA, - ACTIONS(4380), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3304), 1, + anon_sym_RBRACK, + STATE(2410), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113896] = 4, - ACTIONS(3048), 1, + [113850] = 4, + ACTIONS(4379), 1, anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4381), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113910] = 4, - ACTIONS(4382), 1, - anon_sym_SEMI, - ACTIONS(4384), 1, - sym__newline, - STATE(2404), 1, - aux_sym__simple_statements_repeat1, + [113864] = 4, + ACTIONS(4383), 1, + anon_sym_COMMA, + ACTIONS(4385), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113924] = 4, - ACTIONS(3817), 1, - anon_sym_RPAREN, - ACTIONS(3992), 1, - anon_sym_COMMA, - STATE(2390), 1, - aux_sym__import_list_repeat1, + [113878] = 3, + ACTIONS(4387), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113938] = 4, - ACTIONS(4235), 1, - sym__newline, - ACTIONS(4237), 1, - sym__indent, - STATE(742), 1, - sym__match_block, - ACTIONS(3), 2, + ACTIONS(3882), 2, + anon_sym_COMMA, + anon_sym_COLON, + [113890] = 3, + ACTIONS(3537), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113952] = 4, - ACTIONS(3048), 1, + ACTIONS(3539), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113902] = 4, + ACTIONS(4389), 1, anon_sym_COMMA, - ACTIONS(4386), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4391), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113966] = 4, - ACTIONS(4235), 1, - sym__newline, - ACTIONS(4237), 1, - sym__indent, - STATE(745), 1, - sym__match_block, + [113916] = 4, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3310), 1, + anon_sym_RBRACK, + STATE(2416), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113980] = 4, - ACTIONS(2606), 1, - anon_sym_RPAREN, - ACTIONS(4388), 1, + [113930] = 4, + ACTIONS(4393), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4395), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113994] = 4, - ACTIONS(4390), 1, + [113944] = 4, + ACTIONS(4397), 1, anon_sym_COMMA, - ACTIONS(4393), 1, - anon_sym_COLON, - STATE(2421), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4399), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114008] = 3, - ACTIONS(1726), 1, - anon_sym_except, + [113958] = 3, + ACTIONS(3947), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114020] = 4, - ACTIONS(1429), 1, + ACTIONS(3923), 2, anon_sym_RPAREN, - ACTIONS(4395), 1, anon_sym_COMMA, - STATE(2339), 1, - aux_sym_with_clause_repeat1, + [113970] = 4, + ACTIONS(2678), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_COMMA, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114034] = 4, - ACTIONS(4397), 1, + [113984] = 4, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(4403), 1, anon_sym_COMMA, - ACTIONS(4399), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + STATE(2419), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114048] = 4, - ACTIONS(4401), 1, + [113998] = 4, + ACTIONS(4406), 1, anon_sym_COMMA, - ACTIONS(4403), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(4409), 1, + anon_sym_RBRACE, + STATE(2420), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114062] = 4, - ACTIONS(4228), 1, - anon_sym_COLON, - ACTIONS(4405), 1, + [114012] = 4, + ACTIONS(1335), 1, + anon_sym_RBRACE, + ACTIONS(4411), 1, anon_sym_COMMA, - STATE(2426), 1, - aux_sym_with_clause_repeat1, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114076] = 4, - ACTIONS(1173), 1, + [114026] = 4, + ACTIONS(2660), 1, anon_sym_RPAREN, - ACTIONS(4408), 1, + ACTIONS(4413), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114090] = 4, - ACTIONS(1171), 1, + [114040] = 4, + ACTIONS(4415), 1, anon_sym_RPAREN, - ACTIONS(4410), 1, + ACTIONS(4417), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + STATE(2337), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114104] = 2, + [114054] = 4, + ACTIONS(2875), 1, + anon_sym_in, + ACTIONS(4419), 1, + anon_sym_COMMA, + STATE(2424), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3945), 3, - sym__newline, - anon_sym_SEMI, + [114068] = 4, + ACTIONS(1293), 1, + anon_sym_RPAREN, + ACTIONS(4422), 1, anon_sym_COMMA, - [114114] = 4, - ACTIONS(4412), 1, - anon_sym_SEMI, - ACTIONS(4414), 1, - sym__newline, - STATE(2449), 1, - aux_sym__simple_statements_repeat1, + STATE(2318), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114128] = 4, - ACTIONS(3265), 1, + [114082] = 3, + ACTIONS(4426), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4424), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114094] = 4, + ACTIONS(3490), 1, + anon_sym_RBRACE, + ACTIONS(4428), 1, anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RBRACK, - STATE(2424), 1, - aux_sym_subscript_repeat1, + STATE(2427), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114142] = 4, - ACTIONS(3271), 1, - anon_sym_COMMA, - ACTIONS(3273), 1, + [114108] = 4, + ACTIONS(3490), 1, anon_sym_RBRACK, - STATE(2335), 1, - aux_sym_subscript_repeat1, + ACTIONS(4431), 1, + anon_sym_COMMA, + STATE(2428), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114156] = 4, - ACTIONS(2658), 1, - anon_sym_RPAREN, - ACTIONS(4416), 1, + [114122] = 4, + ACTIONS(3729), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_COLON, + STATE(2693), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114136] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4436), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114150] = 4, + ACTIONS(619), 1, + sym__newline, + ACTIONS(4438), 1, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114170] = 4, - ACTIONS(4418), 1, + [114164] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3520), 3, anon_sym_RPAREN, - ACTIONS(4420), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + [114174] = 4, + ACTIONS(4108), 1, + anon_sym_COMMA, + ACTIONS(4440), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114184] = 4, - ACTIONS(4422), 1, + [114188] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(4425), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4442), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114198] = 4, - ACTIONS(3048), 1, + [114202] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - ACTIONS(3128), 1, + ACTIONS(4444), 1, anon_sym_RPAREN, - STATE(2308), 1, + STATE(2254), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114212] = 4, - ACTIONS(2996), 1, - anon_sym_RPAREN, - ACTIONS(2998), 1, - anon_sym_COMMA, - STATE(2428), 1, - aux_sym_argument_list_repeat1, + [114216] = 4, + ACTIONS(4446), 1, + anon_sym_SEMI, + ACTIONS(4448), 1, + sym__newline, + STATE(2460), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114230] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4450), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114226] = 4, - ACTIONS(4427), 1, + [114244] = 4, + ACTIONS(3531), 1, + anon_sym_RPAREN, + ACTIONS(4452), 1, anon_sym_COMMA, - ACTIONS(4430), 1, - anon_sym_RBRACE, STATE(2438), 1, - aux_sym_dictionary_repeat1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114240] = 4, - ACTIONS(1323), 1, - anon_sym_RBRACE, - ACTIONS(4432), 1, + [114258] = 4, + ACTIONS(2610), 1, + anon_sym_RPAREN, + ACTIONS(4455), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + STATE(2375), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114254] = 4, - ACTIONS(4219), 1, + [114272] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4457), 1, anon_sym_COLON, - ACTIONS(4434), 1, - anon_sym_COMMA, - STATE(2440), 1, - aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114268] = 4, - ACTIONS(629), 1, - sym__newline, - ACTIONS(4437), 1, - anon_sym_SEMI, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, + [114286] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4459), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114282] = 4, - ACTIONS(1019), 1, - anon_sym_RBRACK, - ACTIONS(4439), 1, - anon_sym_COMMA, - STATE(2484), 1, - aux_sym_type_parameter_repeat1, + [114300] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4461), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114296] = 4, - ACTIONS(1213), 1, - anon_sym_RPAREN, - ACTIONS(4441), 1, + [114314] = 4, + ACTIONS(3024), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3046), 1, + anon_sym_RPAREN, + STATE(2254), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114310] = 4, - ACTIONS(3423), 1, - anon_sym_COMMA, - ACTIONS(3425), 1, - anon_sym_RBRACE, - STATE(2456), 1, - aux_sym_dictionary_repeat1, + [114328] = 3, + ACTIONS(3898), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114324] = 4, - ACTIONS(4443), 1, - anon_sym_SEMI, - ACTIONS(4445), 1, - sym__newline, - STATE(2257), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(4021), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [114340] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114338] = 4, - ACTIONS(3330), 1, + ACTIONS(3971), 3, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dictionary_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [114350] = 4, + ACTIONS(4021), 1, + anon_sym_RBRACK, + ACTIONS(4463), 1, + anon_sym_COMMA, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114352] = 4, - ACTIONS(1203), 1, + [114364] = 4, + ACTIONS(3074), 1, anon_sym_RPAREN, - ACTIONS(4447), 1, + ACTIONS(3076), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2301), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114366] = 4, - ACTIONS(4449), 1, + [114378] = 4, + ACTIONS(4466), 1, + anon_sym_RPAREN, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(4451), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + STATE(2309), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114380] = 4, - ACTIONS(639), 1, - sym__newline, - ACTIONS(4453), 1, - anon_sym_SEMI, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, + [114392] = 4, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_PIPE, + ACTIONS(4470), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114394] = 4, - ACTIONS(3048), 1, + [114406] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4472), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114408] = 4, - ACTIONS(4455), 1, + [114420] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - ACTIONS(4457), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(4474), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114422] = 3, - ACTIONS(4461), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4459), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, [114434] = 4, - ACTIONS(4463), 1, + ACTIONS(4476), 1, anon_sym_SEMI, - ACTIONS(4465), 1, + ACTIONS(4478), 1, sym__newline, - STATE(2441), 1, + STATE(2334), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114448] = 4, - ACTIONS(3781), 1, + ACTIONS(3474), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, anon_sym_COLON, - ACTIONS(4467), 1, - anon_sym_RBRACE, - STATE(2794), 1, - sym_format_specifier, + STATE(1959), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114462] = 4, - ACTIONS(3366), 1, - sym_identifier, - STATE(2133), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, + ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114476] = 4, - ACTIONS(1303), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(3296), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3298), 1, + anon_sym_RBRACK, + STATE(2327), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114490] = 4, - ACTIONS(3781), 1, + ACTIONS(4329), 1, + sym__newline, + ACTIONS(4331), 1, + sym__indent, + STATE(814), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114504] = 4, + ACTIONS(4482), 1, + anon_sym_COMMA, + ACTIONS(4484), 1, + anon_sym_COLON, + STATE(2392), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114518] = 3, + ACTIONS(4387), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3882), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4471), 1, + [114530] = 4, + ACTIONS(4486), 1, + anon_sym_COMMA, + ACTIONS(4488), 1, anon_sym_RBRACE, - STATE(2668), 1, - sym_format_specifier, + STATE(2283), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114504] = 4, - ACTIONS(4042), 1, + [114544] = 4, + ACTIONS(621), 1, + sym__newline, + ACTIONS(4490), 1, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114558] = 4, + ACTIONS(3258), 1, anon_sym_COMMA, - ACTIONS(4473), 1, - anon_sym_in, - STATE(2260), 1, - aux_sym__patterns_repeat1, + ACTIONS(3260), 1, + anon_sym_RBRACK, + STATE(2241), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114518] = 4, - ACTIONS(2871), 1, - anon_sym_in, - ACTIONS(4475), 1, + [114572] = 4, + ACTIONS(1343), 1, + anon_sym_RBRACE, + ACTIONS(4492), 1, anon_sym_COMMA, - STATE(2459), 1, - aux_sym__patterns_repeat1, + STATE(2256), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114532] = 4, - ACTIONS(3048), 1, + [114586] = 4, + ACTIONS(4494), 1, anon_sym_COMMA, - ACTIONS(3105), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4496), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114546] = 4, - ACTIONS(4235), 1, - sym__newline, - ACTIONS(4237), 1, - sym__indent, - STATE(760), 1, - sym__match_block, + [114600] = 4, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114560] = 4, - ACTIONS(3083), 1, + [114614] = 4, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3085), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(2471), 1, + STATE(2472), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114574] = 4, - ACTIONS(4478), 1, + [114628] = 4, + ACTIONS(4500), 1, anon_sym_RPAREN, - ACTIONS(4480), 1, + ACTIONS(4502), 1, anon_sym_COMMA, STATE(2473), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114588] = 4, - ACTIONS(4482), 1, + [114642] = 4, + ACTIONS(4504), 1, anon_sym_COMMA, - ACTIONS(4484), 1, + ACTIONS(4506), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2252), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114602] = 4, - ACTIONS(4486), 1, + [114656] = 4, + ACTIONS(4123), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, anon_sym_COMMA, - ACTIONS(4488), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dict_pattern_repeat1, + STATE(2468), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114616] = 4, - ACTIONS(3243), 1, + [114670] = 4, + ACTIONS(3234), 1, anon_sym_COMMA, - ACTIONS(3245), 1, + ACTIONS(3238), 1, anon_sym_RBRACK, - STATE(2476), 1, + STATE(2475), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114630] = 4, - ACTIONS(4490), 1, + [114684] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - ACTIONS(4492), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(4511), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114644] = 4, - ACTIONS(2644), 1, - anon_sym_RBRACK, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, + [114698] = 4, + ACTIONS(4329), 1, + sym__newline, + ACTIONS(4331), 1, + sym__indent, + STATE(811), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114658] = 4, - ACTIONS(2672), 1, + [114712] = 4, + ACTIONS(1189), 1, anon_sym_RPAREN, - ACTIONS(4496), 1, + ACTIONS(4513), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114672] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(4498), 1, - anon_sym_COLON, + STATE(2438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114686] = 4, - ACTIONS(1227), 1, + [114726] = 4, + ACTIONS(1191), 1, anon_sym_RPAREN, - ACTIONS(4500), 1, + ACTIONS(4515), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114700] = 4, - ACTIONS(4502), 1, + [114740] = 4, + ACTIONS(4517), 1, anon_sym_COMMA, - ACTIONS(4504), 1, + ACTIONS(4519), 1, anon_sym_RBRACK, - STATE(2498), 1, + STATE(2407), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114714] = 4, - ACTIONS(1217), 1, - anon_sym_RPAREN, - ACTIONS(4506), 1, + [114754] = 4, + ACTIONS(4521), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4523), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114728] = 4, - ACTIONS(1223), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + [114768] = 3, + ACTIONS(1690), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114742] = 4, - ACTIONS(4510), 1, - anon_sym_COMMA, - ACTIONS(4512), 1, + ACTIONS(1692), 2, + anon_sym_except_STAR, + anon_sym_finally, + [114780] = 4, + ACTIONS(1293), 1, anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + ACTIONS(4525), 1, + anon_sym_COMMA, + STATE(2333), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114756] = 4, - ACTIONS(4514), 1, + [114794] = 4, + ACTIONS(3204), 1, + anon_sym_COLON, + ACTIONS(4527), 1, anon_sym_COMMA, - ACTIONS(4516), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + STATE(2478), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114770] = 4, - ACTIONS(1161), 1, + [114808] = 4, + ACTIONS(1145), 1, anon_sym_RPAREN, - ACTIONS(4518), 1, + ACTIONS(4530), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2438), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114784] = 4, - ACTIONS(4520), 1, + [114822] = 4, + ACTIONS(1021), 1, + anon_sym_RBRACK, + ACTIONS(4532), 1, anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_RBRACE, - STATE(2465), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114798] = 4, - ACTIONS(3584), 1, - anon_sym_PIPE, - ACTIONS(4524), 1, - anon_sym_COLON, - STATE(1934), 1, - aux_sym_union_pattern_repeat1, + STATE(2240), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114812] = 4, - ACTIONS(4203), 1, + [114836] = 4, + ACTIONS(4219), 1, sym__newline, - ACTIONS(4205), 1, + ACTIONS(4221), 1, sym__indent, - STATE(825), 1, + STATE(776), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114826] = 4, - ACTIONS(3255), 1, + [114850] = 4, + ACTIONS(4484), 1, + anon_sym_RPAREN, + ACTIONS(4534), 1, anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RBRACK, - STATE(2467), 1, - aux_sym_subscript_repeat1, + STATE(2368), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114840] = 3, - ACTIONS(1680), 1, - anon_sym_except, + [114864] = 4, + ACTIONS(4536), 1, + anon_sym_COMMA, + ACTIONS(4538), 1, + anon_sym_COLON, + STATE(2369), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114852] = 4, - ACTIONS(3728), 1, + [114878] = 4, + ACTIONS(3790), 1, anon_sym_DOT, - ACTIONS(3734), 1, + ACTIONS(3796), 1, anon_sym_PIPE, - ACTIONS(4526), 1, + ACTIONS(4540), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114866] = 4, - ACTIONS(3845), 1, - anon_sym_RBRACK, - ACTIONS(4528), 1, + [114892] = 4, + ACTIONS(4108), 1, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4542), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114880] = 4, - ACTIONS(997), 1, - anon_sym_RBRACK, - ACTIONS(4531), 1, + [114906] = 4, + ACTIONS(4091), 1, + anon_sym_RPAREN, + ACTIONS(4544), 1, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_type_parameter_repeat1, + STATE(2486), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114894] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(4533), 1, - anon_sym_COLON, + [114920] = 3, + ACTIONS(3886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114908] = 4, - ACTIONS(4203), 1, - sym__newline, - ACTIONS(4205), 1, - sym__indent, - STATE(779), 1, - sym__match_block, + ACTIONS(3882), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114932] = 3, + ACTIONS(1694), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114922] = 4, - ACTIONS(3728), 1, - anon_sym_DOT, - ACTIONS(3734), 1, - anon_sym_PIPE, - ACTIONS(4535), 1, + ACTIONS(1696), 2, + anon_sym_except_STAR, + anon_sym_finally, + [114944] = 3, + ACTIONS(4547), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114936] = 4, - ACTIONS(4537), 1, - anon_sym_SEMI, - ACTIONS(4539), 1, - sym__newline, - STATE(2495), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114950] = 4, - ACTIONS(4541), 1, + ACTIONS(3882), 2, anon_sym_RPAREN, - ACTIONS(4543), 1, anon_sym_COMMA, - STATE(2474), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [114956] = 3, + ACTIONS(3572), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [114964] = 4, - ACTIONS(3065), 1, - anon_sym_RPAREN, - ACTIONS(3067), 1, - anon_sym_COMMA, - STATE(2477), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + ACTIONS(3574), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114968] = 3, + ACTIONS(3652), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [114978] = 4, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(4545), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + ACTIONS(3654), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114980] = 3, + ACTIONS(3454), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [114992] = 4, - ACTIONS(1319), 1, + ACTIONS(3456), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4547), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_dictionary_repeat1, + [114992] = 4, + ACTIONS(3930), 1, + sym_identifier, + STATE(2417), 1, + sym_dotted_name, + STATE(2599), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [115006] = 4, - ACTIONS(3048), 1, + ACTIONS(4108), 1, anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4549), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [115020] = 4, - ACTIONS(635), 1, - sym__newline, - ACTIONS(4549), 1, - anon_sym_SEMI, - STATE(2360), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(4108), 1, + anon_sym_COMMA, + ACTIONS(4551), 1, + anon_sym_in, + STATE(2346), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [115034] = 4, - ACTIONS(3600), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, + ACTIONS(2644), 1, + anon_sym_RBRACK, + ACTIONS(4553), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_argument_list_repeat1, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [115048] = 4, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3403), 1, + ACTIONS(3684), 1, + anon_sym_COLON, + ACTIONS(4555), 1, anon_sym_RBRACE, - STATE(2493), 1, - aux_sym_dictionary_repeat1, + STATE(2759), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [115062] = 4, - ACTIONS(4554), 1, - anon_sym_COMMA, + ACTIONS(645), 1, + sym__newline, ACTIONS(4557), 1, - anon_sym_RBRACK, - STATE(2498), 1, - aux_sym_subscript_repeat1, + anon_sym_SEMI, + STATE(2400), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115076] = 2, + [115076] = 3, + ACTIONS(4559), 1, + anon_sym_COLON, + ACTIONS(4561), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 2, - sym__newline, - anon_sym_SEMI, - [115085] = 2, + [115087] = 3, + ACTIONS(4563), 1, + anon_sym_COMMA, + STATE(1933), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115098] = 3, + ACTIONS(4565), 1, + sym_integer, + ACTIONS(4567), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115109] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115118] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4561), 2, - sym__newline, - anon_sym_SEMI, - [115094] = 2, + ACTIONS(3345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115127] = 3, + ACTIONS(4569), 1, + sym_integer, + ACTIONS(4571), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 2, - sym__newline, - anon_sym_SEMI, - [115103] = 2, + [115138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 2, + ACTIONS(4573), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115112] = 2, + anon_sym_RBRACE, + [115147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4565), 2, - sym__newline, - anon_sym_SEMI, - [115121] = 2, + ACTIONS(4575), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115156] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 2, + ACTIONS(3128), 2, sym__newline, anon_sym_SEMI, - [115130] = 2, + [115165] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 2, + ACTIONS(4577), 2, sym__newline, anon_sym_SEMI, - [115139] = 2, + [115174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 2, - sym__newline, - anon_sym_SEMI, - [115148] = 3, - ACTIONS(3880), 1, - anon_sym_LPAREN, - STATE(2541), 1, - sym_parameters, + ACTIONS(3490), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115183] = 3, + ACTIONS(4579), 1, + sym_integer, + ACTIONS(4581), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115159] = 2, + [115194] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115168] = 3, - ACTIONS(3880), 1, + ACTIONS(4583), 2, + sym__dedent, + anon_sym_case, + [115203] = 3, + ACTIONS(3888), 1, anon_sym_LPAREN, - STATE(2543), 1, + STATE(2551), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115179] = 2, + [115214] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3499), 2, + ACTIONS(4585), 2, + sym__newline, + anon_sym_SEMI, + [115223] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2875), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115188] = 2, + anon_sym_RBRACK, + [115232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + ACTIONS(2886), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115197] = 2, + [115241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - sym__newline, - anon_sym_SEMI, - [115206] = 2, + ACTIONS(4587), 2, + sym__dedent, + anon_sym_case, + [115250] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3320), 2, - sym__newline, - anon_sym_SEMI, - [115215] = 2, + ACTIONS(4589), 2, + sym__dedent, + anon_sym_case, + [115259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, - sym__newline, - anon_sym_SEMI, - [115224] = 2, + ACTIONS(4591), 2, + sym__dedent, + anon_sym_case, + [115268] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, + ACTIONS(4593), 2, sym__newline, anon_sym_SEMI, - [115233] = 2, + [115277] = 3, + ACTIONS(4595), 1, + anon_sym_COLON, + ACTIONS(4597), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 2, - anon_sym__, - sym_identifier, - [115242] = 2, + [115288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115251] = 3, - ACTIONS(4581), 1, + ACTIONS(4599), 2, + sym__newline, + anon_sym_SEMI, + [115297] = 3, + ACTIONS(4601), 1, sym_integer, - ACTIONS(4583), 1, + ACTIONS(4603), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115262] = 2, + [115308] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115271] = 2, + ACTIONS(4605), 2, + sym__dedent, + anon_sym_case, + [115317] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115280] = 2, + ACTIONS(4607), 2, + sym__dedent, + anon_sym_case, + [115326] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 2, + ACTIONS(1692), 2, sym__dedent, anon_sym_case, - [115289] = 2, + [115335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115298] = 2, + ACTIONS(4609), 2, + sym__dedent, + anon_sym_case, + [115344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115307] = 2, + ACTIONS(4611), 2, + sym__newline, + anon_sym_SEMI, + [115353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, + ACTIONS(2875), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [115316] = 2, + [115362] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, + ACTIONS(4613), 2, anon_sym_COMMA, anon_sym_COLON, - [115325] = 3, - ACTIONS(4591), 1, - sym_integer, - ACTIONS(4593), 1, - sym_float, + [115371] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115336] = 3, - ACTIONS(4595), 1, - anon_sym_COLON, - ACTIONS(4597), 1, - anon_sym_DASH_GT, + ACTIONS(4615), 2, + sym__newline, + anon_sym_SEMI, + [115380] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115347] = 2, + ACTIONS(4617), 2, + sym__dedent, + anon_sym_case, + [115389] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3156), 2, + ACTIONS(4619), 2, sym__newline, anon_sym_SEMI, - [115356] = 2, + [115398] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115365] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3156), 2, + ACTIONS(4613), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115374] = 3, - ACTIONS(4599), 1, - sym_integer, - ACTIONS(4601), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115385] = 2, + [115407] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115394] = 3, - ACTIONS(4603), 1, - anon_sym_COMMA, - STATE(1922), 1, - aux_sym__patterns_repeat1, + ACTIONS(4621), 2, + sym__newline, + anon_sym_SEMI, + [115416] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115405] = 2, + ACTIONS(4623), 2, + sym__dedent, + anon_sym_case, + [115425] = 3, + ACTIONS(4625), 1, + anon_sym_COLON, + ACTIONS(4627), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - sym__dedent, - anon_sym_case, - [115414] = 2, + [115436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 2, + ACTIONS(3882), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115423] = 2, + [115445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, + ACTIONS(4629), 2, anon_sym__, sym_identifier, - [115432] = 3, - ACTIONS(4609), 1, - sym_integer, - ACTIONS(4611), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115443] = 3, - ACTIONS(4613), 1, - sym_integer, - ACTIONS(4615), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, [115454] = 3, - ACTIONS(4617), 1, - sym_integer, - ACTIONS(4619), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115465] = 3, - ACTIONS(4621), 1, + ACTIONS(4631), 1, sym_integer, - ACTIONS(4623), 1, + ACTIONS(4633), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115476] = 3, - ACTIONS(4625), 1, - anon_sym_COLON, - ACTIONS(4627), 1, - anon_sym_DASH_GT, + [115465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115487] = 3, - ACTIONS(4629), 1, - sym_integer, - ACTIONS(4631), 1, - sym_float, + ACTIONS(4635), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115498] = 3, - ACTIONS(4633), 1, - anon_sym_COLON, - ACTIONS(4635), 1, - anon_sym_DASH_GT, + ACTIONS(4362), 2, + sym__newline, + anon_sym_SEMI, + [115483] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115509] = 2, + ACTIONS(4573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115492] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - sym__dedent, - anon_sym_case, - [115518] = 3, - ACTIONS(4637), 1, + ACTIONS(4637), 2, anon_sym_COLON, - ACTIONS(4639), 1, anon_sym_DASH_GT, + [115501] = 3, + ACTIONS(4639), 1, + sym_integer, + ACTIONS(4641), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115529] = 2, + [115512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115538] = 3, - ACTIONS(4641), 1, + ACTIONS(4643), 2, anon_sym_COLON, - ACTIONS(4643), 1, anon_sym_DASH_GT, + [115521] = 3, + ACTIONS(4645), 1, + sym_integer, + ACTIONS(4647), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115549] = 2, + [115532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4228), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115558] = 2, + ACTIONS(4649), 2, + anon_sym__, + sym_identifier, + [115541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3499), 2, + ACTIONS(2880), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115567] = 2, + [115550] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, - sym__dedent, - anon_sym_case, - [115576] = 3, - ACTIONS(3880), 1, - anon_sym_LPAREN, - STATE(2577), 1, - sym_parameters, + ACTIONS(4091), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115559] = 3, + ACTIONS(4651), 1, + sym_integer, + ACTIONS(4653), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115587] = 3, - ACTIONS(4647), 1, + [115570] = 3, + ACTIONS(4655), 1, anon_sym_COLON, - ACTIONS(4649), 1, + ACTIONS(4657), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115598] = 2, + [115581] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, + ACTIONS(4236), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115607] = 2, + [115590] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115616] = 2, + ACTIONS(4659), 2, + sym__newline, + anon_sym_SEMI, + [115599] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 2, - sym__dedent, - anon_sym_case, - [115625] = 2, + ACTIONS(4123), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115608] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 2, - sym__newline, - anon_sym_SEMI, - [115634] = 2, + ACTIONS(3159), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4651), 2, - sym__newline, - anon_sym_SEMI, - [115643] = 2, + ACTIONS(4573), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115626] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4653), 2, - sym__newline, - anon_sym_SEMI, - [115652] = 2, + ACTIONS(4575), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115635] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4337), 2, + ACTIONS(3490), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115661] = 2, + [115644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 2, - sym__dedent, - anon_sym_case, - [115670] = 2, + ACTIONS(4575), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115653] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, - anon_sym_RPAREN, + ACTIONS(3490), 2, anon_sym_COMMA, - [115679] = 2, + anon_sym_RBRACK, + [115662] = 3, + ACTIONS(4661), 1, + anon_sym_COLON, + ACTIONS(4663), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115688] = 2, + [115673] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115697] = 2, + ACTIONS(1696), 2, + sym__dedent, + anon_sym_case, + [115682] = 3, + ACTIONS(4665), 1, + anon_sym_COLON, + ACTIONS(4667), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 2, - anon_sym_COMMA, + [115693] = 3, + ACTIONS(4669), 1, anon_sym_COLON, - [115706] = 2, + ACTIONS(4671), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115704] = 3, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2520), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4655), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [115715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4657), 2, + ACTIONS(4673), 2, anon_sym__, sym_identifier, - [115724] = 2, + [115724] = 3, + ACTIONS(4675), 1, + anon_sym_COLON, + ACTIONS(4677), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3156), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115733] = 3, - ACTIONS(4659), 1, + [115735] = 3, + ACTIONS(4679), 1, sym_integer, - ACTIONS(4661), 1, + ACTIONS(4681), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115744] = 2, + [115746] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(3531), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [115753] = 2, + [115755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - anon_sym_RPAREN, + ACTIONS(1563), 2, anon_sym_COMMA, - [115762] = 2, + anon_sym_RBRACK, + [115764] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4663), 2, + ACTIONS(4683), 2, sym__newline, anon_sym_SEMI, - [115771] = 3, - ACTIONS(4665), 1, - sym_integer, - ACTIONS(4667), 1, - sym_float, + [115773] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(1684), 2, + sym__dedent, + anon_sym_case, [115782] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, + ACTIONS(1563), 2, anon_sym_RPAREN, anon_sym_COMMA, [115791] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4669), 2, + ACTIONS(1700), 2, sym__dedent, anon_sym_case, [115800] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_RPAREN, + ACTIONS(4086), 2, anon_sym_COMMA, + anon_sym_RBRACE, [115809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4671), 2, + ACTIONS(4685), 2, sym__dedent, anon_sym_case, - [115818] = 3, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_DASH_GT, + [115818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115829] = 2, + ACTIONS(3882), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4677), 2, + ACTIONS(4687), 2, sym__newline, anon_sym_SEMI, - [115838] = 2, + [115836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4679), 2, + ACTIONS(4689), 2, sym__dedent, anon_sym_case, - [115847] = 2, + [115845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, + ACTIONS(3882), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_DASH_GT, - [115856] = 3, - ACTIONS(4683), 1, - sym_integer, - ACTIONS(4685), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115867] = 2, + [115854] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4691), 2, sym__dedent, anon_sym_case, - [115876] = 2, + [115863] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4689), 2, - sym__dedent, - anon_sym_case, - [115885] = 2, + ACTIONS(4693), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115872] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4691), 2, - sym__dedent, - anon_sym_case, - [115894] = 2, + ACTIONS(4123), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115881] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4228), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115903] = 2, + ACTIONS(4695), 2, + sym__newline, + anon_sym_SEMI, + [115890] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4693), 2, - sym__dedent, - anon_sym_case, - [115912] = 2, + ACTIONS(3300), 2, + sym__newline, + anon_sym_SEMI, + [115899] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3499), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115921] = 2, + ACTIONS(4697), 2, + sym__newline, + anon_sym_SEMI, + [115908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4695), 2, - sym__dedent, - anon_sym_case, - [115930] = 3, - ACTIONS(4697), 1, + ACTIONS(4699), 2, + anon_sym__, + sym_identifier, + [115917] = 3, + ACTIONS(4701), 1, sym_integer, - ACTIONS(4699), 1, + ACTIONS(4703), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115941] = 2, + [115928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 2, + ACTIONS(4705), 2, sym__dedent, anon_sym_case, - [115950] = 3, - ACTIONS(3880), 1, + [115937] = 3, + ACTIONS(4707), 1, + sym_integer, + ACTIONS(4709), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115948] = 3, + ACTIONS(3888), 1, anon_sym_LPAREN, - STATE(2527), 1, + STATE(2499), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115961] = 3, - ACTIONS(4701), 1, - anon_sym_COLON, - ACTIONS(4703), 1, - anon_sym_DASH_GT, + [115959] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115972] = 2, + ACTIONS(2886), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 2, - sym__dedent, - anon_sym_case, - [115981] = 2, + ACTIONS(4091), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115977] = 3, + ACTIONS(3888), 1, + anon_sym_LPAREN, + STATE(2567), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4707), 2, - sym__dedent, - anon_sym_case, - [115990] = 2, + [115988] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4709), 2, - sym__dedent, - anon_sym_case, - [115999] = 2, + ACTIONS(3230), 2, + sym__newline, + anon_sym_SEMI, + [115997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116008] = 2, + ACTIONS(3159), 2, + sym__newline, + anon_sym_SEMI, + [116006] = 3, + ACTIONS(4711), 1, + sym_integer, + ACTIONS(4713), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4711), 2, - anon_sym__, - sym_identifier, [116017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1704), 2, + sym__dedent, + anon_sym_case, [116026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4713), 2, - sym__newline, - anon_sym_SEMI, + ACTIONS(3923), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [116035] = 2, ACTIONS(4715), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116043] = 2, ACTIONS(4717), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123083,37 +123083,37 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116059] = 2, ACTIONS(4721), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116067] = 2, ACTIONS(4723), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116075] = 2, - ACTIONS(4725), 1, - anon_sym_COLON_EQ, + ACTIONS(3332), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116083] = 2, - ACTIONS(4727), 1, + ACTIONS(4725), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116091] = 2, - ACTIONS(4729), 1, - anon_sym_COLON, + ACTIONS(4727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116099] = 2, - ACTIONS(1431), 1, - anon_sym_COLON, + ACTIONS(4729), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123124,583 +123124,583 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym_line_continuation, [116115] = 2, - ACTIONS(3382), 1, - anon_sym_COLON, + ACTIONS(4733), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116123] = 2, - ACTIONS(4733), 1, + ACTIONS(4735), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116131] = 2, - ACTIONS(4735), 1, + ACTIONS(4737), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116139] = 2, - ACTIONS(4366), 1, - anon_sym_in, + ACTIONS(4739), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116147] = 2, - ACTIONS(4737), 1, - anon_sym_COLON_EQ, + ACTIONS(4741), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116155] = 2, - ACTIONS(4739), 1, - anon_sym_RPAREN, + ACTIONS(4743), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116163] = 2, - ACTIONS(4741), 1, - anon_sym_RBRACK, + ACTIONS(4745), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116171] = 2, - ACTIONS(3388), 1, - anon_sym_RBRACE, + ACTIONS(4747), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116179] = 2, - ACTIONS(4743), 1, + ACTIONS(4749), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116187] = 2, - ACTIONS(4745), 1, - anon_sym_COLON, + ACTIONS(4751), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116195] = 2, - ACTIONS(4747), 1, - sym_identifier, + ACTIONS(4753), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116203] = 2, - ACTIONS(4749), 1, - sym_identifier, + ACTIONS(4755), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116211] = 2, - ACTIONS(4751), 1, + ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116219] = 2, - ACTIONS(4753), 1, - anon_sym_RBRACK, + ACTIONS(4757), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116227] = 2, - ACTIONS(4755), 1, - anon_sym_RBRACE, + ACTIONS(4759), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116235] = 2, - ACTIONS(4757), 1, - anon_sym_RBRACE, + ACTIONS(4761), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116243] = 2, - ACTIONS(3130), 1, - anon_sym_RPAREN, + ACTIONS(4763), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116251] = 2, - ACTIONS(4759), 1, - anon_sym_RBRACE, + ACTIONS(4765), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116259] = 2, - ACTIONS(3332), 1, - anon_sym_RBRACE, + ACTIONS(4767), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116267] = 2, - ACTIONS(4761), 1, - anon_sym_RPAREN, + ACTIONS(4769), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116275] = 2, - ACTIONS(4763), 1, - anon_sym_RBRACE, + ACTIONS(4771), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116283] = 2, - ACTIONS(4765), 1, - sym_identifier, + ACTIONS(4773), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116291] = 2, - ACTIONS(4767), 1, - anon_sym_RBRACE, + ACTIONS(4366), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116299] = 2, - ACTIONS(3101), 1, + ACTIONS(3078), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116307] = 2, - ACTIONS(4769), 1, - anon_sym_RBRACK, + ACTIONS(3452), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116315] = 2, - ACTIONS(4771), 1, + ACTIONS(3074), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116323] = 2, - ACTIONS(3036), 1, - anon_sym_RPAREN, + ACTIONS(4775), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116331] = 2, - ACTIONS(4773), 1, - anon_sym_RBRACK, + ACTIONS(4777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116339] = 2, - ACTIONS(4775), 1, - anon_sym_RBRACE, + ACTIONS(4779), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116347] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, + ACTIONS(4781), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116355] = 2, - ACTIONS(4779), 1, - anon_sym_RBRACK, + ACTIONS(4783), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116363] = 2, - ACTIONS(4781), 1, - anon_sym_RBRACE, + ACTIONS(3336), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116371] = 2, - ACTIONS(4783), 1, + ACTIONS(4785), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116379] = 2, - ACTIONS(4785), 1, - anon_sym_RBRACK, + ACTIONS(4787), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116387] = 2, - ACTIONS(3024), 1, - anon_sym_RPAREN, + ACTIONS(4789), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116395] = 2, - ACTIONS(4787), 1, - anon_sym_RBRACK, + ACTIONS(4791), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116403] = 2, - ACTIONS(4789), 1, - anon_sym_COLON, + ACTIONS(4793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116411] = 2, - ACTIONS(4791), 1, - anon_sym_RBRACK, + ACTIONS(4795), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116419] = 2, - ACTIONS(4793), 1, - sym_identifier, + ACTIONS(4797), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116427] = 2, - ACTIONS(4795), 1, - anon_sym_RPAREN, + ACTIONS(4799), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116435] = 2, - ACTIONS(4797), 1, - anon_sym_COLON, + ACTIONS(4801), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116443] = 2, - ACTIONS(4799), 1, - sym_identifier, + ACTIONS(4803), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116451] = 2, - ACTIONS(4801), 1, - anon_sym_RBRACE, + ACTIONS(4805), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116459] = 2, - ACTIONS(4803), 1, - sym_identifier, + ACTIONS(4807), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116467] = 2, - ACTIONS(4805), 1, + ACTIONS(4809), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116475] = 2, - ACTIONS(4807), 1, - anon_sym_RBRACE, + ACTIONS(4811), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116483] = 2, - ACTIONS(4809), 1, - anon_sym_RBRACE, + ACTIONS(4813), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116491] = 2, - ACTIONS(4811), 1, + ACTIONS(4815), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116499] = 2, - ACTIONS(3425), 1, - anon_sym_RBRACE, + ACTIONS(4817), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116507] = 2, - ACTIONS(4813), 1, - anon_sym_COLON, + ACTIONS(3349), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116515] = 2, - ACTIONS(4815), 1, - sym_identifier, + ACTIONS(4819), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116523] = 2, - ACTIONS(4817), 1, - anon_sym_RBRACE, + ACTIONS(4821), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116531] = 2, - ACTIONS(4819), 1, - anon_sym_RBRACE, + ACTIONS(4823), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116539] = 2, - ACTIONS(4821), 1, + ACTIONS(4825), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116547] = 2, - ACTIONS(4823), 1, - anon_sym_COLON, + ACTIONS(4827), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116555] = 2, - ACTIONS(3431), 1, + ACTIONS(3384), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116563] = 2, - ACTIONS(4825), 1, - sym_identifier, + ACTIONS(3433), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116571] = 2, - ACTIONS(3403), 1, - anon_sym_RBRACE, + ACTIONS(4829), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116579] = 2, - ACTIONS(4827), 1, + ACTIONS(4831), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116587] = 2, - ACTIONS(4829), 1, - sym_identifier, + ACTIONS(4833), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116595] = 2, - ACTIONS(4831), 1, - anon_sym_RBRACK, + ACTIONS(4835), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116603] = 2, - ACTIONS(3328), 1, - anon_sym_RBRACE, + ACTIONS(4837), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116611] = 2, - ACTIONS(4833), 1, + ACTIONS(4839), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116619] = 2, - ACTIONS(4835), 1, - anon_sym_COLON, + ACTIONS(4841), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116627] = 2, - ACTIONS(4837), 1, - anon_sym_RBRACK, + ACTIONS(4843), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116635] = 2, - ACTIONS(4839), 1, + ACTIONS(4845), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116643] = 2, - ACTIONS(4841), 1, - anon_sym_COLON, + ACTIONS(4847), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116651] = 2, - ACTIONS(4246), 1, - anon_sym_in, + ACTIONS(4849), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116659] = 2, - ACTIONS(4843), 1, - anon_sym_RBRACK, + ACTIONS(4851), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116667] = 2, - ACTIONS(4845), 1, - sym_identifier, + ACTIONS(4853), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116675] = 2, - ACTIONS(4847), 1, - anon_sym_COLON, + ACTIONS(4855), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116683] = 2, - ACTIONS(4849), 1, - anon_sym_RPAREN, + ACTIONS(4857), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116691] = 2, - ACTIONS(4851), 1, - anon_sym_RPAREN, + ACTIONS(4859), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116699] = 2, - ACTIONS(4853), 1, - sym_identifier, + ACTIONS(4861), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116707] = 2, - ACTIONS(4855), 1, - anon_sym_RPAREN, + ACTIONS(4863), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116715] = 2, - ACTIONS(4857), 1, - anon_sym_COLON, + ACTIONS(4865), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116723] = 2, - ACTIONS(4859), 1, - anon_sym_RPAREN, + ACTIONS(4436), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116731] = 2, - ACTIONS(4224), 1, - anon_sym_in, + ACTIONS(4867), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116739] = 2, - ACTIONS(4861), 1, - sym_identifier, + ACTIONS(3372), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116747] = 2, - ACTIONS(3433), 1, - anon_sym_COLON, + ACTIONS(3038), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116755] = 2, - ACTIONS(4863), 1, - anon_sym_COLON_EQ, + ACTIONS(4869), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116763] = 2, - ACTIONS(4865), 1, - anon_sym_COLON_EQ, + ACTIONS(4871), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116771] = 2, - ACTIONS(4867), 1, - anon_sym_COLON, + ACTIONS(4873), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116779] = 2, - ACTIONS(4869), 1, - anon_sym_RPAREN, + ACTIONS(4875), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116787] = 2, - ACTIONS(4871), 1, - anon_sym_COLON, + ACTIONS(4877), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116795] = 2, - ACTIONS(4873), 1, - anon_sym_RBRACK, + ACTIONS(4440), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116803] = 2, - ACTIONS(4190), 1, - anon_sym_in, + ACTIONS(4879), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116811] = 2, - ACTIONS(2996), 1, - anon_sym_RPAREN, + ACTIONS(3328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116819] = 2, - ACTIONS(3399), 1, - anon_sym_COLON, + ACTIONS(3366), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116827] = 2, - ACTIONS(4875), 1, - anon_sym_RPAREN, + ACTIONS(4881), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116835] = 2, - ACTIONS(4877), 1, - anon_sym_RBRACE, + ACTIONS(4883), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116843] = 2, - ACTIONS(4879), 1, - anon_sym_for, + ACTIONS(4885), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116851] = 2, - ACTIONS(4881), 1, - sym_identifier, + ACTIONS(3376), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116859] = 2, - ACTIONS(4883), 1, - anon_sym_RBRACE, + ACTIONS(4887), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116867] = 2, - ACTIONS(4885), 1, - anon_sym_COLON, + ACTIONS(4889), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116875] = 2, - ACTIONS(4887), 1, - sym_identifier, + ACTIONS(1451), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116883] = 2, - ACTIONS(4889), 1, + ACTIONS(3395), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, @@ -123713,31 +123713,31 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116899] = 2, ACTIONS(4893), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116907] = 2, ACTIONS(4895), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116915] = 2, - ACTIONS(4473), 1, - anon_sym_in, + ACTIONS(4897), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116923] = 2, - ACTIONS(4897), 1, - anon_sym_COLON_EQ, + ACTIONS(4899), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116931] = 2, - ACTIONS(4899), 1, - anon_sym_import, + ACTIONS(3386), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123749,7 +123749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_continuation, [116947] = 2, ACTIONS(4903), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -123772,464 +123772,464 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym_line_continuation, [116979] = 2, - ACTIONS(1457), 1, - anon_sym_def, + ACTIONS(4911), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116987] = 2, - ACTIONS(4911), 1, - anon_sym_in, + ACTIONS(4913), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116995] = 2, - ACTIONS(4913), 1, - anon_sym_RPAREN, + ACTIONS(4472), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117003] = 2, - ACTIONS(4115), 1, - anon_sym_in, + ACTIONS(4915), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117011] = 2, - ACTIONS(4915), 1, - anon_sym_RBRACE, + ACTIONS(4474), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117019] = 2, - ACTIONS(4111), 1, - anon_sym_in, + ACTIONS(4917), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117027] = 2, - ACTIONS(4917), 1, - sym_identifier, + ACTIONS(4919), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117035] = 2, - ACTIONS(4919), 1, - anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117043] = 2, - ACTIONS(3083), 1, + ACTIONS(4923), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117051] = 2, - ACTIONS(4921), 1, - anon_sym_COLON, + ACTIONS(4925), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117059] = 2, - ACTIONS(3427), 1, - anon_sym_COLON, + ACTIONS(4927), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117067] = 2, - ACTIONS(4923), 1, - sym_identifier, + ACTIONS(4110), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117075] = 2, - ACTIONS(4925), 1, - anon_sym_RPAREN, + ACTIONS(4929), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117083] = 2, - ACTIONS(4927), 1, - anon_sym_COLON, + ACTIONS(3062), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117091] = 2, - ACTIONS(4929), 1, - anon_sym_RBRACE, + ACTIONS(4931), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117099] = 2, - ACTIONS(4931), 1, - anon_sym_COLON, + ACTIONS(4933), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117107] = 2, - ACTIONS(4933), 1, + ACTIONS(4935), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117115] = 2, - ACTIONS(3050), 1, - anon_sym_RPAREN, + ACTIONS(4511), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117123] = 2, - ACTIONS(4935), 1, - anon_sym_COLON, + ACTIONS(4937), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117131] = 2, - ACTIONS(4937), 1, - anon_sym_RBRACE, + ACTIONS(4939), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117139] = 2, - ACTIONS(4939), 1, - anon_sym_RPAREN, + ACTIONS(4941), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117147] = 2, - ACTIONS(4941), 1, + ACTIONS(4943), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117155] = 2, - ACTIONS(4943), 1, - anon_sym_RBRACK, + ACTIONS(4945), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117163] = 2, - ACTIONS(4945), 1, - anon_sym_RBRACK, + ACTIONS(4947), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117171] = 2, - ACTIONS(4947), 1, + ACTIONS(4949), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117179] = 2, - ACTIONS(4949), 1, - sym_identifier, + ACTIONS(4951), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117187] = 2, - ACTIONS(4951), 1, + ACTIONS(4953), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117195] = 2, - ACTIONS(4953), 1, - anon_sym_RBRACE, + ACTIONS(4955), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117203] = 2, - ACTIONS(4955), 1, - anon_sym_COLON_EQ, + ACTIONS(4957), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117211] = 2, - ACTIONS(4957), 1, - anon_sym_RBRACK, + ACTIONS(4959), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117219] = 2, - ACTIONS(4959), 1, + ACTIONS(4961), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117227] = 2, - ACTIONS(4961), 1, - anon_sym_COLON, + ACTIONS(3050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117235] = 2, - ACTIONS(4067), 1, - anon_sym_in, + ACTIONS(4963), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117243] = 2, - ACTIONS(4963), 1, - anon_sym_RPAREN, + ACTIONS(4965), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117251] = 2, - ACTIONS(4965), 1, - sym_identifier, + ACTIONS(1467), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117259] = 2, ACTIONS(4967), 1, - sym_identifier, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117267] = 2, - ACTIONS(3065), 1, - anon_sym_RPAREN, + ACTIONS(4969), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117275] = 2, - ACTIONS(4969), 1, - anon_sym_RBRACE, + ACTIONS(4971), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117283] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACK, + ACTIONS(4973), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117291] = 2, - ACTIONS(4973), 1, - anon_sym_RPAREN, + ACTIONS(4975), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117299] = 2, - ACTIONS(4975), 1, - anon_sym_RBRACE, + ACTIONS(4977), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117307] = 2, - ACTIONS(4977), 1, - anon_sym_COLON, + ACTIONS(4979), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117315] = 2, - ACTIONS(4979), 1, + ACTIONS(4981), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117323] = 2, - ACTIONS(4981), 1, + ACTIONS(4983), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117331] = 2, - ACTIONS(4983), 1, - anon_sym_RPAREN, + ACTIONS(4985), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117339] = 2, - ACTIONS(4985), 1, - anon_sym_RBRACK, + ACTIONS(4987), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117347] = 2, - ACTIONS(4987), 1, - anon_sym_COLON, + ACTIONS(4989), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117355] = 2, - ACTIONS(4989), 1, + ACTIONS(4991), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117363] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + ACTIONS(4993), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117371] = 2, - ACTIONS(4993), 1, - anon_sym_RBRACK, + ACTIONS(4995), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117379] = 2, - ACTIONS(4995), 1, - anon_sym_import, + ACTIONS(4997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117387] = 2, - ACTIONS(4997), 1, - anon_sym_RBRACE, + ACTIONS(4999), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117395] = 2, - ACTIONS(4999), 1, - anon_sym_RPAREN, + ACTIONS(5001), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117403] = 2, - ACTIONS(5001), 1, - anon_sym_import, + ACTIONS(5003), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117411] = 2, - ACTIONS(3452), 1, - anon_sym_RBRACE, + ACTIONS(5005), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117419] = 2, - ACTIONS(5003), 1, - sym_identifier, + ACTIONS(5007), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117427] = 2, - ACTIONS(5005), 1, - anon_sym_RPAREN, + ACTIONS(4542), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117435] = 2, - ACTIONS(5007), 1, + ACTIONS(5009), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117443] = 2, - ACTIONS(3336), 1, - anon_sym_RBRACE, + ACTIONS(5011), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117451] = 2, - ACTIONS(5009), 1, - ts_builtin_sym_end, + ACTIONS(5013), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117459] = 2, - ACTIONS(5011), 1, + ACTIONS(5015), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117467] = 2, - ACTIONS(5013), 1, - sym_identifier, + ACTIONS(5017), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117475] = 2, - ACTIONS(5015), 1, + ACTIONS(5019), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117483] = 2, - ACTIONS(5017), 1, + ACTIONS(5021), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117491] = 2, - ACTIONS(5019), 1, - anon_sym_COLON, + ACTIONS(5023), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117499] = 2, - ACTIONS(5021), 1, - anon_sym_COLON, + ACTIONS(5025), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117507] = 2, - ACTIONS(5023), 1, + ACTIONS(5027), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117515] = 2, - ACTIONS(5025), 1, - sym_identifier, + ACTIONS(5029), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117523] = 2, - ACTIONS(5027), 1, - sym_identifier, + ACTIONS(4549), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117531] = 2, - ACTIONS(4046), 1, - anon_sym_in, + ACTIONS(1461), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117539] = 2, - ACTIONS(1465), 1, - anon_sym_def, + ACTIONS(5031), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117547] = 2, - ACTIONS(5029), 1, - anon_sym_for, + ACTIONS(5033), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117555] = 2, - ACTIONS(5031), 1, - anon_sym_RBRACK, + ACTIONS(4551), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117563] = 2, - ACTIONS(4044), 1, - anon_sym_in, + ACTIONS(5035), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117571] = 2, - ACTIONS(5033), 1, - anon_sym_for, + ACTIONS(5037), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117579] = 2, - ACTIONS(5035), 1, - anon_sym_RBRACE, + ACTIONS(3120), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117587] = 2, - ACTIONS(5037), 1, - anon_sym_RBRACE, + ACTIONS(3091), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -124237,38 +124237,38 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(189)] = 0, - [SMALL_STATE(190)] = 124, - [SMALL_STATE(191)] = 248, - [SMALL_STATE(192)] = 372, - [SMALL_STATE(193)] = 496, - [SMALL_STATE(194)] = 622, - [SMALL_STATE(195)] = 748, - [SMALL_STATE(196)] = 872, - [SMALL_STATE(197)] = 996, - [SMALL_STATE(198)] = 1120, - [SMALL_STATE(199)] = 1248, - [SMALL_STATE(200)] = 1372, - [SMALL_STATE(201)] = 1492, - [SMALL_STATE(202)] = 1612, - [SMALL_STATE(203)] = 1738, - [SMALL_STATE(204)] = 1862, - [SMALL_STATE(205)] = 1986, + [SMALL_STATE(190)] = 126, + [SMALL_STATE(191)] = 250, + [SMALL_STATE(192)] = 376, + [SMALL_STATE(193)] = 500, + [SMALL_STATE(194)] = 624, + [SMALL_STATE(195)] = 744, + [SMALL_STATE(196)] = 870, + [SMALL_STATE(197)] = 994, + [SMALL_STATE(198)] = 1118, + [SMALL_STATE(199)] = 1238, + [SMALL_STATE(200)] = 1358, + [SMALL_STATE(201)] = 1484, + [SMALL_STATE(202)] = 1610, + [SMALL_STATE(203)] = 1734, + [SMALL_STATE(204)] = 1860, + [SMALL_STATE(205)] = 1984, [SMALL_STATE(206)] = 2110, [SMALL_STATE(207)] = 2234, - [SMALL_STATE(208)] = 2360, - [SMALL_STATE(209)] = 2484, - [SMALL_STATE(210)] = 2608, - [SMALL_STATE(211)] = 2734, - [SMALL_STATE(212)] = 2858, - [SMALL_STATE(213)] = 2986, - [SMALL_STATE(214)] = 3110, + [SMALL_STATE(208)] = 2358, + [SMALL_STATE(209)] = 2482, + [SMALL_STATE(210)] = 2610, + [SMALL_STATE(211)] = 2738, + [SMALL_STATE(212)] = 2864, + [SMALL_STATE(213)] = 2988, + [SMALL_STATE(214)] = 3112, [SMALL_STATE(215)] = 3236, [SMALL_STATE(216)] = 3360, [SMALL_STATE(217)] = 3484, [SMALL_STATE(218)] = 3610, [SMALL_STATE(219)] = 3734, - [SMALL_STATE(220)] = 3860, - [SMALL_STATE(221)] = 3986, + [SMALL_STATE(220)] = 3858, + [SMALL_STATE(221)] = 3982, [SMALL_STATE(222)] = 4106, [SMALL_STATE(223)] = 4213, [SMALL_STATE(224)] = 4320, @@ -124276,122 +124276,122 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(226)] = 4548, [SMALL_STATE(227)] = 4662, [SMALL_STATE(228)] = 4776, - [SMALL_STATE(229)] = 4892, - [SMALL_STATE(230)] = 5006, + [SMALL_STATE(229)] = 4890, + [SMALL_STATE(230)] = 5004, [SMALL_STATE(231)] = 5120, [SMALL_STATE(232)] = 5234, [SMALL_STATE(233)] = 5348, [SMALL_STATE(234)] = 5464, - [SMALL_STATE(235)] = 5575, + [SMALL_STATE(235)] = 5579, [SMALL_STATE(236)] = 5690, [SMALL_STATE(237)] = 5801, [SMALL_STATE(238)] = 5912, - [SMALL_STATE(239)] = 6023, - [SMALL_STATE(240)] = 6134, - [SMALL_STATE(241)] = 6245, - [SMALL_STATE(242)] = 6356, - [SMALL_STATE(243)] = 6467, - [SMALL_STATE(244)] = 6582, - [SMALL_STATE(245)] = 6697, - [SMALL_STATE(246)] = 6812, - [SMALL_STATE(247)] = 6923, - [SMALL_STATE(248)] = 7034, - [SMALL_STATE(249)] = 7139, + [SMALL_STATE(239)] = 6029, + [SMALL_STATE(240)] = 6140, + [SMALL_STATE(241)] = 6251, + [SMALL_STATE(242)] = 6362, + [SMALL_STATE(243)] = 6473, + [SMALL_STATE(244)] = 6584, + [SMALL_STATE(245)] = 6695, + [SMALL_STATE(246)] = 6806, + [SMALL_STATE(247)] = 6917, + [SMALL_STATE(248)] = 7028, + [SMALL_STATE(249)] = 7143, [SMALL_STATE(250)] = 7254, [SMALL_STATE(251)] = 7365, - [SMALL_STATE(252)] = 7476, + [SMALL_STATE(252)] = 7480, [SMALL_STATE(253)] = 7591, - [SMALL_STATE(254)] = 7702, - [SMALL_STATE(255)] = 7817, - [SMALL_STATE(256)] = 7928, - [SMALL_STATE(257)] = 8039, - [SMALL_STATE(258)] = 8150, - [SMALL_STATE(259)] = 8265, - [SMALL_STATE(260)] = 8376, - [SMALL_STATE(261)] = 8487, - [SMALL_STATE(262)] = 8598, - [SMALL_STATE(263)] = 8709, + [SMALL_STATE(254)] = 7696, + [SMALL_STATE(255)] = 7801, + [SMALL_STATE(256)] = 7912, + [SMALL_STATE(257)] = 8027, + [SMALL_STATE(258)] = 8138, + [SMALL_STATE(259)] = 8249, + [SMALL_STATE(260)] = 8360, + [SMALL_STATE(261)] = 8475, + [SMALL_STATE(262)] = 8590, + [SMALL_STATE(263)] = 8705, [SMALL_STATE(264)] = 8820, [SMALL_STATE(265)] = 8931, - [SMALL_STATE(266)] = 9036, - [SMALL_STATE(267)] = 9147, - [SMALL_STATE(268)] = 9258, - [SMALL_STATE(269)] = 9369, - [SMALL_STATE(270)] = 9486, + [SMALL_STATE(266)] = 9042, + [SMALL_STATE(267)] = 9153, + [SMALL_STATE(268)] = 9268, + [SMALL_STATE(269)] = 9379, + [SMALL_STATE(270)] = 9490, [SMALL_STATE(271)] = 9601, [SMALL_STATE(272)] = 9712, - [SMALL_STATE(273)] = 9826, - [SMALL_STATE(274)] = 9938, + [SMALL_STATE(273)] = 9824, + [SMALL_STATE(274)] = 9936, [SMALL_STATE(275)] = 10052, - [SMALL_STATE(276)] = 10164, - [SMALL_STATE(277)] = 10276, - [SMALL_STATE(278)] = 10388, - [SMALL_STATE(279)] = 10500, + [SMALL_STATE(276)] = 10166, + [SMALL_STATE(277)] = 10278, + [SMALL_STATE(278)] = 10390, + [SMALL_STATE(279)] = 10502, [SMALL_STATE(280)] = 10616, [SMALL_STATE(281)] = 10728, - [SMALL_STATE(282)] = 10840, - [SMALL_STATE(283)] = 10952, - [SMALL_STATE(284)] = 11064, - [SMALL_STATE(285)] = 11176, + [SMALL_STATE(282)] = 10844, + [SMALL_STATE(283)] = 10956, + [SMALL_STATE(284)] = 11068, + [SMALL_STATE(285)] = 11180, [SMALL_STATE(286)] = 11292, [SMALL_STATE(287)] = 11404, - [SMALL_STATE(288)] = 11516, + [SMALL_STATE(288)] = 11518, [SMALL_STATE(289)] = 11630, - [SMALL_STATE(290)] = 11742, - [SMALL_STATE(291)] = 11856, - [SMALL_STATE(292)] = 11968, - [SMALL_STATE(293)] = 12084, - [SMALL_STATE(294)] = 12196, - [SMALL_STATE(295)] = 12312, - [SMALL_STATE(296)] = 12424, - [SMALL_STATE(297)] = 12536, - [SMALL_STATE(298)] = 12648, - [SMALL_STATE(299)] = 12762, - [SMALL_STATE(300)] = 12876, - [SMALL_STATE(301)] = 12988, - [SMALL_STATE(302)] = 13100, - [SMALL_STATE(303)] = 13212, - [SMALL_STATE(304)] = 13324, - [SMALL_STATE(305)] = 13436, - [SMALL_STATE(306)] = 13548, - [SMALL_STATE(307)] = 13660, - [SMALL_STATE(308)] = 13772, - [SMALL_STATE(309)] = 13884, - [SMALL_STATE(310)] = 13998, - [SMALL_STATE(311)] = 14110, - [SMALL_STATE(312)] = 14222, - [SMALL_STATE(313)] = 14334, - [SMALL_STATE(314)] = 14446, - [SMALL_STATE(315)] = 14562, - [SMALL_STATE(316)] = 14674, - [SMALL_STATE(317)] = 14786, - [SMALL_STATE(318)] = 14898, - [SMALL_STATE(319)] = 15010, - [SMALL_STATE(320)] = 15122, - [SMALL_STATE(321)] = 15238, - [SMALL_STATE(322)] = 15350, - [SMALL_STATE(323)] = 15462, - [SMALL_STATE(324)] = 15574, - [SMALL_STATE(325)] = 15688, + [SMALL_STATE(290)] = 11746, + [SMALL_STATE(291)] = 11858, + [SMALL_STATE(292)] = 11970, + [SMALL_STATE(293)] = 12082, + [SMALL_STATE(294)] = 12194, + [SMALL_STATE(295)] = 12306, + [SMALL_STATE(296)] = 12420, + [SMALL_STATE(297)] = 12532, + [SMALL_STATE(298)] = 12644, + [SMALL_STATE(299)] = 12756, + [SMALL_STATE(300)] = 12868, + [SMALL_STATE(301)] = 12980, + [SMALL_STATE(302)] = 13094, + [SMALL_STATE(303)] = 13206, + [SMALL_STATE(304)] = 13322, + [SMALL_STATE(305)] = 13434, + [SMALL_STATE(306)] = 13546, + [SMALL_STATE(307)] = 13658, + [SMALL_STATE(308)] = 13770, + [SMALL_STATE(309)] = 13882, + [SMALL_STATE(310)] = 13996, + [SMALL_STATE(311)] = 14108, + [SMALL_STATE(312)] = 14220, + [SMALL_STATE(313)] = 14332, + [SMALL_STATE(314)] = 14444, + [SMALL_STATE(315)] = 14556, + [SMALL_STATE(316)] = 14670, + [SMALL_STATE(317)] = 14782, + [SMALL_STATE(318)] = 14894, + [SMALL_STATE(319)] = 15006, + [SMALL_STATE(320)] = 15118, + [SMALL_STATE(321)] = 15230, + [SMALL_STATE(322)] = 15344, + [SMALL_STATE(323)] = 15456, + [SMALL_STATE(324)] = 15572, + [SMALL_STATE(325)] = 15684, [SMALL_STATE(326)] = 15800, [SMALL_STATE(327)] = 15909, [SMALL_STATE(328)] = 16018, [SMALL_STATE(329)] = 16123, [SMALL_STATE(330)] = 16232, - [SMALL_STATE(331)] = 16329, - [SMALL_STATE(332)] = 16438, - [SMALL_STATE(333)] = 16547, - [SMALL_STATE(334)] = 16656, - [SMALL_STATE(335)] = 16765, - [SMALL_STATE(336)] = 16874, - [SMALL_STATE(337)] = 16983, - [SMALL_STATE(338)] = 17092, - [SMALL_STATE(339)] = 17201, - [SMALL_STATE(340)] = 17310, - [SMALL_STATE(341)] = 17419, - [SMALL_STATE(342)] = 17528, - [SMALL_STATE(343)] = 17637, - [SMALL_STATE(344)] = 17746, + [SMALL_STATE(331)] = 16341, + [SMALL_STATE(332)] = 16450, + [SMALL_STATE(333)] = 16559, + [SMALL_STATE(334)] = 16668, + [SMALL_STATE(335)] = 16777, + [SMALL_STATE(336)] = 16886, + [SMALL_STATE(337)] = 16995, + [SMALL_STATE(338)] = 17104, + [SMALL_STATE(339)] = 17213, + [SMALL_STATE(340)] = 17322, + [SMALL_STATE(341)] = 17431, + [SMALL_STATE(342)] = 17540, + [SMALL_STATE(343)] = 17645, + [SMALL_STATE(344)] = 17754, [SMALL_STATE(345)] = 17851, [SMALL_STATE(346)] = 17960, [SMALL_STATE(347)] = 18069, @@ -124412,46 +124412,46 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(362)] = 19686, [SMALL_STATE(363)] = 19794, [SMALL_STATE(364)] = 19902, - [SMALL_STATE(365)] = 20008, - [SMALL_STATE(366)] = 20116, - [SMALL_STATE(367)] = 20224, - [SMALL_STATE(368)] = 20332, - [SMALL_STATE(369)] = 20440, + [SMALL_STATE(365)] = 20010, + [SMALL_STATE(366)] = 20118, + [SMALL_STATE(367)] = 20226, + [SMALL_STATE(368)] = 20334, + [SMALL_STATE(369)] = 20442, [SMALL_STATE(370)] = 20548, [SMALL_STATE(371)] = 20656, [SMALL_STATE(372)] = 20763, - [SMALL_STATE(373)] = 20870, - [SMALL_STATE(374)] = 20977, - [SMALL_STATE(375)] = 21084, - [SMALL_STATE(376)] = 21191, - [SMALL_STATE(377)] = 21298, - [SMALL_STATE(378)] = 21405, + [SMALL_STATE(373)] = 20868, + [SMALL_STATE(374)] = 20975, + [SMALL_STATE(375)] = 21082, + [SMALL_STATE(376)] = 21189, + [SMALL_STATE(377)] = 21296, + [SMALL_STATE(378)] = 21403, [SMALL_STATE(379)] = 21510, [SMALL_STATE(380)] = 21617, - [SMALL_STATE(381)] = 21724, - [SMALL_STATE(382)] = 21829, + [SMALL_STATE(381)] = 21722, + [SMALL_STATE(382)] = 21827, [SMALL_STATE(383)] = 21934, [SMALL_STATE(384)] = 22039, [SMALL_STATE(385)] = 22146, - [SMALL_STATE(386)] = 22241, - [SMALL_STATE(387)] = 22348, - [SMALL_STATE(388)] = 22455, - [SMALL_STATE(389)] = 22562, + [SMALL_STATE(386)] = 22253, + [SMALL_STATE(387)] = 22360, + [SMALL_STATE(388)] = 22467, + [SMALL_STATE(389)] = 22574, [SMALL_STATE(390)] = 22669, [SMALL_STATE(391)] = 22776, [SMALL_STATE(392)] = 22883, - [SMALL_STATE(393)] = 22988, - [SMALL_STATE(394)] = 23095, - [SMALL_STATE(395)] = 23202, - [SMALL_STATE(396)] = 23309, - [SMALL_STATE(397)] = 23416, - [SMALL_STATE(398)] = 23523, - [SMALL_STATE(399)] = 23628, - [SMALL_STATE(400)] = 23735, - [SMALL_STATE(401)] = 23842, - [SMALL_STATE(402)] = 23937, - [SMALL_STATE(403)] = 24044, - [SMALL_STATE(404)] = 24151, + [SMALL_STATE(393)] = 22990, + [SMALL_STATE(394)] = 23097, + [SMALL_STATE(395)] = 23204, + [SMALL_STATE(396)] = 23311, + [SMALL_STATE(397)] = 23418, + [SMALL_STATE(398)] = 23525, + [SMALL_STATE(399)] = 23632, + [SMALL_STATE(400)] = 23739, + [SMALL_STATE(401)] = 23846, + [SMALL_STATE(402)] = 23951, + [SMALL_STATE(403)] = 24058, + [SMALL_STATE(404)] = 24163, [SMALL_STATE(405)] = 24258, [SMALL_STATE(406)] = 24365, [SMALL_STATE(407)] = 24472, @@ -124459,71 +124459,71 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(409)] = 24686, [SMALL_STATE(410)] = 24790, [SMALL_STATE(411)] = 24894, - [SMALL_STATE(412)] = 24998, - [SMALL_STATE(413)] = 25100, - [SMALL_STATE(414)] = 25204, - [SMALL_STATE(415)] = 25308, - [SMALL_STATE(416)] = 25410, - [SMALL_STATE(417)] = 25514, - [SMALL_STATE(418)] = 25618, - [SMALL_STATE(419)] = 25720, - [SMALL_STATE(420)] = 25824, - [SMALL_STATE(421)] = 25926, - [SMALL_STATE(422)] = 26030, - [SMALL_STATE(423)] = 26132, - [SMALL_STATE(424)] = 26234, - [SMALL_STATE(425)] = 26336, - [SMALL_STATE(426)] = 26430, - [SMALL_STATE(427)] = 26534, - [SMALL_STATE(428)] = 26636, - [SMALL_STATE(429)] = 26730, - [SMALL_STATE(430)] = 26824, - [SMALL_STATE(431)] = 26926, + [SMALL_STATE(412)] = 24996, + [SMALL_STATE(413)] = 25098, + [SMALL_STATE(414)] = 25200, + [SMALL_STATE(415)] = 25302, + [SMALL_STATE(416)] = 25404, + [SMALL_STATE(417)] = 25508, + [SMALL_STATE(418)] = 25602, + [SMALL_STATE(419)] = 25704, + [SMALL_STATE(420)] = 25806, + [SMALL_STATE(421)] = 25908, + [SMALL_STATE(422)] = 26010, + [SMALL_STATE(423)] = 26104, + [SMALL_STATE(424)] = 26200, + [SMALL_STATE(425)] = 26302, + [SMALL_STATE(426)] = 26404, + [SMALL_STATE(427)] = 26506, + [SMALL_STATE(428)] = 26608, + [SMALL_STATE(429)] = 26712, + [SMALL_STATE(430)] = 26816, + [SMALL_STATE(431)] = 26918, [SMALL_STATE(432)] = 27022, [SMALL_STATE(433)] = 27124, [SMALL_STATE(434)] = 27226, - [SMALL_STATE(435)] = 27330, - [SMALL_STATE(436)] = 27432, - [SMALL_STATE(437)] = 27536, - [SMALL_STATE(438)] = 27638, - [SMALL_STATE(439)] = 27740, - [SMALL_STATE(440)] = 27844, - [SMALL_STATE(441)] = 27946, - [SMALL_STATE(442)] = 28050, - [SMALL_STATE(443)] = 28152, - [SMALL_STATE(444)] = 28254, - [SMALL_STATE(445)] = 28356, - [SMALL_STATE(446)] = 28458, - [SMALL_STATE(447)] = 28560, - [SMALL_STATE(448)] = 28662, - [SMALL_STATE(449)] = 28766, - [SMALL_STATE(450)] = 28868, - [SMALL_STATE(451)] = 28972, - [SMALL_STATE(452)] = 29074, - [SMALL_STATE(453)] = 29178, - [SMALL_STATE(454)] = 29280, - [SMALL_STATE(455)] = 29382, - [SMALL_STATE(456)] = 29486, - [SMALL_STATE(457)] = 29590, - [SMALL_STATE(458)] = 29692, - [SMALL_STATE(459)] = 29794, - [SMALL_STATE(460)] = 29896, + [SMALL_STATE(435)] = 27328, + [SMALL_STATE(436)] = 27430, + [SMALL_STATE(437)] = 27532, + [SMALL_STATE(438)] = 27634, + [SMALL_STATE(439)] = 27736, + [SMALL_STATE(440)] = 27830, + [SMALL_STATE(441)] = 27934, + [SMALL_STATE(442)] = 28036, + [SMALL_STATE(443)] = 28138, + [SMALL_STATE(444)] = 28242, + [SMALL_STATE(445)] = 28346, + [SMALL_STATE(446)] = 28450, + [SMALL_STATE(447)] = 28544, + [SMALL_STATE(448)] = 28648, + [SMALL_STATE(449)] = 28752, + [SMALL_STATE(450)] = 28856, + [SMALL_STATE(451)] = 28960, + [SMALL_STATE(452)] = 29064, + [SMALL_STATE(453)] = 29166, + [SMALL_STATE(454)] = 29268, + [SMALL_STATE(455)] = 29372, + [SMALL_STATE(456)] = 29476, + [SMALL_STATE(457)] = 29578, + [SMALL_STATE(458)] = 29680, + [SMALL_STATE(459)] = 29782, + [SMALL_STATE(460)] = 29886, [SMALL_STATE(461)] = 29990, [SMALL_STATE(462)] = 30065, [SMALL_STATE(463)] = 30166, - [SMALL_STATE(464)] = 30267, + [SMALL_STATE(464)] = 30241, [SMALL_STATE(465)] = 30342, [SMALL_STATE(466)] = 30443, [SMALL_STATE(467)] = 30544, - [SMALL_STATE(468)] = 30621, - [SMALL_STATE(469)] = 30722, - [SMALL_STATE(470)] = 30823, - [SMALL_STATE(471)] = 30924, - [SMALL_STATE(472)] = 31025, - [SMALL_STATE(473)] = 31100, - [SMALL_STATE(474)] = 31201, - [SMALL_STATE(475)] = 31302, - [SMALL_STATE(476)] = 31403, + [SMALL_STATE(468)] = 30619, + [SMALL_STATE(469)] = 30720, + [SMALL_STATE(470)] = 30821, + [SMALL_STATE(471)] = 30922, + [SMALL_STATE(472)] = 31023, + [SMALL_STATE(473)] = 31124, + [SMALL_STATE(474)] = 31225, + [SMALL_STATE(475)] = 31326, + [SMALL_STATE(476)] = 31427, [SMALL_STATE(477)] = 31504, [SMALL_STATE(478)] = 31605, [SMALL_STATE(479)] = 31706, @@ -124533,116 +124533,116 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(483)] = 32101, [SMALL_STATE(484)] = 32199, [SMALL_STATE(485)] = 32297, - [SMALL_STATE(486)] = 32395, - [SMALL_STATE(487)] = 32493, - [SMALL_STATE(488)] = 32591, - [SMALL_STATE(489)] = 32689, - [SMALL_STATE(490)] = 32787, - [SMALL_STATE(491)] = 32885, - [SMALL_STATE(492)] = 32983, - [SMALL_STATE(493)] = 33081, - [SMALL_STATE(494)] = 33179, - [SMALL_STATE(495)] = 33277, - [SMALL_STATE(496)] = 33375, - [SMALL_STATE(497)] = 33473, - [SMALL_STATE(498)] = 33571, - [SMALL_STATE(499)] = 33669, - [SMALL_STATE(500)] = 33767, - [SMALL_STATE(501)] = 33865, - [SMALL_STATE(502)] = 33963, - [SMALL_STATE(503)] = 34061, - [SMALL_STATE(504)] = 34159, - [SMALL_STATE(505)] = 34257, - [SMALL_STATE(506)] = 34355, - [SMALL_STATE(507)] = 34453, - [SMALL_STATE(508)] = 34551, - [SMALL_STATE(509)] = 34649, - [SMALL_STATE(510)] = 34747, - [SMALL_STATE(511)] = 34845, - [SMALL_STATE(512)] = 34943, - [SMALL_STATE(513)] = 35041, - [SMALL_STATE(514)] = 35139, - [SMALL_STATE(515)] = 35237, - [SMALL_STATE(516)] = 35335, - [SMALL_STATE(517)] = 35433, - [SMALL_STATE(518)] = 35531, - [SMALL_STATE(519)] = 35629, - [SMALL_STATE(520)] = 35727, - [SMALL_STATE(521)] = 35825, - [SMALL_STATE(522)] = 35923, - [SMALL_STATE(523)] = 36021, - [SMALL_STATE(524)] = 36119, - [SMALL_STATE(525)] = 36217, - [SMALL_STATE(526)] = 36289, - [SMALL_STATE(527)] = 36361, - [SMALL_STATE(528)] = 36459, - [SMALL_STATE(529)] = 36557, - [SMALL_STATE(530)] = 36655, - [SMALL_STATE(531)] = 36753, - [SMALL_STATE(532)] = 36851, - [SMALL_STATE(533)] = 36949, - [SMALL_STATE(534)] = 37047, - [SMALL_STATE(535)] = 37145, - [SMALL_STATE(536)] = 37243, - [SMALL_STATE(537)] = 37341, - [SMALL_STATE(538)] = 37439, - [SMALL_STATE(539)] = 37537, - [SMALL_STATE(540)] = 37635, - [SMALL_STATE(541)] = 37733, - [SMALL_STATE(542)] = 37831, - [SMALL_STATE(543)] = 37929, - [SMALL_STATE(544)] = 38027, - [SMALL_STATE(545)] = 38125, - [SMALL_STATE(546)] = 38223, - [SMALL_STATE(547)] = 38321, - [SMALL_STATE(548)] = 38419, - [SMALL_STATE(549)] = 38517, - [SMALL_STATE(550)] = 38615, - [SMALL_STATE(551)] = 38713, - [SMALL_STATE(552)] = 38811, - [SMALL_STATE(553)] = 38909, - [SMALL_STATE(554)] = 39007, - [SMALL_STATE(555)] = 39105, - [SMALL_STATE(556)] = 39203, - [SMALL_STATE(557)] = 39301, - [SMALL_STATE(558)] = 39399, - [SMALL_STATE(559)] = 39497, - [SMALL_STATE(560)] = 39595, - [SMALL_STATE(561)] = 39693, - [SMALL_STATE(562)] = 39791, - [SMALL_STATE(563)] = 39889, - [SMALL_STATE(564)] = 39987, - [SMALL_STATE(565)] = 40085, - [SMALL_STATE(566)] = 40157, - [SMALL_STATE(567)] = 40255, - [SMALL_STATE(568)] = 40353, - [SMALL_STATE(569)] = 40453, - [SMALL_STATE(570)] = 40551, - [SMALL_STATE(571)] = 40651, - [SMALL_STATE(572)] = 40723, - [SMALL_STATE(573)] = 40823, - [SMALL_STATE(574)] = 40921, + [SMALL_STATE(486)] = 32369, + [SMALL_STATE(487)] = 32441, + [SMALL_STATE(488)] = 32539, + [SMALL_STATE(489)] = 32637, + [SMALL_STATE(490)] = 32735, + [SMALL_STATE(491)] = 32833, + [SMALL_STATE(492)] = 32931, + [SMALL_STATE(493)] = 33029, + [SMALL_STATE(494)] = 33127, + [SMALL_STATE(495)] = 33225, + [SMALL_STATE(496)] = 33323, + [SMALL_STATE(497)] = 33421, + [SMALL_STATE(498)] = 33519, + [SMALL_STATE(499)] = 33617, + [SMALL_STATE(500)] = 33715, + [SMALL_STATE(501)] = 33813, + [SMALL_STATE(502)] = 33911, + [SMALL_STATE(503)] = 34009, + [SMALL_STATE(504)] = 34107, + [SMALL_STATE(505)] = 34205, + [SMALL_STATE(506)] = 34303, + [SMALL_STATE(507)] = 34401, + [SMALL_STATE(508)] = 34499, + [SMALL_STATE(509)] = 34597, + [SMALL_STATE(510)] = 34695, + [SMALL_STATE(511)] = 34793, + [SMALL_STATE(512)] = 34891, + [SMALL_STATE(513)] = 34989, + [SMALL_STATE(514)] = 35087, + [SMALL_STATE(515)] = 35185, + [SMALL_STATE(516)] = 35283, + [SMALL_STATE(517)] = 35381, + [SMALL_STATE(518)] = 35479, + [SMALL_STATE(519)] = 35577, + [SMALL_STATE(520)] = 35675, + [SMALL_STATE(521)] = 35773, + [SMALL_STATE(522)] = 35871, + [SMALL_STATE(523)] = 35969, + [SMALL_STATE(524)] = 36067, + [SMALL_STATE(525)] = 36165, + [SMALL_STATE(526)] = 36263, + [SMALL_STATE(527)] = 36363, + [SMALL_STATE(528)] = 36461, + [SMALL_STATE(529)] = 36559, + [SMALL_STATE(530)] = 36657, + [SMALL_STATE(531)] = 36755, + [SMALL_STATE(532)] = 36853, + [SMALL_STATE(533)] = 36951, + [SMALL_STATE(534)] = 37049, + [SMALL_STATE(535)] = 37147, + [SMALL_STATE(536)] = 37245, + [SMALL_STATE(537)] = 37343, + [SMALL_STATE(538)] = 37441, + [SMALL_STATE(539)] = 37539, + [SMALL_STATE(540)] = 37637, + [SMALL_STATE(541)] = 37735, + [SMALL_STATE(542)] = 37833, + [SMALL_STATE(543)] = 37931, + [SMALL_STATE(544)] = 38029, + [SMALL_STATE(545)] = 38127, + [SMALL_STATE(546)] = 38225, + [SMALL_STATE(547)] = 38323, + [SMALL_STATE(548)] = 38421, + [SMALL_STATE(549)] = 38519, + [SMALL_STATE(550)] = 38617, + [SMALL_STATE(551)] = 38715, + [SMALL_STATE(552)] = 38815, + [SMALL_STATE(553)] = 38913, + [SMALL_STATE(554)] = 39011, + [SMALL_STATE(555)] = 39109, + [SMALL_STATE(556)] = 39207, + [SMALL_STATE(557)] = 39305, + [SMALL_STATE(558)] = 39403, + [SMALL_STATE(559)] = 39501, + [SMALL_STATE(560)] = 39599, + [SMALL_STATE(561)] = 39697, + [SMALL_STATE(562)] = 39797, + [SMALL_STATE(563)] = 39869, + [SMALL_STATE(564)] = 39941, + [SMALL_STATE(565)] = 40039, + [SMALL_STATE(566)] = 40137, + [SMALL_STATE(567)] = 40235, + [SMALL_STATE(568)] = 40333, + [SMALL_STATE(569)] = 40431, + [SMALL_STATE(570)] = 40529, + [SMALL_STATE(571)] = 40627, + [SMALL_STATE(572)] = 40725, + [SMALL_STATE(573)] = 40825, + [SMALL_STATE(574)] = 40923, [SMALL_STATE(575)] = 41021, [SMALL_STATE(576)] = 41119, [SMALL_STATE(577)] = 41217, - [SMALL_STATE(578)] = 41317, - [SMALL_STATE(579)] = 41415, - [SMALL_STATE(580)] = 41513, - [SMALL_STATE(581)] = 41611, - [SMALL_STATE(582)] = 41709, + [SMALL_STATE(578)] = 41315, + [SMALL_STATE(579)] = 41413, + [SMALL_STATE(580)] = 41511, + [SMALL_STATE(581)] = 41609, + [SMALL_STATE(582)] = 41707, [SMALL_STATE(583)] = 41807, - [SMALL_STATE(584)] = 41879, - [SMALL_STATE(585)] = 41977, - [SMALL_STATE(586)] = 42049, - [SMALL_STATE(587)] = 42147, - [SMALL_STATE(588)] = 42219, - [SMALL_STATE(589)] = 42317, - [SMALL_STATE(590)] = 42415, - [SMALL_STATE(591)] = 42513, - [SMALL_STATE(592)] = 42585, - [SMALL_STATE(593)] = 42683, - [SMALL_STATE(594)] = 42781, - [SMALL_STATE(595)] = 42879, + [SMALL_STATE(584)] = 41905, + [SMALL_STATE(585)] = 42003, + [SMALL_STATE(586)] = 42101, + [SMALL_STATE(587)] = 42199, + [SMALL_STATE(588)] = 42297, + [SMALL_STATE(589)] = 42395, + [SMALL_STATE(590)] = 42495, + [SMALL_STATE(591)] = 42567, + [SMALL_STATE(592)] = 42639, + [SMALL_STATE(593)] = 42737, + [SMALL_STATE(594)] = 42835, + [SMALL_STATE(595)] = 42907, [SMALL_STATE(596)] = 42979, [SMALL_STATE(597)] = 43077, [SMALL_STATE(598)] = 43175, @@ -124658,86 +124658,86 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(608)] = 44155, [SMALL_STATE(609)] = 44253, [SMALL_STATE(610)] = 44326, - [SMALL_STATE(611)] = 44388, - [SMALL_STATE(612)] = 44450, - [SMALL_STATE(613)] = 44518, - [SMALL_STATE(614)] = 44586, - [SMALL_STATE(615)] = 44654, - [SMALL_STATE(616)] = 44722, - [SMALL_STATE(617)] = 44784, - [SMALL_STATE(618)] = 44852, - [SMALL_STATE(619)] = 44920, - [SMALL_STATE(620)] = 44986, - [SMALL_STATE(621)] = 45048, - [SMALL_STATE(622)] = 45114, - [SMALL_STATE(623)] = 45182, - [SMALL_STATE(624)] = 45250, - [SMALL_STATE(625)] = 45316, - [SMALL_STATE(626)] = 45384, + [SMALL_STATE(611)] = 44394, + [SMALL_STATE(612)] = 44462, + [SMALL_STATE(613)] = 44528, + [SMALL_STATE(614)] = 44596, + [SMALL_STATE(615)] = 44664, + [SMALL_STATE(616)] = 44732, + [SMALL_STATE(617)] = 44800, + [SMALL_STATE(618)] = 44866, + [SMALL_STATE(619)] = 44934, + [SMALL_STATE(620)] = 45002, + [SMALL_STATE(621)] = 45070, + [SMALL_STATE(622)] = 45138, + [SMALL_STATE(623)] = 45200, + [SMALL_STATE(624)] = 45262, + [SMALL_STATE(625)] = 45324, + [SMALL_STATE(626)] = 45386, [SMALL_STATE(627)] = 45452, [SMALL_STATE(628)] = 45509, [SMALL_STATE(629)] = 45572, - [SMALL_STATE(630)] = 45633, - [SMALL_STATE(631)] = 45696, + [SMALL_STATE(630)] = 45635, + [SMALL_STATE(631)] = 45698, [SMALL_STATE(632)] = 45761, [SMALL_STATE(633)] = 45824, [SMALL_STATE(634)] = 45887, [SMALL_STATE(635)] = 45950, [SMALL_STATE(636)] = 46013, - [SMALL_STATE(637)] = 46076, - [SMALL_STATE(638)] = 46139, - [SMALL_STATE(639)] = 46202, - [SMALL_STATE(640)] = 46259, - [SMALL_STATE(641)] = 46316, - [SMALL_STATE(642)] = 46379, + [SMALL_STATE(637)] = 46078, + [SMALL_STATE(638)] = 46135, + [SMALL_STATE(639)] = 46196, + [SMALL_STATE(640)] = 46257, + [SMALL_STATE(641)] = 46320, + [SMALL_STATE(642)] = 46383, [SMALL_STATE(643)] = 46440, [SMALL_STATE(644)] = 46497, [SMALL_STATE(645)] = 46554, - [SMALL_STATE(646)] = 46615, + [SMALL_STATE(646)] = 46611, [SMALL_STATE(647)] = 46672, [SMALL_STATE(648)] = 46729, [SMALL_STATE(649)] = 46785, [SMALL_STATE(650)] = 46841, [SMALL_STATE(651)] = 46897, - [SMALL_STATE(652)] = 46989, - [SMALL_STATE(653)] = 47045, - [SMALL_STATE(654)] = 47101, - [SMALL_STATE(655)] = 47157, - [SMALL_STATE(656)] = 47213, + [SMALL_STATE(652)] = 46953, + [SMALL_STATE(653)] = 47009, + [SMALL_STATE(654)] = 47065, + [SMALL_STATE(655)] = 47121, + [SMALL_STATE(656)] = 47177, [SMALL_STATE(657)] = 47269, [SMALL_STATE(658)] = 47325, [SMALL_STATE(659)] = 47381, [SMALL_STATE(660)] = 47437, [SMALL_STATE(661)] = 47493, - [SMALL_STATE(662)] = 47585, - [SMALL_STATE(663)] = 47641, - [SMALL_STATE(664)] = 47697, - [SMALL_STATE(665)] = 47753, - [SMALL_STATE(666)] = 47809, - [SMALL_STATE(667)] = 47865, - [SMALL_STATE(668)] = 47921, - [SMALL_STATE(669)] = 47977, - [SMALL_STATE(670)] = 48033, - [SMALL_STATE(671)] = 48089, - [SMALL_STATE(672)] = 48145, - [SMALL_STATE(673)] = 48201, - [SMALL_STATE(674)] = 48257, - [SMALL_STATE(675)] = 48313, - [SMALL_STATE(676)] = 48369, - [SMALL_STATE(677)] = 48425, - [SMALL_STATE(678)] = 48481, - [SMALL_STATE(679)] = 48537, - [SMALL_STATE(680)] = 48593, - [SMALL_STATE(681)] = 48649, - [SMALL_STATE(682)] = 48705, - [SMALL_STATE(683)] = 48761, - [SMALL_STATE(684)] = 48817, - [SMALL_STATE(685)] = 48873, - [SMALL_STATE(686)] = 48929, - [SMALL_STATE(687)] = 48985, - [SMALL_STATE(688)] = 49041, - [SMALL_STATE(689)] = 49097, - [SMALL_STATE(690)] = 49153, + [SMALL_STATE(662)] = 47549, + [SMALL_STATE(663)] = 47605, + [SMALL_STATE(664)] = 47661, + [SMALL_STATE(665)] = 47717, + [SMALL_STATE(666)] = 47773, + [SMALL_STATE(667)] = 47829, + [SMALL_STATE(668)] = 47885, + [SMALL_STATE(669)] = 47941, + [SMALL_STATE(670)] = 47997, + [SMALL_STATE(671)] = 48053, + [SMALL_STATE(672)] = 48109, + [SMALL_STATE(673)] = 48165, + [SMALL_STATE(674)] = 48221, + [SMALL_STATE(675)] = 48277, + [SMALL_STATE(676)] = 48333, + [SMALL_STATE(677)] = 48389, + [SMALL_STATE(678)] = 48445, + [SMALL_STATE(679)] = 48501, + [SMALL_STATE(680)] = 48557, + [SMALL_STATE(681)] = 48613, + [SMALL_STATE(682)] = 48669, + [SMALL_STATE(683)] = 48725, + [SMALL_STATE(684)] = 48781, + [SMALL_STATE(685)] = 48837, + [SMALL_STATE(686)] = 48893, + [SMALL_STATE(687)] = 48949, + [SMALL_STATE(688)] = 49005, + [SMALL_STATE(689)] = 49061, + [SMALL_STATE(690)] = 49117, [SMALL_STATE(691)] = 49209, [SMALL_STATE(692)] = 49265, [SMALL_STATE(693)] = 49321, @@ -124751,30 +124751,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(701)] = 49772, [SMALL_STATE(702)] = 49827, [SMALL_STATE(703)] = 49886, - [SMALL_STATE(704)] = 49941, - [SMALL_STATE(705)] = 50000, - [SMALL_STATE(706)] = 50059, - [SMALL_STATE(707)] = 50114, - [SMALL_STATE(708)] = 50173, - [SMALL_STATE(709)] = 50232, + [SMALL_STATE(704)] = 49945, + [SMALL_STATE(705)] = 50004, + [SMALL_STATE(706)] = 50063, + [SMALL_STATE(707)] = 50122, + [SMALL_STATE(708)] = 50177, + [SMALL_STATE(709)] = 50236, [SMALL_STATE(710)] = 50291, - [SMALL_STATE(711)] = 50350, - [SMALL_STATE(712)] = 50409, - [SMALL_STATE(713)] = 50468, - [SMALL_STATE(714)] = 50527, - [SMALL_STATE(715)] = 50582, - [SMALL_STATE(716)] = 50641, - [SMALL_STATE(717)] = 50700, - [SMALL_STATE(718)] = 50755, - [SMALL_STATE(719)] = 50814, + [SMALL_STATE(711)] = 50346, + [SMALL_STATE(712)] = 50405, + [SMALL_STATE(713)] = 50464, + [SMALL_STATE(714)] = 50523, + [SMALL_STATE(715)] = 50578, + [SMALL_STATE(716)] = 50637, + [SMALL_STATE(717)] = 50692, + [SMALL_STATE(718)] = 50751, + [SMALL_STATE(719)] = 50810, [SMALL_STATE(720)] = 50869, [SMALL_STATE(721)] = 50928, [SMALL_STATE(722)] = 50987, - [SMALL_STATE(723)] = 51041, - [SMALL_STATE(724)] = 51095, - [SMALL_STATE(725)] = 51149, - [SMALL_STATE(726)] = 51203, - [SMALL_STATE(727)] = 51295, + [SMALL_STATE(723)] = 51079, + [SMALL_STATE(724)] = 51133, + [SMALL_STATE(725)] = 51225, + [SMALL_STATE(726)] = 51279, + [SMALL_STATE(727)] = 51333, [SMALL_STATE(728)] = 51387, [SMALL_STATE(729)] = 51440, [SMALL_STATE(730)] = 51493, @@ -124787,17 +124787,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(737)] = 51864, [SMALL_STATE(738)] = 51917, [SMALL_STATE(739)] = 51970, - [SMALL_STATE(740)] = 52059, - [SMALL_STATE(741)] = 52112, - [SMALL_STATE(742)] = 52165, + [SMALL_STATE(740)] = 52023, + [SMALL_STATE(741)] = 52076, + [SMALL_STATE(742)] = 52129, [SMALL_STATE(743)] = 52218, - [SMALL_STATE(744)] = 52271, - [SMALL_STATE(745)] = 52324, - [SMALL_STATE(746)] = 52377, - [SMALL_STATE(747)] = 52430, - [SMALL_STATE(748)] = 52483, - [SMALL_STATE(749)] = 52536, - [SMALL_STATE(750)] = 52589, + [SMALL_STATE(744)] = 52307, + [SMALL_STATE(745)] = 52360, + [SMALL_STATE(746)] = 52413, + [SMALL_STATE(747)] = 52466, + [SMALL_STATE(748)] = 52519, + [SMALL_STATE(749)] = 52572, + [SMALL_STATE(750)] = 52625, [SMALL_STATE(751)] = 52678, [SMALL_STATE(752)] = 52731, [SMALL_STATE(753)] = 52784, @@ -124813,52 +124813,52 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(763)] = 53314, [SMALL_STATE(764)] = 53367, [SMALL_STATE(765)] = 53420, - [SMALL_STATE(766)] = 53509, - [SMALL_STATE(767)] = 53598, - [SMALL_STATE(768)] = 53651, + [SMALL_STATE(766)] = 53473, + [SMALL_STATE(767)] = 53526, + [SMALL_STATE(768)] = 53615, [SMALL_STATE(769)] = 53704, - [SMALL_STATE(770)] = 53793, - [SMALL_STATE(771)] = 53846, - [SMALL_STATE(772)] = 53899, - [SMALL_STATE(773)] = 53952, - [SMALL_STATE(774)] = 54005, - [SMALL_STATE(775)] = 54058, - [SMALL_STATE(776)] = 54147, - [SMALL_STATE(777)] = 54200, - [SMALL_STATE(778)] = 54253, - [SMALL_STATE(779)] = 54306, - [SMALL_STATE(780)] = 54359, - [SMALL_STATE(781)] = 54412, + [SMALL_STATE(770)] = 53757, + [SMALL_STATE(771)] = 53810, + [SMALL_STATE(772)] = 53863, + [SMALL_STATE(773)] = 53916, + [SMALL_STATE(774)] = 53969, + [SMALL_STATE(775)] = 54022, + [SMALL_STATE(776)] = 54075, + [SMALL_STATE(777)] = 54128, + [SMALL_STATE(778)] = 54181, + [SMALL_STATE(779)] = 54234, + [SMALL_STATE(780)] = 54287, + [SMALL_STATE(781)] = 54376, [SMALL_STATE(782)] = 54465, [SMALL_STATE(783)] = 54518, [SMALL_STATE(784)] = 54571, [SMALL_STATE(785)] = 54624, [SMALL_STATE(786)] = 54677, - [SMALL_STATE(787)] = 54766, - [SMALL_STATE(788)] = 54819, - [SMALL_STATE(789)] = 54872, - [SMALL_STATE(790)] = 54925, - [SMALL_STATE(791)] = 54978, - [SMALL_STATE(792)] = 55031, - [SMALL_STATE(793)] = 55084, - [SMALL_STATE(794)] = 55137, + [SMALL_STATE(787)] = 54730, + [SMALL_STATE(788)] = 54783, + [SMALL_STATE(789)] = 54836, + [SMALL_STATE(790)] = 54889, + [SMALL_STATE(791)] = 54942, + [SMALL_STATE(792)] = 54995, + [SMALL_STATE(793)] = 55048, + [SMALL_STATE(794)] = 55101, [SMALL_STATE(795)] = 55190, [SMALL_STATE(796)] = 55243, - [SMALL_STATE(797)] = 55296, - [SMALL_STATE(798)] = 55349, - [SMALL_STATE(799)] = 55402, - [SMALL_STATE(800)] = 55455, - [SMALL_STATE(801)] = 55508, - [SMALL_STATE(802)] = 55597, - [SMALL_STATE(803)] = 55686, - [SMALL_STATE(804)] = 55739, - [SMALL_STATE(805)] = 55792, - [SMALL_STATE(806)] = 55845, - [SMALL_STATE(807)] = 55898, - [SMALL_STATE(808)] = 55951, - [SMALL_STATE(809)] = 56004, - [SMALL_STATE(810)] = 56057, - [SMALL_STATE(811)] = 56110, + [SMALL_STATE(797)] = 55332, + [SMALL_STATE(798)] = 55385, + [SMALL_STATE(799)] = 55474, + [SMALL_STATE(800)] = 55563, + [SMALL_STATE(801)] = 55616, + [SMALL_STATE(802)] = 55669, + [SMALL_STATE(803)] = 55722, + [SMALL_STATE(804)] = 55775, + [SMALL_STATE(805)] = 55828, + [SMALL_STATE(806)] = 55881, + [SMALL_STATE(807)] = 55934, + [SMALL_STATE(808)] = 55987, + [SMALL_STATE(809)] = 56040, + [SMALL_STATE(810)] = 56093, + [SMALL_STATE(811)] = 56146, [SMALL_STATE(812)] = 56199, [SMALL_STATE(813)] = 56252, [SMALL_STATE(814)] = 56305, @@ -124889,15 +124889,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(839)] = 57630, [SMALL_STATE(840)] = 57683, [SMALL_STATE(841)] = 57736, - [SMALL_STATE(842)] = 57825, - [SMALL_STATE(843)] = 57878, - [SMALL_STATE(844)] = 57931, - [SMALL_STATE(845)] = 58020, - [SMALL_STATE(846)] = 58109, - [SMALL_STATE(847)] = 58198, - [SMALL_STATE(848)] = 58287, - [SMALL_STATE(849)] = 58340, - [SMALL_STATE(850)] = 58393, + [SMALL_STATE(842)] = 57789, + [SMALL_STATE(843)] = 57842, + [SMALL_STATE(844)] = 57895, + [SMALL_STATE(845)] = 57984, + [SMALL_STATE(846)] = 58073, + [SMALL_STATE(847)] = 58126, + [SMALL_STATE(848)] = 58179, + [SMALL_STATE(849)] = 58268, + [SMALL_STATE(850)] = 58357, [SMALL_STATE(851)] = 58446, [SMALL_STATE(852)] = 58535, [SMALL_STATE(853)] = 58621, @@ -124908,630 +124908,630 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(858)] = 59051, [SMALL_STATE(859)] = 59134, [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59303, - [SMALL_STATE(862)] = 59381, - [SMALL_STATE(863)] = 59459, - [SMALL_STATE(864)] = 59537, - [SMALL_STATE(865)] = 59615, + [SMALL_STATE(861)] = 59295, + [SMALL_STATE(862)] = 59373, + [SMALL_STATE(863)] = 59451, + [SMALL_STATE(864)] = 59529, + [SMALL_STATE(865)] = 59607, [SMALL_STATE(866)] = 59693, [SMALL_STATE(867)] = 59771, [SMALL_STATE(868)] = 59849, [SMALL_STATE(869)] = 59927, - [SMALL_STATE(870)] = 60006, - [SMALL_STATE(871)] = 60081, - [SMALL_STATE(872)] = 60156, - [SMALL_STATE(873)] = 60235, - [SMALL_STATE(874)] = 60310, - [SMALL_STATE(875)] = 60389, - [SMALL_STATE(876)] = 60464, - [SMALL_STATE(877)] = 60539, - [SMALL_STATE(878)] = 60614, - [SMALL_STATE(879)] = 60689, - [SMALL_STATE(880)] = 60764, - [SMALL_STATE(881)] = 60839, - [SMALL_STATE(882)] = 60914, - [SMALL_STATE(883)] = 60989, + [SMALL_STATE(870)] = 60002, + [SMALL_STATE(871)] = 60077, + [SMALL_STATE(872)] = 60152, + [SMALL_STATE(873)] = 60227, + [SMALL_STATE(874)] = 60302, + [SMALL_STATE(875)] = 60377, + [SMALL_STATE(876)] = 60456, + [SMALL_STATE(877)] = 60531, + [SMALL_STATE(878)] = 60610, + [SMALL_STATE(879)] = 60685, + [SMALL_STATE(880)] = 60760, + [SMALL_STATE(881)] = 60835, + [SMALL_STATE(882)] = 60910, + [SMALL_STATE(883)] = 60985, [SMALL_STATE(884)] = 61064, [SMALL_STATE(885)] = 61139, - [SMALL_STATE(886)] = 61218, - [SMALL_STATE(887)] = 61297, - [SMALL_STATE(888)] = 61376, - [SMALL_STATE(889)] = 61451, - [SMALL_STATE(890)] = 61530, - [SMALL_STATE(891)] = 61609, - [SMALL_STATE(892)] = 61688, - [SMALL_STATE(893)] = 61767, - [SMALL_STATE(894)] = 61842, - [SMALL_STATE(895)] = 61917, - [SMALL_STATE(896)] = 61996, - [SMALL_STATE(897)] = 62071, - [SMALL_STATE(898)] = 62146, - [SMALL_STATE(899)] = 62221, - [SMALL_STATE(900)] = 62296, - [SMALL_STATE(901)] = 62371, - [SMALL_STATE(902)] = 62446, - [SMALL_STATE(903)] = 62521, - [SMALL_STATE(904)] = 62596, - [SMALL_STATE(905)] = 62681, - [SMALL_STATE(906)] = 62756, - [SMALL_STATE(907)] = 62831, - [SMALL_STATE(908)] = 62906, - [SMALL_STATE(909)] = 62981, - [SMALL_STATE(910)] = 63056, - [SMALL_STATE(911)] = 63131, - [SMALL_STATE(912)] = 63206, - [SMALL_STATE(913)] = 63281, - [SMALL_STATE(914)] = 63356, - [SMALL_STATE(915)] = 63431, - [SMALL_STATE(916)] = 63506, - [SMALL_STATE(917)] = 63581, - [SMALL_STATE(918)] = 63656, - [SMALL_STATE(919)] = 63731, - [SMALL_STATE(920)] = 63806, - [SMALL_STATE(921)] = 63885, - [SMALL_STATE(922)] = 63960, - [SMALL_STATE(923)] = 64035, - [SMALL_STATE(924)] = 64110, - [SMALL_STATE(925)] = 64185, - [SMALL_STATE(926)] = 64264, - [SMALL_STATE(927)] = 64339, - [SMALL_STATE(928)] = 64414, - [SMALL_STATE(929)] = 64489, - [SMALL_STATE(930)] = 64564, - [SMALL_STATE(931)] = 64639, - [SMALL_STATE(932)] = 64714, - [SMALL_STATE(933)] = 64789, - [SMALL_STATE(934)] = 64864, - [SMALL_STATE(935)] = 64939, - [SMALL_STATE(936)] = 65014, - [SMALL_STATE(937)] = 65089, - [SMALL_STATE(938)] = 65164, - [SMALL_STATE(939)] = 65239, - [SMALL_STATE(940)] = 65314, - [SMALL_STATE(941)] = 65389, - [SMALL_STATE(942)] = 65464, - [SMALL_STATE(943)] = 65539, - [SMALL_STATE(944)] = 65614, - [SMALL_STATE(945)] = 65689, - [SMALL_STATE(946)] = 65764, - [SMALL_STATE(947)] = 65849, - [SMALL_STATE(948)] = 65928, - [SMALL_STATE(949)] = 66003, + [SMALL_STATE(886)] = 61214, + [SMALL_STATE(887)] = 61293, + [SMALL_STATE(888)] = 61368, + [SMALL_STATE(889)] = 61443, + [SMALL_STATE(890)] = 61518, + [SMALL_STATE(891)] = 61593, + [SMALL_STATE(892)] = 61668, + [SMALL_STATE(893)] = 61743, + [SMALL_STATE(894)] = 61822, + [SMALL_STATE(895)] = 61897, + [SMALL_STATE(896)] = 61972, + [SMALL_STATE(897)] = 62047, + [SMALL_STATE(898)] = 62122, + [SMALL_STATE(899)] = 62197, + [SMALL_STATE(900)] = 62272, + [SMALL_STATE(901)] = 62347, + [SMALL_STATE(902)] = 62422, + [SMALL_STATE(903)] = 62497, + [SMALL_STATE(904)] = 62576, + [SMALL_STATE(905)] = 62651, + [SMALL_STATE(906)] = 62726, + [SMALL_STATE(907)] = 62801, + [SMALL_STATE(908)] = 62876, + [SMALL_STATE(909)] = 62955, + [SMALL_STATE(910)] = 63040, + [SMALL_STATE(911)] = 63115, + [SMALL_STATE(912)] = 63190, + [SMALL_STATE(913)] = 63275, + [SMALL_STATE(914)] = 63354, + [SMALL_STATE(915)] = 63429, + [SMALL_STATE(916)] = 63508, + [SMALL_STATE(917)] = 63587, + [SMALL_STATE(918)] = 63662, + [SMALL_STATE(919)] = 63737, + [SMALL_STATE(920)] = 63812, + [SMALL_STATE(921)] = 63891, + [SMALL_STATE(922)] = 63966, + [SMALL_STATE(923)] = 64041, + [SMALL_STATE(924)] = 64116, + [SMALL_STATE(925)] = 64191, + [SMALL_STATE(926)] = 64266, + [SMALL_STATE(927)] = 64345, + [SMALL_STATE(928)] = 64420, + [SMALL_STATE(929)] = 64495, + [SMALL_STATE(930)] = 64574, + [SMALL_STATE(931)] = 64649, + [SMALL_STATE(932)] = 64724, + [SMALL_STATE(933)] = 64799, + [SMALL_STATE(934)] = 64874, + [SMALL_STATE(935)] = 64949, + [SMALL_STATE(936)] = 65024, + [SMALL_STATE(937)] = 65099, + [SMALL_STATE(938)] = 65174, + [SMALL_STATE(939)] = 65249, + [SMALL_STATE(940)] = 65324, + [SMALL_STATE(941)] = 65399, + [SMALL_STATE(942)] = 65474, + [SMALL_STATE(943)] = 65549, + [SMALL_STATE(944)] = 65628, + [SMALL_STATE(945)] = 65703, + [SMALL_STATE(946)] = 65782, + [SMALL_STATE(947)] = 65857, + [SMALL_STATE(948)] = 65932, + [SMALL_STATE(949)] = 66007, [SMALL_STATE(950)] = 66082, [SMALL_STATE(951)] = 66157, - [SMALL_STATE(952)] = 66236, - [SMALL_STATE(953)] = 66315, - [SMALL_STATE(954)] = 66394, - [SMALL_STATE(955)] = 66473, - [SMALL_STATE(956)] = 66548, - [SMALL_STATE(957)] = 66623, - [SMALL_STATE(958)] = 66698, - [SMALL_STATE(959)] = 66777, - [SMALL_STATE(960)] = 66852, - [SMALL_STATE(961)] = 66927, - [SMALL_STATE(962)] = 67002, + [SMALL_STATE(952)] = 66232, + [SMALL_STATE(953)] = 66307, + [SMALL_STATE(954)] = 66382, + [SMALL_STATE(955)] = 66461, + [SMALL_STATE(956)] = 66536, + [SMALL_STATE(957)] = 66611, + [SMALL_STATE(958)] = 66686, + [SMALL_STATE(959)] = 66765, + [SMALL_STATE(960)] = 66844, + [SMALL_STATE(961)] = 66923, + [SMALL_STATE(962)] = 66998, [SMALL_STATE(963)] = 67077, [SMALL_STATE(964)] = 67161, - [SMALL_STATE(965)] = 67245, - [SMALL_STATE(966)] = 67329, - [SMALL_STATE(967)] = 67381, - [SMALL_STATE(968)] = 67433, - [SMALL_STATE(969)] = 67517, - [SMALL_STATE(970)] = 67569, + [SMALL_STATE(965)] = 67213, + [SMALL_STATE(966)] = 67297, + [SMALL_STATE(967)] = 67379, + [SMALL_STATE(968)] = 67463, + [SMALL_STATE(969)] = 67515, + [SMALL_STATE(970)] = 67567, [SMALL_STATE(971)] = 67651, - [SMALL_STATE(972)] = 67708, - [SMALL_STATE(973)] = 67779, - [SMALL_STATE(974)] = 67830, - [SMALL_STATE(975)] = 67891, - [SMALL_STATE(976)] = 67960, - [SMALL_STATE(977)] = 68027, - [SMALL_STATE(978)] = 68090, - [SMALL_STATE(979)] = 68147, - [SMALL_STATE(980)] = 68228, - [SMALL_STATE(981)] = 68279, - [SMALL_STATE(982)] = 68330, - [SMALL_STATE(983)] = 68381, - [SMALL_STATE(984)] = 68432, - [SMALL_STATE(985)] = 68489, - [SMALL_STATE(986)] = 68554, - [SMALL_STATE(987)] = 68605, + [SMALL_STATE(972)] = 67702, + [SMALL_STATE(973)] = 67753, + [SMALL_STATE(974)] = 67810, + [SMALL_STATE(975)] = 67873, + [SMALL_STATE(976)] = 67924, + [SMALL_STATE(977)] = 68005, + [SMALL_STATE(978)] = 68076, + [SMALL_STATE(979)] = 68127, + [SMALL_STATE(980)] = 68178, + [SMALL_STATE(981)] = 68235, + [SMALL_STATE(982)] = 68292, + [SMALL_STATE(983)] = 68361, + [SMALL_STATE(984)] = 68418, + [SMALL_STATE(985)] = 68469, + [SMALL_STATE(986)] = 68530, + [SMALL_STATE(987)] = 68595, [SMALL_STATE(988)] = 68662, - [SMALL_STATE(989)] = 68712, - [SMALL_STATE(990)] = 68768, - [SMALL_STATE(991)] = 68830, - [SMALL_STATE(992)] = 68910, - [SMALL_STATE(993)] = 68956, - [SMALL_STATE(994)] = 69012, - [SMALL_STATE(995)] = 69058, - [SMALL_STATE(996)] = 69108, - [SMALL_STATE(997)] = 69164, - [SMALL_STATE(998)] = 69224, - [SMALL_STATE(999)] = 69292, - [SMALL_STATE(1000)] = 69338, - [SMALL_STATE(1001)] = 69404, - [SMALL_STATE(1002)] = 69468, - [SMALL_STATE(1003)] = 69514, - [SMALL_STATE(1004)] = 69564, - [SMALL_STATE(1005)] = 69610, - [SMALL_STATE(1006)] = 69656, - [SMALL_STATE(1007)] = 69704, - [SMALL_STATE(1008)] = 69754, - [SMALL_STATE(1009)] = 69802, - [SMALL_STATE(1010)] = 69850, - [SMALL_STATE(1011)] = 69896, - [SMALL_STATE(1012)] = 69946, - [SMALL_STATE(1013)] = 69996, - [SMALL_STATE(1014)] = 70060, - [SMALL_STATE(1015)] = 70126, - [SMALL_STATE(1016)] = 70194, - [SMALL_STATE(1017)] = 70254, - [SMALL_STATE(1018)] = 70310, - [SMALL_STATE(1019)] = 70380, - [SMALL_STATE(1020)] = 70442, - [SMALL_STATE(1021)] = 70498, - [SMALL_STATE(1022)] = 70544, - [SMALL_STATE(1023)] = 70594, - [SMALL_STATE(1024)] = 70674, - [SMALL_STATE(1025)] = 70724, - [SMALL_STATE(1026)] = 70774, - [SMALL_STATE(1027)] = 70824, - [SMALL_STATE(1028)] = 70870, - [SMALL_STATE(1029)] = 70950, - [SMALL_STATE(1030)] = 71020, - [SMALL_STATE(1031)] = 71076, - [SMALL_STATE(1032)] = 71126, - [SMALL_STATE(1033)] = 71182, - [SMALL_STATE(1034)] = 71232, + [SMALL_STATE(989)] = 68718, + [SMALL_STATE(990)] = 68774, + [SMALL_STATE(991)] = 68834, + [SMALL_STATE(992)] = 68914, + [SMALL_STATE(993)] = 68960, + [SMALL_STATE(994)] = 69010, + [SMALL_STATE(995)] = 69070, + [SMALL_STATE(996)] = 69120, + [SMALL_STATE(997)] = 69170, + [SMALL_STATE(998)] = 69216, + [SMALL_STATE(999)] = 69286, + [SMALL_STATE(1000)] = 69342, + [SMALL_STATE(1001)] = 69410, + [SMALL_STATE(1002)] = 69460, + [SMALL_STATE(1003)] = 69526, + [SMALL_STATE(1004)] = 69590, + [SMALL_STATE(1005)] = 69640, + [SMALL_STATE(1006)] = 69686, + [SMALL_STATE(1007)] = 69736, + [SMALL_STATE(1008)] = 69792, + [SMALL_STATE(1009)] = 69872, + [SMALL_STATE(1010)] = 69920, + [SMALL_STATE(1011)] = 69970, + [SMALL_STATE(1012)] = 70036, + [SMALL_STATE(1013)] = 70100, + [SMALL_STATE(1014)] = 70156, + [SMALL_STATE(1015)] = 70218, + [SMALL_STATE(1016)] = 70268, + [SMALL_STATE(1017)] = 70314, + [SMALL_STATE(1018)] = 70370, + [SMALL_STATE(1019)] = 70416, + [SMALL_STATE(1020)] = 70462, + [SMALL_STATE(1021)] = 70512, + [SMALL_STATE(1022)] = 70568, + [SMALL_STATE(1023)] = 70618, + [SMALL_STATE(1024)] = 70666, + [SMALL_STATE(1025)] = 70734, + [SMALL_STATE(1026)] = 70796, + [SMALL_STATE(1027)] = 70852, + [SMALL_STATE(1028)] = 70898, + [SMALL_STATE(1029)] = 70948, + [SMALL_STATE(1030)] = 70998, + [SMALL_STATE(1031)] = 71078, + [SMALL_STATE(1032)] = 71148, + [SMALL_STATE(1033)] = 71194, + [SMALL_STATE(1034)] = 71240, [SMALL_STATE(1035)] = 71288, [SMALL_STATE(1036)] = 71333, - [SMALL_STATE(1037)] = 71388, - [SMALL_STATE(1038)] = 71443, - [SMALL_STATE(1039)] = 71502, - [SMALL_STATE(1040)] = 71569, - [SMALL_STATE(1041)] = 71616, - [SMALL_STATE(1042)] = 71663, - [SMALL_STATE(1043)] = 71710, - [SMALL_STATE(1044)] = 71775, - [SMALL_STATE(1045)] = 71838, - [SMALL_STATE(1046)] = 71887, - [SMALL_STATE(1047)] = 71932, - [SMALL_STATE(1048)] = 71977, - [SMALL_STATE(1049)] = 72026, - [SMALL_STATE(1050)] = 72075, - [SMALL_STATE(1051)] = 72120, - [SMALL_STATE(1052)] = 72169, - [SMALL_STATE(1053)] = 72218, - [SMALL_STATE(1054)] = 72263, - [SMALL_STATE(1055)] = 72312, - [SMALL_STATE(1056)] = 72357, - [SMALL_STATE(1057)] = 72402, - [SMALL_STATE(1058)] = 72447, + [SMALL_STATE(1037)] = 71396, + [SMALL_STATE(1038)] = 71441, + [SMALL_STATE(1039)] = 71486, + [SMALL_STATE(1040)] = 71531, + [SMALL_STATE(1041)] = 71576, + [SMALL_STATE(1042)] = 71621, + [SMALL_STATE(1043)] = 71666, + [SMALL_STATE(1044)] = 71711, + [SMALL_STATE(1045)] = 71760, + [SMALL_STATE(1046)] = 71809, + [SMALL_STATE(1047)] = 71858, + [SMALL_STATE(1048)] = 71905, + [SMALL_STATE(1049)] = 71952, + [SMALL_STATE(1050)] = 71999, + [SMALL_STATE(1051)] = 72054, + [SMALL_STATE(1052)] = 72109, + [SMALL_STATE(1053)] = 72160, + [SMALL_STATE(1054)] = 72211, + [SMALL_STATE(1055)] = 72262, + [SMALL_STATE(1056)] = 72307, + [SMALL_STATE(1057)] = 72362, + [SMALL_STATE(1058)] = 72423, [SMALL_STATE(1059)] = 72492, - [SMALL_STATE(1060)] = 72537, - [SMALL_STATE(1061)] = 72582, - [SMALL_STATE(1062)] = 72627, - [SMALL_STATE(1063)] = 72672, - [SMALL_STATE(1064)] = 72717, - [SMALL_STATE(1065)] = 72764, - [SMALL_STATE(1066)] = 72809, - [SMALL_STATE(1067)] = 72854, - [SMALL_STATE(1068)] = 72901, - [SMALL_STATE(1069)] = 72948, - [SMALL_STATE(1070)] = 72997, - [SMALL_STATE(1071)] = 73042, - [SMALL_STATE(1072)] = 73087, - [SMALL_STATE(1073)] = 73148, - [SMALL_STATE(1074)] = 73193, - [SMALL_STATE(1075)] = 73238, - [SMALL_STATE(1076)] = 73293, - [SMALL_STATE(1077)] = 73338, - [SMALL_STATE(1078)] = 73387, - [SMALL_STATE(1079)] = 73436, - [SMALL_STATE(1080)] = 73499, - [SMALL_STATE(1081)] = 73564, - [SMALL_STATE(1082)] = 73615, - [SMALL_STATE(1083)] = 73660, - [SMALL_STATE(1084)] = 73705, - [SMALL_STATE(1085)] = 73774, - [SMALL_STATE(1086)] = 73819, - [SMALL_STATE(1087)] = 73886, - [SMALL_STATE(1088)] = 73945, - [SMALL_STATE(1089)] = 74000, - [SMALL_STATE(1090)] = 74055, - [SMALL_STATE(1091)] = 74116, - [SMALL_STATE(1092)] = 74185, - [SMALL_STATE(1093)] = 74240, - [SMALL_STATE(1094)] = 74299, - [SMALL_STATE(1095)] = 74366, - [SMALL_STATE(1096)] = 74421, - [SMALL_STATE(1097)] = 74476, - [SMALL_STATE(1098)] = 74521, - [SMALL_STATE(1099)] = 74586, - [SMALL_STATE(1100)] = 74655, - [SMALL_STATE(1101)] = 74706, - [SMALL_STATE(1102)] = 74751, - [SMALL_STATE(1103)] = 74812, - [SMALL_STATE(1104)] = 74867, - [SMALL_STATE(1105)] = 74912, - [SMALL_STATE(1106)] = 74957, - [SMALL_STATE(1107)] = 75006, - [SMALL_STATE(1108)] = 75061, - [SMALL_STATE(1109)] = 75124, - [SMALL_STATE(1110)] = 75189, - [SMALL_STATE(1111)] = 75240, - [SMALL_STATE(1112)] = 75295, - [SMALL_STATE(1113)] = 75362, - [SMALL_STATE(1114)] = 75421, - [SMALL_STATE(1115)] = 75476, - [SMALL_STATE(1116)] = 75545, - [SMALL_STATE(1117)] = 75606, - [SMALL_STATE(1118)] = 75661, - [SMALL_STATE(1119)] = 75706, - [SMALL_STATE(1120)] = 75755, - [SMALL_STATE(1121)] = 75800, - [SMALL_STATE(1122)] = 75855, - [SMALL_STATE(1123)] = 75906, - [SMALL_STATE(1124)] = 75951, - [SMALL_STATE(1125)] = 76014, - [SMALL_STATE(1126)] = 76069, - [SMALL_STATE(1127)] = 76124, - [SMALL_STATE(1128)] = 76169, - [SMALL_STATE(1129)] = 76218, - [SMALL_STATE(1130)] = 76263, - [SMALL_STATE(1131)] = 76308, - [SMALL_STATE(1132)] = 76353, - [SMALL_STATE(1133)] = 76398, - [SMALL_STATE(1134)] = 76449, + [SMALL_STATE(1060)] = 72547, + [SMALL_STATE(1061)] = 72606, + [SMALL_STATE(1062)] = 72673, + [SMALL_STATE(1063)] = 72738, + [SMALL_STATE(1064)] = 72801, + [SMALL_STATE(1065)] = 72846, + [SMALL_STATE(1066)] = 72891, + [SMALL_STATE(1067)] = 72936, + [SMALL_STATE(1068)] = 72981, + [SMALL_STATE(1069)] = 73026, + [SMALL_STATE(1070)] = 73071, + [SMALL_STATE(1071)] = 73120, + [SMALL_STATE(1072)] = 73169, + [SMALL_STATE(1073)] = 73214, + [SMALL_STATE(1074)] = 73265, + [SMALL_STATE(1075)] = 73310, + [SMALL_STATE(1076)] = 73365, + [SMALL_STATE(1077)] = 73420, + [SMALL_STATE(1078)] = 73465, + [SMALL_STATE(1079)] = 73510, + [SMALL_STATE(1080)] = 73555, + [SMALL_STATE(1081)] = 73610, + [SMALL_STATE(1082)] = 73671, + [SMALL_STATE(1083)] = 73740, + [SMALL_STATE(1084)] = 73795, + [SMALL_STATE(1085)] = 73854, + [SMALL_STATE(1086)] = 73921, + [SMALL_STATE(1087)] = 73986, + [SMALL_STATE(1088)] = 74049, + [SMALL_STATE(1089)] = 74094, + [SMALL_STATE(1090)] = 74139, + [SMALL_STATE(1091)] = 74184, + [SMALL_STATE(1092)] = 74229, + [SMALL_STATE(1093)] = 74274, + [SMALL_STATE(1094)] = 74319, + [SMALL_STATE(1095)] = 74364, + [SMALL_STATE(1096)] = 74419, + [SMALL_STATE(1097)] = 74474, + [SMALL_STATE(1098)] = 74519, + [SMALL_STATE(1099)] = 74574, + [SMALL_STATE(1100)] = 74635, + [SMALL_STATE(1101)] = 74704, + [SMALL_STATE(1102)] = 74759, + [SMALL_STATE(1103)] = 74818, + [SMALL_STATE(1104)] = 74885, + [SMALL_STATE(1105)] = 74950, + [SMALL_STATE(1106)] = 75013, + [SMALL_STATE(1107)] = 75058, + [SMALL_STATE(1108)] = 75107, + [SMALL_STATE(1109)] = 75154, + [SMALL_STATE(1110)] = 75201, + [SMALL_STATE(1111)] = 75248, + [SMALL_STATE(1112)] = 75297, + [SMALL_STATE(1113)] = 75346, + [SMALL_STATE(1114)] = 75391, + [SMALL_STATE(1115)] = 75440, + [SMALL_STATE(1116)] = 75489, + [SMALL_STATE(1117)] = 75538, + [SMALL_STATE(1118)] = 75583, + [SMALL_STATE(1119)] = 75628, + [SMALL_STATE(1120)] = 75673, + [SMALL_STATE(1121)] = 75724, + [SMALL_STATE(1122)] = 75779, + [SMALL_STATE(1123)] = 75834, + [SMALL_STATE(1124)] = 75879, + [SMALL_STATE(1125)] = 75924, + [SMALL_STATE(1126)] = 75969, + [SMALL_STATE(1127)] = 76014, + [SMALL_STATE(1128)] = 76069, + [SMALL_STATE(1129)] = 76130, + [SMALL_STATE(1130)] = 76199, + [SMALL_STATE(1131)] = 76254, + [SMALL_STATE(1132)] = 76313, + [SMALL_STATE(1133)] = 76380, + [SMALL_STATE(1134)] = 76445, [SMALL_STATE(1135)] = 76494, [SMALL_STATE(1136)] = 76538, [SMALL_STATE(1137)] = 76582, - [SMALL_STATE(1138)] = 76626, + [SMALL_STATE(1138)] = 76630, [SMALL_STATE(1139)] = 76674, - [SMALL_STATE(1140)] = 76718, - [SMALL_STATE(1141)] = 76762, - [SMALL_STATE(1142)] = 76806, - [SMALL_STATE(1143)] = 76850, - [SMALL_STATE(1144)] = 76894, - [SMALL_STATE(1145)] = 76942, - [SMALL_STATE(1146)] = 76990, - [SMALL_STATE(1147)] = 77034, - [SMALL_STATE(1148)] = 77078, - [SMALL_STATE(1149)] = 77122, - [SMALL_STATE(1150)] = 77166, - [SMALL_STATE(1151)] = 77212, - [SMALL_STATE(1152)] = 77258, - [SMALL_STATE(1153)] = 77304, - [SMALL_STATE(1154)] = 77350, - [SMALL_STATE(1155)] = 77396, - [SMALL_STATE(1156)] = 77442, - [SMALL_STATE(1157)] = 77486, - [SMALL_STATE(1158)] = 77530, - [SMALL_STATE(1159)] = 77574, - [SMALL_STATE(1160)] = 77618, - [SMALL_STATE(1161)] = 77662, - [SMALL_STATE(1162)] = 77706, - [SMALL_STATE(1163)] = 77750, - [SMALL_STATE(1164)] = 77794, - [SMALL_STATE(1165)] = 77838, - [SMALL_STATE(1166)] = 77882, - [SMALL_STATE(1167)] = 77926, - [SMALL_STATE(1168)] = 77974, - [SMALL_STATE(1169)] = 78022, - [SMALL_STATE(1170)] = 78070, - [SMALL_STATE(1171)] = 78114, - [SMALL_STATE(1172)] = 78158, - [SMALL_STATE(1173)] = 78202, - [SMALL_STATE(1174)] = 78248, - [SMALL_STATE(1175)] = 78292, - [SMALL_STATE(1176)] = 78336, - [SMALL_STATE(1177)] = 78380, - [SMALL_STATE(1178)] = 78424, - [SMALL_STATE(1179)] = 78468, - [SMALL_STATE(1180)] = 78514, - [SMALL_STATE(1181)] = 78558, - [SMALL_STATE(1182)] = 78602, - [SMALL_STATE(1183)] = 78650, - [SMALL_STATE(1184)] = 78694, - [SMALL_STATE(1185)] = 78742, - [SMALL_STATE(1186)] = 78786, - [SMALL_STATE(1187)] = 78830, - [SMALL_STATE(1188)] = 78874, - [SMALL_STATE(1189)] = 78918, - [SMALL_STATE(1190)] = 78964, - [SMALL_STATE(1191)] = 79018, - [SMALL_STATE(1192)] = 79066, - [SMALL_STATE(1193)] = 79114, - [SMALL_STATE(1194)] = 79162, - [SMALL_STATE(1195)] = 79210, - [SMALL_STATE(1196)] = 79264, - [SMALL_STATE(1197)] = 79308, - [SMALL_STATE(1198)] = 79356, - [SMALL_STATE(1199)] = 79402, - [SMALL_STATE(1200)] = 79446, - [SMALL_STATE(1201)] = 79492, - [SMALL_STATE(1202)] = 79538, - [SMALL_STATE(1203)] = 79582, - [SMALL_STATE(1204)] = 79628, - [SMALL_STATE(1205)] = 79674, - [SMALL_STATE(1206)] = 79720, - [SMALL_STATE(1207)] = 79766, - [SMALL_STATE(1208)] = 79810, - [SMALL_STATE(1209)] = 79854, - [SMALL_STATE(1210)] = 79898, - [SMALL_STATE(1211)] = 79942, - [SMALL_STATE(1212)] = 79988, - [SMALL_STATE(1213)] = 80032, - [SMALL_STATE(1214)] = 80076, - [SMALL_STATE(1215)] = 80120, - [SMALL_STATE(1216)] = 80164, - [SMALL_STATE(1217)] = 80208, - [SMALL_STATE(1218)] = 80252, - [SMALL_STATE(1219)] = 80296, - [SMALL_STATE(1220)] = 80340, - [SMALL_STATE(1221)] = 80390, - [SMALL_STATE(1222)] = 80434, - [SMALL_STATE(1223)] = 80478, - [SMALL_STATE(1224)] = 80522, - [SMALL_STATE(1225)] = 80566, - [SMALL_STATE(1226)] = 80610, - [SMALL_STATE(1227)] = 80654, - [SMALL_STATE(1228)] = 80698, - [SMALL_STATE(1229)] = 80742, - [SMALL_STATE(1230)] = 80796, - [SMALL_STATE(1231)] = 80856, - [SMALL_STATE(1232)] = 80924, - [SMALL_STATE(1233)] = 80978, - [SMALL_STATE(1234)] = 81022, - [SMALL_STATE(1235)] = 81080, - [SMALL_STATE(1236)] = 81146, - [SMALL_STATE(1237)] = 81210, - [SMALL_STATE(1238)] = 81272, - [SMALL_STATE(1239)] = 81316, - [SMALL_STATE(1240)] = 81360, - [SMALL_STATE(1241)] = 81408, - [SMALL_STATE(1242)] = 81456, - [SMALL_STATE(1243)] = 81506, - [SMALL_STATE(1244)] = 81554, - [SMALL_STATE(1245)] = 81598, - [SMALL_STATE(1246)] = 81642, - [SMALL_STATE(1247)] = 81686, - [SMALL_STATE(1248)] = 81734, - [SMALL_STATE(1249)] = 81782, - [SMALL_STATE(1250)] = 81826, - [SMALL_STATE(1251)] = 81870, - [SMALL_STATE(1252)] = 81914, - [SMALL_STATE(1253)] = 81958, - [SMALL_STATE(1254)] = 82002, + [SMALL_STATE(1140)] = 76720, + [SMALL_STATE(1141)] = 76766, + [SMALL_STATE(1142)] = 76810, + [SMALL_STATE(1143)] = 76856, + [SMALL_STATE(1144)] = 76904, + [SMALL_STATE(1145)] = 76952, + [SMALL_STATE(1146)] = 76998, + [SMALL_STATE(1147)] = 77044, + [SMALL_STATE(1148)] = 77090, + [SMALL_STATE(1149)] = 77136, + [SMALL_STATE(1150)] = 77180, + [SMALL_STATE(1151)] = 77224, + [SMALL_STATE(1152)] = 77268, + [SMALL_STATE(1153)] = 77312, + [SMALL_STATE(1154)] = 77356, + [SMALL_STATE(1155)] = 77400, + [SMALL_STATE(1156)] = 77444, + [SMALL_STATE(1157)] = 77488, + [SMALL_STATE(1158)] = 77532, + [SMALL_STATE(1159)] = 77576, + [SMALL_STATE(1160)] = 77620, + [SMALL_STATE(1161)] = 77664, + [SMALL_STATE(1162)] = 77708, + [SMALL_STATE(1163)] = 77752, + [SMALL_STATE(1164)] = 77796, + [SMALL_STATE(1165)] = 77840, + [SMALL_STATE(1166)] = 77884, + [SMALL_STATE(1167)] = 77928, + [SMALL_STATE(1168)] = 77972, + [SMALL_STATE(1169)] = 78016, + [SMALL_STATE(1170)] = 78060, + [SMALL_STATE(1171)] = 78104, + [SMALL_STATE(1172)] = 78148, + [SMALL_STATE(1173)] = 78192, + [SMALL_STATE(1174)] = 78238, + [SMALL_STATE(1175)] = 78284, + [SMALL_STATE(1176)] = 78330, + [SMALL_STATE(1177)] = 78376, + [SMALL_STATE(1178)] = 78420, + [SMALL_STATE(1179)] = 78464, + [SMALL_STATE(1180)] = 78508, + [SMALL_STATE(1181)] = 78552, + [SMALL_STATE(1182)] = 78596, + [SMALL_STATE(1183)] = 78640, + [SMALL_STATE(1184)] = 78684, + [SMALL_STATE(1185)] = 78728, + [SMALL_STATE(1186)] = 78772, + [SMALL_STATE(1187)] = 78816, + [SMALL_STATE(1188)] = 78864, + [SMALL_STATE(1189)] = 78908, + [SMALL_STATE(1190)] = 78952, + [SMALL_STATE(1191)] = 78996, + [SMALL_STATE(1192)] = 79040, + [SMALL_STATE(1193)] = 79084, + [SMALL_STATE(1194)] = 79128, + [SMALL_STATE(1195)] = 79172, + [SMALL_STATE(1196)] = 79216, + [SMALL_STATE(1197)] = 79260, + [SMALL_STATE(1198)] = 79304, + [SMALL_STATE(1199)] = 79348, + [SMALL_STATE(1200)] = 79392, + [SMALL_STATE(1201)] = 79436, + [SMALL_STATE(1202)] = 79480, + [SMALL_STATE(1203)] = 79524, + [SMALL_STATE(1204)] = 79568, + [SMALL_STATE(1205)] = 79612, + [SMALL_STATE(1206)] = 79660, + [SMALL_STATE(1207)] = 79704, + [SMALL_STATE(1208)] = 79748, + [SMALL_STATE(1209)] = 79792, + [SMALL_STATE(1210)] = 79836, + [SMALL_STATE(1211)] = 79880, + [SMALL_STATE(1212)] = 79924, + [SMALL_STATE(1213)] = 79968, + [SMALL_STATE(1214)] = 80016, + [SMALL_STATE(1215)] = 80060, + [SMALL_STATE(1216)] = 80104, + [SMALL_STATE(1217)] = 80154, + [SMALL_STATE(1218)] = 80208, + [SMALL_STATE(1219)] = 80262, + [SMALL_STATE(1220)] = 80312, + [SMALL_STATE(1221)] = 80356, + [SMALL_STATE(1222)] = 80400, + [SMALL_STATE(1223)] = 80444, + [SMALL_STATE(1224)] = 80498, + [SMALL_STATE(1225)] = 80558, + [SMALL_STATE(1226)] = 80626, + [SMALL_STATE(1227)] = 80680, + [SMALL_STATE(1228)] = 80738, + [SMALL_STATE(1229)] = 80804, + [SMALL_STATE(1230)] = 80868, + [SMALL_STATE(1231)] = 80930, + [SMALL_STATE(1232)] = 80978, + [SMALL_STATE(1233)] = 81026, + [SMALL_STATE(1234)] = 81074, + [SMALL_STATE(1235)] = 81122, + [SMALL_STATE(1236)] = 81170, + [SMALL_STATE(1237)] = 81214, + [SMALL_STATE(1238)] = 81262, + [SMALL_STATE(1239)] = 81306, + [SMALL_STATE(1240)] = 81354, + [SMALL_STATE(1241)] = 81402, + [SMALL_STATE(1242)] = 81448, + [SMALL_STATE(1243)] = 81494, + [SMALL_STATE(1244)] = 81540, + [SMALL_STATE(1245)] = 81586, + [SMALL_STATE(1246)] = 81630, + [SMALL_STATE(1247)] = 81678, + [SMALL_STATE(1248)] = 81726, + [SMALL_STATE(1249)] = 81774, + [SMALL_STATE(1250)] = 81820, + [SMALL_STATE(1251)] = 81866, + [SMALL_STATE(1252)] = 81910, + [SMALL_STATE(1253)] = 81954, + [SMALL_STATE(1254)] = 81998, [SMALL_STATE(1255)] = 82046, [SMALL_STATE(1256)] = 82090, [SMALL_STATE(1257)] = 82133, - [SMALL_STATE(1258)] = 82176, - [SMALL_STATE(1259)] = 82219, - [SMALL_STATE(1260)] = 82270, - [SMALL_STATE(1261)] = 82313, - [SMALL_STATE(1262)] = 82356, - [SMALL_STATE(1263)] = 82399, - [SMALL_STATE(1264)] = 82442, - [SMALL_STATE(1265)] = 82485, - [SMALL_STATE(1266)] = 82528, - [SMALL_STATE(1267)] = 82571, + [SMALL_STATE(1258)] = 82178, + [SMALL_STATE(1259)] = 82221, + [SMALL_STATE(1260)] = 82264, + [SMALL_STATE(1261)] = 82307, + [SMALL_STATE(1262)] = 82358, + [SMALL_STATE(1263)] = 82401, + [SMALL_STATE(1264)] = 82444, + [SMALL_STATE(1265)] = 82487, + [SMALL_STATE(1266)] = 82530, + [SMALL_STATE(1267)] = 82573, [SMALL_STATE(1268)] = 82616, [SMALL_STATE(1269)] = 82659, [SMALL_STATE(1270)] = 82702, [SMALL_STATE(1271)] = 82745, - [SMALL_STATE(1272)] = 82788, - [SMALL_STATE(1273)] = 82831, - [SMALL_STATE(1274)] = 82874, - [SMALL_STATE(1275)] = 82917, - [SMALL_STATE(1276)] = 82960, - [SMALL_STATE(1277)] = 83003, - [SMALL_STATE(1278)] = 83050, - [SMALL_STATE(1279)] = 83097, - [SMALL_STATE(1280)] = 83144, - [SMALL_STATE(1281)] = 83187, - [SMALL_STATE(1282)] = 83230, - [SMALL_STATE(1283)] = 83273, - [SMALL_STATE(1284)] = 83320, - [SMALL_STATE(1285)] = 83363, - [SMALL_STATE(1286)] = 83406, - [SMALL_STATE(1287)] = 83449, - [SMALL_STATE(1288)] = 83492, - [SMALL_STATE(1289)] = 83535, - [SMALL_STATE(1290)] = 83578, - [SMALL_STATE(1291)] = 83621, - [SMALL_STATE(1292)] = 83664, - [SMALL_STATE(1293)] = 83707, - [SMALL_STATE(1294)] = 83750, - [SMALL_STATE(1295)] = 83793, - [SMALL_STATE(1296)] = 83836, - [SMALL_STATE(1297)] = 83879, - [SMALL_STATE(1298)] = 83922, + [SMALL_STATE(1272)] = 82792, + [SMALL_STATE(1273)] = 82839, + [SMALL_STATE(1274)] = 82886, + [SMALL_STATE(1275)] = 82931, + [SMALL_STATE(1276)] = 82976, + [SMALL_STATE(1277)] = 83021, + [SMALL_STATE(1278)] = 83064, + [SMALL_STATE(1279)] = 83107, + [SMALL_STATE(1280)] = 83150, + [SMALL_STATE(1281)] = 83193, + [SMALL_STATE(1282)] = 83236, + [SMALL_STATE(1283)] = 83279, + [SMALL_STATE(1284)] = 83322, + [SMALL_STATE(1285)] = 83365, + [SMALL_STATE(1286)] = 83408, + [SMALL_STATE(1287)] = 83451, + [SMALL_STATE(1288)] = 83494, + [SMALL_STATE(1289)] = 83537, + [SMALL_STATE(1290)] = 83580, + [SMALL_STATE(1291)] = 83623, + [SMALL_STATE(1292)] = 83666, + [SMALL_STATE(1293)] = 83709, + [SMALL_STATE(1294)] = 83752, + [SMALL_STATE(1295)] = 83795, + [SMALL_STATE(1296)] = 83838, + [SMALL_STATE(1297)] = 83881, + [SMALL_STATE(1298)] = 83924, [SMALL_STATE(1299)] = 83967, - [SMALL_STATE(1300)] = 84014, - [SMALL_STATE(1301)] = 84057, - [SMALL_STATE(1302)] = 84104, - [SMALL_STATE(1303)] = 84149, - [SMALL_STATE(1304)] = 84196, - [SMALL_STATE(1305)] = 84243, - [SMALL_STATE(1306)] = 84288, - [SMALL_STATE(1307)] = 84333, - [SMALL_STATE(1308)] = 84376, - [SMALL_STATE(1309)] = 84419, - [SMALL_STATE(1310)] = 84462, - [SMALL_STATE(1311)] = 84505, - [SMALL_STATE(1312)] = 84548, - [SMALL_STATE(1313)] = 84591, - [SMALL_STATE(1314)] = 84634, - [SMALL_STATE(1315)] = 84677, - [SMALL_STATE(1316)] = 84720, - [SMALL_STATE(1317)] = 84763, - [SMALL_STATE(1318)] = 84810, - [SMALL_STATE(1319)] = 84857, - [SMALL_STATE(1320)] = 84904, - [SMALL_STATE(1321)] = 84947, - [SMALL_STATE(1322)] = 84990, - [SMALL_STATE(1323)] = 85033, - [SMALL_STATE(1324)] = 85076, - [SMALL_STATE(1325)] = 85119, - [SMALL_STATE(1326)] = 85162, - [SMALL_STATE(1327)] = 85207, - [SMALL_STATE(1328)] = 85250, - [SMALL_STATE(1329)] = 85293, - [SMALL_STATE(1330)] = 85336, - [SMALL_STATE(1331)] = 85379, - [SMALL_STATE(1332)] = 85422, - [SMALL_STATE(1333)] = 85465, - [SMALL_STATE(1334)] = 85508, - [SMALL_STATE(1335)] = 85551, - [SMALL_STATE(1336)] = 85594, - [SMALL_STATE(1337)] = 85637, - [SMALL_STATE(1338)] = 85680, - [SMALL_STATE(1339)] = 85723, - [SMALL_STATE(1340)] = 85766, - [SMALL_STATE(1341)] = 85809, - [SMALL_STATE(1342)] = 85852, - [SMALL_STATE(1343)] = 85897, - [SMALL_STATE(1344)] = 85940, - [SMALL_STATE(1345)] = 85983, - [SMALL_STATE(1346)] = 86026, - [SMALL_STATE(1347)] = 86069, - [SMALL_STATE(1348)] = 86112, - [SMALL_STATE(1349)] = 86155, - [SMALL_STATE(1350)] = 86198, - [SMALL_STATE(1351)] = 86241, - [SMALL_STATE(1352)] = 86284, - [SMALL_STATE(1353)] = 86327, - [SMALL_STATE(1354)] = 86370, - [SMALL_STATE(1355)] = 86413, - [SMALL_STATE(1356)] = 86456, - [SMALL_STATE(1357)] = 86499, - [SMALL_STATE(1358)] = 86542, - [SMALL_STATE(1359)] = 86585, - [SMALL_STATE(1360)] = 86628, - [SMALL_STATE(1361)] = 86671, - [SMALL_STATE(1362)] = 86714, - [SMALL_STATE(1363)] = 86757, - [SMALL_STATE(1364)] = 86800, - [SMALL_STATE(1365)] = 86845, - [SMALL_STATE(1366)] = 86888, - [SMALL_STATE(1367)] = 86931, - [SMALL_STATE(1368)] = 86974, - [SMALL_STATE(1369)] = 87019, - [SMALL_STATE(1370)] = 87066, - [SMALL_STATE(1371)] = 87113, - [SMALL_STATE(1372)] = 87164, - [SMALL_STATE(1373)] = 87209, - [SMALL_STATE(1374)] = 87252, - [SMALL_STATE(1375)] = 87295, - [SMALL_STATE(1376)] = 87338, - [SMALL_STATE(1377)] = 87381, - [SMALL_STATE(1378)] = 87426, - [SMALL_STATE(1379)] = 87471, - [SMALL_STATE(1380)] = 87514, - [SMALL_STATE(1381)] = 87557, - [SMALL_STATE(1382)] = 87600, - [SMALL_STATE(1383)] = 87647, - [SMALL_STATE(1384)] = 87690, - [SMALL_STATE(1385)] = 87737, - [SMALL_STATE(1386)] = 87780, - [SMALL_STATE(1387)] = 87823, - [SMALL_STATE(1388)] = 87868, - [SMALL_STATE(1389)] = 87911, - [SMALL_STATE(1390)] = 87954, - [SMALL_STATE(1391)] = 87997, - [SMALL_STATE(1392)] = 88040, - [SMALL_STATE(1393)] = 88085, - [SMALL_STATE(1394)] = 88128, - [SMALL_STATE(1395)] = 88171, - [SMALL_STATE(1396)] = 88214, - [SMALL_STATE(1397)] = 88259, - [SMALL_STATE(1398)] = 88302, - [SMALL_STATE(1399)] = 88345, - [SMALL_STATE(1400)] = 88388, - [SMALL_STATE(1401)] = 88431, - [SMALL_STATE(1402)] = 88474, - [SMALL_STATE(1403)] = 88517, - [SMALL_STATE(1404)] = 88562, - [SMALL_STATE(1405)] = 88605, - [SMALL_STATE(1406)] = 88648, - [SMALL_STATE(1407)] = 88691, - [SMALL_STATE(1408)] = 88734, - [SMALL_STATE(1409)] = 88777, - [SMALL_STATE(1410)] = 88822, - [SMALL_STATE(1411)] = 88865, - [SMALL_STATE(1412)] = 88910, - [SMALL_STATE(1413)] = 88953, - [SMALL_STATE(1414)] = 88996, - [SMALL_STATE(1415)] = 89039, + [SMALL_STATE(1300)] = 84010, + [SMALL_STATE(1301)] = 84053, + [SMALL_STATE(1302)] = 84096, + [SMALL_STATE(1303)] = 84139, + [SMALL_STATE(1304)] = 84182, + [SMALL_STATE(1305)] = 84225, + [SMALL_STATE(1306)] = 84268, + [SMALL_STATE(1307)] = 84311, + [SMALL_STATE(1308)] = 84354, + [SMALL_STATE(1309)] = 84397, + [SMALL_STATE(1310)] = 84440, + [SMALL_STATE(1311)] = 84483, + [SMALL_STATE(1312)] = 84526, + [SMALL_STATE(1313)] = 84569, + [SMALL_STATE(1314)] = 84612, + [SMALL_STATE(1315)] = 84655, + [SMALL_STATE(1316)] = 84698, + [SMALL_STATE(1317)] = 84741, + [SMALL_STATE(1318)] = 84784, + [SMALL_STATE(1319)] = 84827, + [SMALL_STATE(1320)] = 84870, + [SMALL_STATE(1321)] = 84913, + [SMALL_STATE(1322)] = 84956, + [SMALL_STATE(1323)] = 84999, + [SMALL_STATE(1324)] = 85042, + [SMALL_STATE(1325)] = 85085, + [SMALL_STATE(1326)] = 85128, + [SMALL_STATE(1327)] = 85171, + [SMALL_STATE(1328)] = 85214, + [SMALL_STATE(1329)] = 85257, + [SMALL_STATE(1330)] = 85300, + [SMALL_STATE(1331)] = 85343, + [SMALL_STATE(1332)] = 85386, + [SMALL_STATE(1333)] = 85429, + [SMALL_STATE(1334)] = 85472, + [SMALL_STATE(1335)] = 85515, + [SMALL_STATE(1336)] = 85558, + [SMALL_STATE(1337)] = 85601, + [SMALL_STATE(1338)] = 85644, + [SMALL_STATE(1339)] = 85687, + [SMALL_STATE(1340)] = 85734, + [SMALL_STATE(1341)] = 85777, + [SMALL_STATE(1342)] = 85820, + [SMALL_STATE(1343)] = 85863, + [SMALL_STATE(1344)] = 85906, + [SMALL_STATE(1345)] = 85949, + [SMALL_STATE(1346)] = 85992, + [SMALL_STATE(1347)] = 86035, + [SMALL_STATE(1348)] = 86078, + [SMALL_STATE(1349)] = 86125, + [SMALL_STATE(1350)] = 86172, + [SMALL_STATE(1351)] = 86219, + [SMALL_STATE(1352)] = 86262, + [SMALL_STATE(1353)] = 86307, + [SMALL_STATE(1354)] = 86352, + [SMALL_STATE(1355)] = 86397, + [SMALL_STATE(1356)] = 86444, + [SMALL_STATE(1357)] = 86487, + [SMALL_STATE(1358)] = 86534, + [SMALL_STATE(1359)] = 86579, + [SMALL_STATE(1360)] = 86626, + [SMALL_STATE(1361)] = 86669, + [SMALL_STATE(1362)] = 86712, + [SMALL_STATE(1363)] = 86755, + [SMALL_STATE(1364)] = 86798, + [SMALL_STATE(1365)] = 86841, + [SMALL_STATE(1366)] = 86884, + [SMALL_STATE(1367)] = 86927, + [SMALL_STATE(1368)] = 86970, + [SMALL_STATE(1369)] = 87015, + [SMALL_STATE(1370)] = 87060, + [SMALL_STATE(1371)] = 87105, + [SMALL_STATE(1372)] = 87150, + [SMALL_STATE(1373)] = 87195, + [SMALL_STATE(1374)] = 87238, + [SMALL_STATE(1375)] = 87281, + [SMALL_STATE(1376)] = 87328, + [SMALL_STATE(1377)] = 87375, + [SMALL_STATE(1378)] = 87420, + [SMALL_STATE(1379)] = 87465, + [SMALL_STATE(1380)] = 87508, + [SMALL_STATE(1381)] = 87551, + [SMALL_STATE(1382)] = 87596, + [SMALL_STATE(1383)] = 87641, + [SMALL_STATE(1384)] = 87684, + [SMALL_STATE(1385)] = 87727, + [SMALL_STATE(1386)] = 87772, + [SMALL_STATE(1387)] = 87815, + [SMALL_STATE(1388)] = 87858, + [SMALL_STATE(1389)] = 87901, + [SMALL_STATE(1390)] = 87944, + [SMALL_STATE(1391)] = 87987, + [SMALL_STATE(1392)] = 88030, + [SMALL_STATE(1393)] = 88073, + [SMALL_STATE(1394)] = 88124, + [SMALL_STATE(1395)] = 88167, + [SMALL_STATE(1396)] = 88210, + [SMALL_STATE(1397)] = 88253, + [SMALL_STATE(1398)] = 88296, + [SMALL_STATE(1399)] = 88339, + [SMALL_STATE(1400)] = 88386, + [SMALL_STATE(1401)] = 88433, + [SMALL_STATE(1402)] = 88480, + [SMALL_STATE(1403)] = 88523, + [SMALL_STATE(1404)] = 88566, + [SMALL_STATE(1405)] = 88611, + [SMALL_STATE(1406)] = 88654, + [SMALL_STATE(1407)] = 88697, + [SMALL_STATE(1408)] = 88740, + [SMALL_STATE(1409)] = 88783, + [SMALL_STATE(1410)] = 88826, + [SMALL_STATE(1411)] = 88869, + [SMALL_STATE(1412)] = 88912, + [SMALL_STATE(1413)] = 88955, + [SMALL_STATE(1414)] = 88998, + [SMALL_STATE(1415)] = 89041, [SMALL_STATE(1416)] = 89084, [SMALL_STATE(1417)] = 89127, [SMALL_STATE(1418)] = 89170, [SMALL_STATE(1419)] = 89213, - [SMALL_STATE(1420)] = 89255, - [SMALL_STATE(1421)] = 89301, - [SMALL_STATE(1422)] = 89343, - [SMALL_STATE(1423)] = 89387, - [SMALL_STATE(1424)] = 89431, - [SMALL_STATE(1425)] = 89475, - [SMALL_STATE(1426)] = 89519, - [SMALL_STATE(1427)] = 89567, - [SMALL_STATE(1428)] = 89611, - [SMALL_STATE(1429)] = 89655, - [SMALL_STATE(1430)] = 89697, - [SMALL_STATE(1431)] = 89739, - [SMALL_STATE(1432)] = 89781, - [SMALL_STATE(1433)] = 89823, - [SMALL_STATE(1434)] = 89865, + [SMALL_STATE(1420)] = 89257, + [SMALL_STATE(1421)] = 89307, + [SMALL_STATE(1422)] = 89349, + [SMALL_STATE(1423)] = 89391, + [SMALL_STATE(1424)] = 89439, + [SMALL_STATE(1425)] = 89481, + [SMALL_STATE(1426)] = 89523, + [SMALL_STATE(1427)] = 89565, + [SMALL_STATE(1428)] = 89607, + [SMALL_STATE(1429)] = 89649, + [SMALL_STATE(1430)] = 89691, + [SMALL_STATE(1431)] = 89735, + [SMALL_STATE(1432)] = 89777, + [SMALL_STATE(1433)] = 89819, + [SMALL_STATE(1434)] = 89863, [SMALL_STATE(1435)] = 89907, - [SMALL_STATE(1436)] = 89949, - [SMALL_STATE(1437)] = 89999, - [SMALL_STATE(1438)] = 90041, - [SMALL_STATE(1439)] = 90083, - [SMALL_STATE(1440)] = 90125, - [SMALL_STATE(1441)] = 90167, - [SMALL_STATE(1442)] = 90209, - [SMALL_STATE(1443)] = 90251, - [SMALL_STATE(1444)] = 90293, - [SMALL_STATE(1445)] = 90335, - [SMALL_STATE(1446)] = 90377, - [SMALL_STATE(1447)] = 90419, - [SMALL_STATE(1448)] = 90461, - [SMALL_STATE(1449)] = 90503, - [SMALL_STATE(1450)] = 90545, - [SMALL_STATE(1451)] = 90587, - [SMALL_STATE(1452)] = 90629, - [SMALL_STATE(1453)] = 90671, - [SMALL_STATE(1454)] = 90713, - [SMALL_STATE(1455)] = 90755, - [SMALL_STATE(1456)] = 90797, - [SMALL_STATE(1457)] = 90843, - [SMALL_STATE(1458)] = 90885, - [SMALL_STATE(1459)] = 90931, - [SMALL_STATE(1460)] = 90973, - [SMALL_STATE(1461)] = 91015, - [SMALL_STATE(1462)] = 91057, - [SMALL_STATE(1463)] = 91099, + [SMALL_STATE(1436)] = 89951, + [SMALL_STATE(1437)] = 89995, + [SMALL_STATE(1438)] = 90037, + [SMALL_STATE(1439)] = 90081, + [SMALL_STATE(1440)] = 90123, + [SMALL_STATE(1441)] = 90165, + [SMALL_STATE(1442)] = 90207, + [SMALL_STATE(1443)] = 90249, + [SMALL_STATE(1444)] = 90291, + [SMALL_STATE(1445)] = 90333, + [SMALL_STATE(1446)] = 90379, + [SMALL_STATE(1447)] = 90421, + [SMALL_STATE(1448)] = 90463, + [SMALL_STATE(1449)] = 90505, + [SMALL_STATE(1450)] = 90547, + [SMALL_STATE(1451)] = 90589, + [SMALL_STATE(1452)] = 90631, + [SMALL_STATE(1453)] = 90673, + [SMALL_STATE(1454)] = 90715, + [SMALL_STATE(1455)] = 90757, + [SMALL_STATE(1456)] = 90803, + [SMALL_STATE(1457)] = 90845, + [SMALL_STATE(1458)] = 90887, + [SMALL_STATE(1459)] = 90929, + [SMALL_STATE(1460)] = 90975, + [SMALL_STATE(1461)] = 91017, + [SMALL_STATE(1462)] = 91059, + [SMALL_STATE(1463)] = 91101, [SMALL_STATE(1464)] = 91143, [SMALL_STATE(1465)] = 91187, [SMALL_STATE(1466)] = 91231, - [SMALL_STATE(1467)] = 91272, + [SMALL_STATE(1467)] = 91274, [SMALL_STATE(1468)] = 91315, - [SMALL_STATE(1469)] = 91358, - [SMALL_STATE(1470)] = 91401, - [SMALL_STATE(1471)] = 91444, - [SMALL_STATE(1472)] = 91487, - [SMALL_STATE(1473)] = 91530, - [SMALL_STATE(1474)] = 91571, - [SMALL_STATE(1475)] = 91612, - [SMALL_STATE(1476)] = 91653, - [SMALL_STATE(1477)] = 91694, - [SMALL_STATE(1478)] = 91735, - [SMALL_STATE(1479)] = 91776, - [SMALL_STATE(1480)] = 91819, - [SMALL_STATE(1481)] = 91862, - [SMALL_STATE(1482)] = 91905, - [SMALL_STATE(1483)] = 91946, - [SMALL_STATE(1484)] = 91987, + [SMALL_STATE(1469)] = 91356, + [SMALL_STATE(1470)] = 91397, + [SMALL_STATE(1471)] = 91438, + [SMALL_STATE(1472)] = 91479, + [SMALL_STATE(1473)] = 91520, + [SMALL_STATE(1474)] = 91561, + [SMALL_STATE(1475)] = 91604, + [SMALL_STATE(1476)] = 91647, + [SMALL_STATE(1477)] = 91690, + [SMALL_STATE(1478)] = 91731, + [SMALL_STATE(1479)] = 91772, + [SMALL_STATE(1480)] = 91813, + [SMALL_STATE(1481)] = 91856, + [SMALL_STATE(1482)] = 91899, + [SMALL_STATE(1483)] = 91942, + [SMALL_STATE(1484)] = 91985, [SMALL_STATE(1485)] = 92028, [SMALL_STATE(1486)] = 92102, [SMALL_STATE(1487)] = 92176, @@ -125601,8 +125601,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1551)] = 96448, [SMALL_STATE(1552)] = 96506, [SMALL_STATE(1553)] = 96564, - [SMALL_STATE(1554)] = 96610, - [SMALL_STATE(1555)] = 96656, + [SMALL_STATE(1554)] = 96622, + [SMALL_STATE(1555)] = 96668, [SMALL_STATE(1556)] = 96714, [SMALL_STATE(1557)] = 96772, [SMALL_STATE(1558)] = 96830, @@ -125611,23 +125611,23 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1561)] = 96976, [SMALL_STATE(1562)] = 97020, [SMALL_STATE(1563)] = 97064, - [SMALL_STATE(1564)] = 97107, + [SMALL_STATE(1564)] = 97105, [SMALL_STATE(1565)] = 97148, [SMALL_STATE(1566)] = 97191, [SMALL_STATE(1567)] = 97232, [SMALL_STATE(1568)] = 97275, [SMALL_STATE(1569)] = 97318, - [SMALL_STATE(1570)] = 97360, - [SMALL_STATE(1571)] = 97402, - [SMALL_STATE(1572)] = 97432, + [SMALL_STATE(1570)] = 97348, + [SMALL_STATE(1571)] = 97380, + [SMALL_STATE(1572)] = 97422, [SMALL_STATE(1573)] = 97464, - [SMALL_STATE(1574)] = 97496, - [SMALL_STATE(1575)] = 97528, - [SMALL_STATE(1576)] = 97560, - [SMALL_STATE(1577)] = 97592, - [SMALL_STATE(1578)] = 97624, - [SMALL_STATE(1579)] = 97654, - [SMALL_STATE(1580)] = 97696, + [SMALL_STATE(1574)] = 97494, + [SMALL_STATE(1575)] = 97526, + [SMALL_STATE(1576)] = 97568, + [SMALL_STATE(1577)] = 97600, + [SMALL_STATE(1578)] = 97632, + [SMALL_STATE(1579)] = 97664, + [SMALL_STATE(1580)] = 97706, [SMALL_STATE(1581)] = 97738, [SMALL_STATE(1582)] = 97768, [SMALL_STATE(1583)] = 97798, @@ -125637,909 +125637,909 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1587)] = 97918, [SMALL_STATE(1588)] = 97948, [SMALL_STATE(1589)] = 97978, - [SMALL_STATE(1590)] = 98007, - [SMALL_STATE(1591)] = 98036, - [SMALL_STATE(1592)] = 98065, - [SMALL_STATE(1593)] = 98094, - [SMALL_STATE(1594)] = 98123, - [SMALL_STATE(1595)] = 98170, - [SMALL_STATE(1596)] = 98217, - [SMALL_STATE(1597)] = 98246, - [SMALL_STATE(1598)] = 98275, - [SMALL_STATE(1599)] = 98304, - [SMALL_STATE(1600)] = 98333, - [SMALL_STATE(1601)] = 98362, - [SMALL_STATE(1602)] = 98391, + [SMALL_STATE(1590)] = 98025, + [SMALL_STATE(1591)] = 98054, + [SMALL_STATE(1592)] = 98101, + [SMALL_STATE(1593)] = 98126, + [SMALL_STATE(1594)] = 98155, + [SMALL_STATE(1595)] = 98184, + [SMALL_STATE(1596)] = 98213, + [SMALL_STATE(1597)] = 98242, + [SMALL_STATE(1598)] = 98271, + [SMALL_STATE(1599)] = 98300, + [SMALL_STATE(1600)] = 98329, + [SMALL_STATE(1601)] = 98358, + [SMALL_STATE(1602)] = 98387, [SMALL_STATE(1603)] = 98416, [SMALL_STATE(1604)] = 98445, - [SMALL_STATE(1605)] = 98492, - [SMALL_STATE(1606)] = 98521, - [SMALL_STATE(1607)] = 98568, - [SMALL_STATE(1608)] = 98597, - [SMALL_STATE(1609)] = 98626, - [SMALL_STATE(1610)] = 98655, - [SMALL_STATE(1611)] = 98684, - [SMALL_STATE(1612)] = 98731, - [SMALL_STATE(1613)] = 98760, - [SMALL_STATE(1614)] = 98789, - [SMALL_STATE(1615)] = 98818, - [SMALL_STATE(1616)] = 98847, - [SMALL_STATE(1617)] = 98876, - [SMALL_STATE(1618)] = 98923, - [SMALL_STATE(1619)] = 98948, - [SMALL_STATE(1620)] = 98995, - [SMALL_STATE(1621)] = 99020, - [SMALL_STATE(1622)] = 99067, - [SMALL_STATE(1623)] = 99096, - [SMALL_STATE(1624)] = 99125, - [SMALL_STATE(1625)] = 99150, - [SMALL_STATE(1626)] = 99197, + [SMALL_STATE(1605)] = 98470, + [SMALL_STATE(1606)] = 98499, + [SMALL_STATE(1607)] = 98528, + [SMALL_STATE(1608)] = 98557, + [SMALL_STATE(1609)] = 98586, + [SMALL_STATE(1610)] = 98615, + [SMALL_STATE(1611)] = 98640, + [SMALL_STATE(1612)] = 98669, + [SMALL_STATE(1613)] = 98716, + [SMALL_STATE(1614)] = 98745, + [SMALL_STATE(1615)] = 98792, + [SMALL_STATE(1616)] = 98839, + [SMALL_STATE(1617)] = 98886, + [SMALL_STATE(1618)] = 98933, + [SMALL_STATE(1619)] = 98980, + [SMALL_STATE(1620)] = 99027, + [SMALL_STATE(1621)] = 99074, + [SMALL_STATE(1622)] = 99103, + [SMALL_STATE(1623)] = 99132, + [SMALL_STATE(1624)] = 99161, + [SMALL_STATE(1625)] = 99190, + [SMALL_STATE(1626)] = 99219, [SMALL_STATE(1627)] = 99244, - [SMALL_STATE(1628)] = 99272, - [SMALL_STATE(1629)] = 99318, - [SMALL_STATE(1630)] = 99342, - [SMALL_STATE(1631)] = 99388, - [SMALL_STATE(1632)] = 99434, - [SMALL_STATE(1633)] = 99480, - [SMALL_STATE(1634)] = 99526, - [SMALL_STATE(1635)] = 99550, - [SMALL_STATE(1636)] = 99582, - [SMALL_STATE(1637)] = 99610, - [SMALL_STATE(1638)] = 99640, - [SMALL_STATE(1639)] = 99686, - [SMALL_STATE(1640)] = 99718, - [SMALL_STATE(1641)] = 99764, - [SMALL_STATE(1642)] = 99810, - [SMALL_STATE(1643)] = 99856, - [SMALL_STATE(1644)] = 99880, + [SMALL_STATE(1628)] = 99268, + [SMALL_STATE(1629)] = 99314, + [SMALL_STATE(1630)] = 99360, + [SMALL_STATE(1631)] = 99390, + [SMALL_STATE(1632)] = 99436, + [SMALL_STATE(1633)] = 99468, + [SMALL_STATE(1634)] = 99514, + [SMALL_STATE(1635)] = 99546, + [SMALL_STATE(1636)] = 99592, + [SMALL_STATE(1637)] = 99638, + [SMALL_STATE(1638)] = 99684, + [SMALL_STATE(1639)] = 99730, + [SMALL_STATE(1640)] = 99754, + [SMALL_STATE(1641)] = 99778, + [SMALL_STATE(1642)] = 99806, + [SMALL_STATE(1643)] = 99830, + [SMALL_STATE(1644)] = 99876, [SMALL_STATE(1645)] = 99904, [SMALL_STATE(1646)] = 99950, [SMALL_STATE(1647)] = 99996, [SMALL_STATE(1648)] = 100039, - [SMALL_STATE(1649)] = 100079, - [SMALL_STATE(1650)] = 100119, - [SMALL_STATE(1651)] = 100159, + [SMALL_STATE(1649)] = 100065, + [SMALL_STATE(1650)] = 100105, + [SMALL_STATE(1651)] = 100145, [SMALL_STATE(1652)] = 100185, [SMALL_STATE(1653)] = 100225, [SMALL_STATE(1654)] = 100262, [SMALL_STATE(1655)] = 100299, - [SMALL_STATE(1656)] = 100324, - [SMALL_STATE(1657)] = 100365, - [SMALL_STATE(1658)] = 100406, - [SMALL_STATE(1659)] = 100447, - [SMALL_STATE(1660)] = 100466, - [SMALL_STATE(1661)] = 100493, - [SMALL_STATE(1662)] = 100534, - [SMALL_STATE(1663)] = 100555, - [SMALL_STATE(1664)] = 100596, - [SMALL_STATE(1665)] = 100637, - [SMALL_STATE(1666)] = 100656, - [SMALL_STATE(1667)] = 100697, - [SMALL_STATE(1668)] = 100716, - [SMALL_STATE(1669)] = 100743, - [SMALL_STATE(1670)] = 100770, + [SMALL_STATE(1656)] = 100340, + [SMALL_STATE(1657)] = 100381, + [SMALL_STATE(1658)] = 100404, + [SMALL_STATE(1659)] = 100423, + [SMALL_STATE(1660)] = 100444, + [SMALL_STATE(1661)] = 100471, + [SMALL_STATE(1662)] = 100498, + [SMALL_STATE(1663)] = 100525, + [SMALL_STATE(1664)] = 100566, + [SMALL_STATE(1665)] = 100585, + [SMALL_STATE(1666)] = 100610, + [SMALL_STATE(1667)] = 100629, + [SMALL_STATE(1668)] = 100670, + [SMALL_STATE(1669)] = 100711, + [SMALL_STATE(1670)] = 100752, [SMALL_STATE(1671)] = 100793, [SMALL_STATE(1672)] = 100834, - [SMALL_STATE(1673)] = 100872, + [SMALL_STATE(1673)] = 100864, [SMALL_STATE(1674)] = 100902, [SMALL_STATE(1675)] = 100932, [SMALL_STATE(1676)] = 100962, [SMALL_STATE(1677)] = 101000, - [SMALL_STATE(1678)] = 101030, - [SMALL_STATE(1679)] = 101060, - [SMALL_STATE(1680)] = 101090, - [SMALL_STATE(1681)] = 101120, - [SMALL_STATE(1682)] = 101158, - [SMALL_STATE(1683)] = 101188, - [SMALL_STATE(1684)] = 101218, - [SMALL_STATE(1685)] = 101248, - [SMALL_STATE(1686)] = 101286, - [SMALL_STATE(1687)] = 101324, - [SMALL_STATE(1688)] = 101354, - [SMALL_STATE(1689)] = 101392, - [SMALL_STATE(1690)] = 101430, - [SMALL_STATE(1691)] = 101468, - [SMALL_STATE(1692)] = 101506, - [SMALL_STATE(1693)] = 101544, - [SMALL_STATE(1694)] = 101574, - [SMALL_STATE(1695)] = 101612, - [SMALL_STATE(1696)] = 101650, - [SMALL_STATE(1697)] = 101680, - [SMALL_STATE(1698)] = 101718, - [SMALL_STATE(1699)] = 101750, - [SMALL_STATE(1700)] = 101788, - [SMALL_STATE(1701)] = 101826, - [SMALL_STATE(1702)] = 101856, - [SMALL_STATE(1703)] = 101886, - [SMALL_STATE(1704)] = 101924, - [SMALL_STATE(1705)] = 101962, - [SMALL_STATE(1706)] = 102000, - [SMALL_STATE(1707)] = 102030, - [SMALL_STATE(1708)] = 102068, - [SMALL_STATE(1709)] = 102098, - [SMALL_STATE(1710)] = 102128, - [SMALL_STATE(1711)] = 102166, - [SMALL_STATE(1712)] = 102204, - [SMALL_STATE(1713)] = 102234, - [SMALL_STATE(1714)] = 102272, - [SMALL_STATE(1715)] = 102310, - [SMALL_STATE(1716)] = 102348, + [SMALL_STATE(1678)] = 101038, + [SMALL_STATE(1679)] = 101068, + [SMALL_STATE(1680)] = 101098, + [SMALL_STATE(1681)] = 101136, + [SMALL_STATE(1682)] = 101174, + [SMALL_STATE(1683)] = 101212, + [SMALL_STATE(1684)] = 101242, + [SMALL_STATE(1685)] = 101272, + [SMALL_STATE(1686)] = 101302, + [SMALL_STATE(1687)] = 101340, + [SMALL_STATE(1688)] = 101378, + [SMALL_STATE(1689)] = 101416, + [SMALL_STATE(1690)] = 101446, + [SMALL_STATE(1691)] = 101476, + [SMALL_STATE(1692)] = 101514, + [SMALL_STATE(1693)] = 101552, + [SMALL_STATE(1694)] = 101590, + [SMALL_STATE(1695)] = 101628, + [SMALL_STATE(1696)] = 101658, + [SMALL_STATE(1697)] = 101688, + [SMALL_STATE(1698)] = 101726, + [SMALL_STATE(1699)] = 101764, + [SMALL_STATE(1700)] = 101794, + [SMALL_STATE(1701)] = 101824, + [SMALL_STATE(1702)] = 101862, + [SMALL_STATE(1703)] = 101900, + [SMALL_STATE(1704)] = 101930, + [SMALL_STATE(1705)] = 101960, + [SMALL_STATE(1706)] = 101998, + [SMALL_STATE(1707)] = 102028, + [SMALL_STATE(1708)] = 102066, + [SMALL_STATE(1709)] = 102104, + [SMALL_STATE(1710)] = 102142, + [SMALL_STATE(1711)] = 102172, + [SMALL_STATE(1712)] = 102210, + [SMALL_STATE(1713)] = 102248, + [SMALL_STATE(1714)] = 102286, + [SMALL_STATE(1715)] = 102324, + [SMALL_STATE(1716)] = 102354, [SMALL_STATE(1717)] = 102386, - [SMALL_STATE(1718)] = 102407, - [SMALL_STATE(1719)] = 102432, - [SMALL_STATE(1720)] = 102457, - [SMALL_STATE(1721)] = 102474, - [SMALL_STATE(1722)] = 102499, - [SMALL_STATE(1723)] = 102524, - [SMALL_STATE(1724)] = 102541, - [SMALL_STATE(1725)] = 102566, - [SMALL_STATE(1726)] = 102583, - [SMALL_STATE(1727)] = 102608, + [SMALL_STATE(1718)] = 102403, + [SMALL_STATE(1719)] = 102424, + [SMALL_STATE(1720)] = 102441, + [SMALL_STATE(1721)] = 102466, + [SMALL_STATE(1722)] = 102491, + [SMALL_STATE(1723)] = 102516, + [SMALL_STATE(1724)] = 102533, + [SMALL_STATE(1725)] = 102558, + [SMALL_STATE(1726)] = 102581, + [SMALL_STATE(1727)] = 102606, [SMALL_STATE(1728)] = 102627, - [SMALL_STATE(1729)] = 102656, - [SMALL_STATE(1730)] = 102673, - [SMALL_STATE(1731)] = 102692, - [SMALL_STATE(1732)] = 102721, - [SMALL_STATE(1733)] = 102742, - [SMALL_STATE(1734)] = 102759, + [SMALL_STATE(1729)] = 102652, + [SMALL_STATE(1730)] = 102669, + [SMALL_STATE(1731)] = 102686, + [SMALL_STATE(1732)] = 102705, + [SMALL_STATE(1733)] = 102734, + [SMALL_STATE(1734)] = 102751, [SMALL_STATE(1735)] = 102776, - [SMALL_STATE(1736)] = 102799, - [SMALL_STATE(1737)] = 102822, + [SMALL_STATE(1736)] = 102795, + [SMALL_STATE(1737)] = 102818, [SMALL_STATE(1738)] = 102847, [SMALL_STATE(1739)] = 102872, - [SMALL_STATE(1740)] = 102888, - [SMALL_STATE(1741)] = 102912, - [SMALL_STATE(1742)] = 102930, - [SMALL_STATE(1743)] = 102946, - [SMALL_STATE(1744)] = 102966, - [SMALL_STATE(1745)] = 102988, - [SMALL_STATE(1746)] = 103008, - [SMALL_STATE(1747)] = 103032, - [SMALL_STATE(1748)] = 103050, - [SMALL_STATE(1749)] = 103070, - [SMALL_STATE(1750)] = 103100, - [SMALL_STATE(1751)] = 103122, - [SMALL_STATE(1752)] = 103146, - [SMALL_STATE(1753)] = 103170, + [SMALL_STATE(1740)] = 102896, + [SMALL_STATE(1741)] = 102920, + [SMALL_STATE(1742)] = 102942, + [SMALL_STATE(1743)] = 102962, + [SMALL_STATE(1744)] = 102978, + [SMALL_STATE(1745)] = 102996, + [SMALL_STATE(1746)] = 103014, + [SMALL_STATE(1747)] = 103044, + [SMALL_STATE(1748)] = 103064, + [SMALL_STATE(1749)] = 103086, + [SMALL_STATE(1750)] = 103110, + [SMALL_STATE(1751)] = 103134, + [SMALL_STATE(1752)] = 103150, + [SMALL_STATE(1753)] = 103172, [SMALL_STATE(1754)] = 103194, - [SMALL_STATE(1755)] = 103218, - [SMALL_STATE(1756)] = 103242, - [SMALL_STATE(1757)] = 103260, - [SMALL_STATE(1758)] = 103284, - [SMALL_STATE(1759)] = 103306, - [SMALL_STATE(1760)] = 103326, - [SMALL_STATE(1761)] = 103342, + [SMALL_STATE(1755)] = 103212, + [SMALL_STATE(1756)] = 103228, + [SMALL_STATE(1757)] = 103244, + [SMALL_STATE(1758)] = 103264, + [SMALL_STATE(1759)] = 103288, + [SMALL_STATE(1760)] = 103312, + [SMALL_STATE(1761)] = 103336, [SMALL_STATE(1762)] = 103360, - [SMALL_STATE(1763)] = 103376, - [SMALL_STATE(1764)] = 103400, - [SMALL_STATE(1765)] = 103422, + [SMALL_STATE(1763)] = 103384, + [SMALL_STATE(1764)] = 103406, + [SMALL_STATE(1765)] = 103426, [SMALL_STATE(1766)] = 103442, - [SMALL_STATE(1767)] = 103466, - [SMALL_STATE(1768)] = 103482, + [SMALL_STATE(1767)] = 103460, + [SMALL_STATE(1768)] = 103476, [SMALL_STATE(1769)] = 103500, - [SMALL_STATE(1770)] = 103522, - [SMALL_STATE(1771)] = 103538, + [SMALL_STATE(1770)] = 103524, + [SMALL_STATE(1771)] = 103544, [SMALL_STATE(1772)] = 103562, [SMALL_STATE(1773)] = 103586, - [SMALL_STATE(1774)] = 103606, + [SMALL_STATE(1774)] = 103610, [SMALL_STATE(1775)] = 103630, - [SMALL_STATE(1776)] = 103657, - [SMALL_STATE(1777)] = 103674, - [SMALL_STATE(1778)] = 103691, - [SMALL_STATE(1779)] = 103712, - [SMALL_STATE(1780)] = 103741, - [SMALL_STATE(1781)] = 103762, - [SMALL_STATE(1782)] = 103785, - [SMALL_STATE(1783)] = 103810, - [SMALL_STATE(1784)] = 103833, - [SMALL_STATE(1785)] = 103860, - [SMALL_STATE(1786)] = 103885, - [SMALL_STATE(1787)] = 103908, - [SMALL_STATE(1788)] = 103929, - [SMALL_STATE(1789)] = 103950, - [SMALL_STATE(1790)] = 103971, - [SMALL_STATE(1791)] = 103994, - [SMALL_STATE(1792)] = 104017, - [SMALL_STATE(1793)] = 104038, - [SMALL_STATE(1794)] = 104067, - [SMALL_STATE(1795)] = 104088, - [SMALL_STATE(1796)] = 104109, - [SMALL_STATE(1797)] = 104126, - [SMALL_STATE(1798)] = 104155, - [SMALL_STATE(1799)] = 104182, - [SMALL_STATE(1800)] = 104205, - [SMALL_STATE(1801)] = 104234, - [SMALL_STATE(1802)] = 104255, - [SMALL_STATE(1803)] = 104280, - [SMALL_STATE(1804)] = 104301, - [SMALL_STATE(1805)] = 104322, - [SMALL_STATE(1806)] = 104343, - [SMALL_STATE(1807)] = 104372, - [SMALL_STATE(1808)] = 104397, - [SMALL_STATE(1809)] = 104420, - [SMALL_STATE(1810)] = 104449, - [SMALL_STATE(1811)] = 104470, - [SMALL_STATE(1812)] = 104493, - [SMALL_STATE(1813)] = 104522, + [SMALL_STATE(1776)] = 103653, + [SMALL_STATE(1777)] = 103678, + [SMALL_STATE(1778)] = 103701, + [SMALL_STATE(1779)] = 103728, + [SMALL_STATE(1780)] = 103745, + [SMALL_STATE(1781)] = 103772, + [SMALL_STATE(1782)] = 103799, + [SMALL_STATE(1783)] = 103826, + [SMALL_STATE(1784)] = 103847, + [SMALL_STATE(1785)] = 103876, + [SMALL_STATE(1786)] = 103893, + [SMALL_STATE(1787)] = 103914, + [SMALL_STATE(1788)] = 103937, + [SMALL_STATE(1789)] = 103962, + [SMALL_STATE(1790)] = 103989, + [SMALL_STATE(1791)] = 104018, + [SMALL_STATE(1792)] = 104043, + [SMALL_STATE(1793)] = 104066, + [SMALL_STATE(1794)] = 104083, + [SMALL_STATE(1795)] = 104104, + [SMALL_STATE(1796)] = 104133, + [SMALL_STATE(1797)] = 104158, + [SMALL_STATE(1798)] = 104187, + [SMALL_STATE(1799)] = 104210, + [SMALL_STATE(1800)] = 104235, + [SMALL_STATE(1801)] = 104264, + [SMALL_STATE(1802)] = 104285, + [SMALL_STATE(1803)] = 104306, + [SMALL_STATE(1804)] = 104335, + [SMALL_STATE(1805)] = 104356, + [SMALL_STATE(1806)] = 104379, + [SMALL_STATE(1807)] = 104396, + [SMALL_STATE(1808)] = 104417, + [SMALL_STATE(1809)] = 104434, + [SMALL_STATE(1810)] = 104453, + [SMALL_STATE(1811)] = 104482, + [SMALL_STATE(1812)] = 104503, + [SMALL_STATE(1813)] = 104526, [SMALL_STATE(1814)] = 104549, [SMALL_STATE(1815)] = 104578, - [SMALL_STATE(1816)] = 104599, - [SMALL_STATE(1817)] = 104622, - [SMALL_STATE(1818)] = 104639, - [SMALL_STATE(1819)] = 104660, - [SMALL_STATE(1820)] = 104677, - [SMALL_STATE(1821)] = 104694, - [SMALL_STATE(1822)] = 104713, - [SMALL_STATE(1823)] = 104732, - [SMALL_STATE(1824)] = 104753, - [SMALL_STATE(1825)] = 104782, - [SMALL_STATE(1826)] = 104797, - [SMALL_STATE(1827)] = 104822, - [SMALL_STATE(1828)] = 104849, - [SMALL_STATE(1829)] = 104876, - [SMALL_STATE(1830)] = 104899, - [SMALL_STATE(1831)] = 104918, - [SMALL_STATE(1832)] = 104945, - [SMALL_STATE(1833)] = 104972, - [SMALL_STATE(1834)] = 104997, + [SMALL_STATE(1816)] = 104605, + [SMALL_STATE(1817)] = 104628, + [SMALL_STATE(1818)] = 104657, + [SMALL_STATE(1819)] = 104676, + [SMALL_STATE(1820)] = 104691, + [SMALL_STATE(1821)] = 104720, + [SMALL_STATE(1822)] = 104741, + [SMALL_STATE(1823)] = 104766, + [SMALL_STATE(1824)] = 104787, + [SMALL_STATE(1825)] = 104808, + [SMALL_STATE(1826)] = 104825, + [SMALL_STATE(1827)] = 104844, + [SMALL_STATE(1828)] = 104865, + [SMALL_STATE(1829)] = 104892, + [SMALL_STATE(1830)] = 104919, + [SMALL_STATE(1831)] = 104940, + [SMALL_STATE(1832)] = 104961, + [SMALL_STATE(1833)] = 104984, + [SMALL_STATE(1834)] = 105005, [SMALL_STATE(1835)] = 105026, [SMALL_STATE(1836)] = 105052, [SMALL_STATE(1837)] = 105078, [SMALL_STATE(1838)] = 105104, - [SMALL_STATE(1839)] = 105128, - [SMALL_STATE(1840)] = 105150, - [SMALL_STATE(1841)] = 105174, - [SMALL_STATE(1842)] = 105194, - [SMALL_STATE(1843)] = 105216, - [SMALL_STATE(1844)] = 105234, - [SMALL_STATE(1845)] = 105250, - [SMALL_STATE(1846)] = 105276, - [SMALL_STATE(1847)] = 105294, - [SMALL_STATE(1848)] = 105320, - [SMALL_STATE(1849)] = 105338, - [SMALL_STATE(1850)] = 105360, - [SMALL_STATE(1851)] = 105382, - [SMALL_STATE(1852)] = 105408, - [SMALL_STATE(1853)] = 105426, - [SMALL_STATE(1854)] = 105448, - [SMALL_STATE(1855)] = 105474, - [SMALL_STATE(1856)] = 105494, - [SMALL_STATE(1857)] = 105516, - [SMALL_STATE(1858)] = 105542, - [SMALL_STATE(1859)] = 105568, - [SMALL_STATE(1860)] = 105590, - [SMALL_STATE(1861)] = 105614, - [SMALL_STATE(1862)] = 105638, - [SMALL_STATE(1863)] = 105656, - [SMALL_STATE(1864)] = 105682, - [SMALL_STATE(1865)] = 105700, + [SMALL_STATE(1839)] = 105122, + [SMALL_STATE(1840)] = 105148, + [SMALL_STATE(1841)] = 105166, + [SMALL_STATE(1842)] = 105184, + [SMALL_STATE(1843)] = 105202, + [SMALL_STATE(1844)] = 105224, + [SMALL_STATE(1845)] = 105248, + [SMALL_STATE(1846)] = 105274, + [SMALL_STATE(1847)] = 105290, + [SMALL_STATE(1848)] = 105308, + [SMALL_STATE(1849)] = 105334, + [SMALL_STATE(1850)] = 105352, + [SMALL_STATE(1851)] = 105376, + [SMALL_STATE(1852)] = 105398, + [SMALL_STATE(1853)] = 105418, + [SMALL_STATE(1854)] = 105442, + [SMALL_STATE(1855)] = 105460, + [SMALL_STATE(1856)] = 105486, + [SMALL_STATE(1857)] = 105512, + [SMALL_STATE(1858)] = 105538, + [SMALL_STATE(1859)] = 105556, + [SMALL_STATE(1860)] = 105582, + [SMALL_STATE(1861)] = 105604, + [SMALL_STATE(1862)] = 105626, + [SMALL_STATE(1863)] = 105652, + [SMALL_STATE(1864)] = 105678, + [SMALL_STATE(1865)] = 105696, [SMALL_STATE(1866)] = 105718, - [SMALL_STATE(1867)] = 105734, - [SMALL_STATE(1868)] = 105760, - [SMALL_STATE(1869)] = 105782, + [SMALL_STATE(1867)] = 105744, + [SMALL_STATE(1868)] = 105766, + [SMALL_STATE(1869)] = 105792, [SMALL_STATE(1870)] = 105808, - [SMALL_STATE(1871)] = 105834, - [SMALL_STATE(1872)] = 105860, - [SMALL_STATE(1873)] = 105882, - [SMALL_STATE(1874)] = 105900, - [SMALL_STATE(1875)] = 105920, - [SMALL_STATE(1876)] = 105946, - [SMALL_STATE(1877)] = 105972, - [SMALL_STATE(1878)] = 105990, - [SMALL_STATE(1879)] = 106012, - [SMALL_STATE(1880)] = 106034, - [SMALL_STATE(1881)] = 106052, - [SMALL_STATE(1882)] = 106078, - [SMALL_STATE(1883)] = 106096, - [SMALL_STATE(1884)] = 106122, + [SMALL_STATE(1871)] = 105826, + [SMALL_STATE(1872)] = 105844, + [SMALL_STATE(1873)] = 105866, + [SMALL_STATE(1874)] = 105890, + [SMALL_STATE(1875)] = 105912, + [SMALL_STATE(1876)] = 105934, + [SMALL_STATE(1877)] = 105952, + [SMALL_STATE(1878)] = 105974, + [SMALL_STATE(1879)] = 106000, + [SMALL_STATE(1880)] = 106026, + [SMALL_STATE(1881)] = 106046, + [SMALL_STATE(1882)] = 106072, + [SMALL_STATE(1883)] = 106092, + [SMALL_STATE(1884)] = 106114, [SMALL_STATE(1885)] = 106140, - [SMALL_STATE(1886)] = 106163, - [SMALL_STATE(1887)] = 106184, - [SMALL_STATE(1888)] = 106201, - [SMALL_STATE(1889)] = 106214, - [SMALL_STATE(1890)] = 106235, - [SMALL_STATE(1891)] = 106248, - [SMALL_STATE(1892)] = 106265, - [SMALL_STATE(1893)] = 106278, - [SMALL_STATE(1894)] = 106295, - [SMALL_STATE(1895)] = 106316, - [SMALL_STATE(1896)] = 106337, - [SMALL_STATE(1897)] = 106350, - [SMALL_STATE(1898)] = 106369, - [SMALL_STATE(1899)] = 106382, - [SMALL_STATE(1900)] = 106395, - [SMALL_STATE(1901)] = 106416, - [SMALL_STATE(1902)] = 106429, - [SMALL_STATE(1903)] = 106450, - [SMALL_STATE(1904)] = 106471, - [SMALL_STATE(1905)] = 106492, - [SMALL_STATE(1906)] = 106509, - [SMALL_STATE(1907)] = 106526, - [SMALL_STATE(1908)] = 106543, - [SMALL_STATE(1909)] = 106564, - [SMALL_STATE(1910)] = 106585, - [SMALL_STATE(1911)] = 106602, - [SMALL_STATE(1912)] = 106623, - [SMALL_STATE(1913)] = 106646, - [SMALL_STATE(1914)] = 106667, - [SMALL_STATE(1915)] = 106684, - [SMALL_STATE(1916)] = 106697, - [SMALL_STATE(1917)] = 106714, - [SMALL_STATE(1918)] = 106735, - [SMALL_STATE(1919)] = 106752, - [SMALL_STATE(1920)] = 106769, - [SMALL_STATE(1921)] = 106784, - [SMALL_STATE(1922)] = 106801, + [SMALL_STATE(1886)] = 106157, + [SMALL_STATE(1887)] = 106174, + [SMALL_STATE(1888)] = 106191, + [SMALL_STATE(1889)] = 106204, + [SMALL_STATE(1890)] = 106217, + [SMALL_STATE(1891)] = 106230, + [SMALL_STATE(1892)] = 106247, + [SMALL_STATE(1893)] = 106268, + [SMALL_STATE(1894)] = 106285, + [SMALL_STATE(1895)] = 106298, + [SMALL_STATE(1896)] = 106311, + [SMALL_STATE(1897)] = 106324, + [SMALL_STATE(1898)] = 106345, + [SMALL_STATE(1899)] = 106362, + [SMALL_STATE(1900)] = 106379, + [SMALL_STATE(1901)] = 106396, + [SMALL_STATE(1902)] = 106413, + [SMALL_STATE(1903)] = 106434, + [SMALL_STATE(1904)] = 106449, + [SMALL_STATE(1905)] = 106472, + [SMALL_STATE(1906)] = 106493, + [SMALL_STATE(1907)] = 106510, + [SMALL_STATE(1908)] = 106531, + [SMALL_STATE(1909)] = 106546, + [SMALL_STATE(1910)] = 106567, + [SMALL_STATE(1911)] = 106588, + [SMALL_STATE(1912)] = 106609, + [SMALL_STATE(1913)] = 106632, + [SMALL_STATE(1914)] = 106649, + [SMALL_STATE(1915)] = 106670, + [SMALL_STATE(1916)] = 106687, + [SMALL_STATE(1917)] = 106708, + [SMALL_STATE(1918)] = 106725, + [SMALL_STATE(1919)] = 106738, + [SMALL_STATE(1920)] = 106759, + [SMALL_STATE(1921)] = 106774, + [SMALL_STATE(1922)] = 106795, [SMALL_STATE(1923)] = 106818, - [SMALL_STATE(1924)] = 106841, - [SMALL_STATE(1925)] = 106858, - [SMALL_STATE(1926)] = 106873, - [SMALL_STATE(1927)] = 106894, - [SMALL_STATE(1928)] = 106911, - [SMALL_STATE(1929)] = 106928, - [SMALL_STATE(1930)] = 106945, - [SMALL_STATE(1931)] = 106966, - [SMALL_STATE(1932)] = 106987, - [SMALL_STATE(1933)] = 107000, - [SMALL_STATE(1934)] = 107017, - [SMALL_STATE(1935)] = 107034, - [SMALL_STATE(1936)] = 107047, - [SMALL_STATE(1937)] = 107068, - [SMALL_STATE(1938)] = 107089, - [SMALL_STATE(1939)] = 107102, - [SMALL_STATE(1940)] = 107115, - [SMALL_STATE(1941)] = 107138, - [SMALL_STATE(1942)] = 107159, - [SMALL_STATE(1943)] = 107180, - [SMALL_STATE(1944)] = 107197, - [SMALL_STATE(1945)] = 107214, - [SMALL_STATE(1946)] = 107235, - [SMALL_STATE(1947)] = 107258, - [SMALL_STATE(1948)] = 107279, - [SMALL_STATE(1949)] = 107296, - [SMALL_STATE(1950)] = 107313, - [SMALL_STATE(1951)] = 107328, - [SMALL_STATE(1952)] = 107341, - [SMALL_STATE(1953)] = 107358, - [SMALL_STATE(1954)] = 107379, - [SMALL_STATE(1955)] = 107392, - [SMALL_STATE(1956)] = 107411, - [SMALL_STATE(1957)] = 107428, - [SMALL_STATE(1958)] = 107449, - [SMALL_STATE(1959)] = 107470, - [SMALL_STATE(1960)] = 107487, - [SMALL_STATE(1961)] = 107502, - [SMALL_STATE(1962)] = 107519, - [SMALL_STATE(1963)] = 107536, - [SMALL_STATE(1964)] = 107549, - [SMALL_STATE(1965)] = 107566, - [SMALL_STATE(1966)] = 107579, - [SMALL_STATE(1967)] = 107594, - [SMALL_STATE(1968)] = 107607, - [SMALL_STATE(1969)] = 107630, - [SMALL_STATE(1970)] = 107647, - [SMALL_STATE(1971)] = 107668, - [SMALL_STATE(1972)] = 107685, - [SMALL_STATE(1973)] = 107702, - [SMALL_STATE(1974)] = 107725, - [SMALL_STATE(1975)] = 107746, - [SMALL_STATE(1976)] = 107759, - [SMALL_STATE(1977)] = 107774, - [SMALL_STATE(1978)] = 107787, - [SMALL_STATE(1979)] = 107804, - [SMALL_STATE(1980)] = 107825, - [SMALL_STATE(1981)] = 107840, - [SMALL_STATE(1982)] = 107853, - [SMALL_STATE(1983)] = 107868, - [SMALL_STATE(1984)] = 107889, - [SMALL_STATE(1985)] = 107906, - [SMALL_STATE(1986)] = 107923, - [SMALL_STATE(1987)] = 107936, - [SMALL_STATE(1988)] = 107949, - [SMALL_STATE(1989)] = 107970, - [SMALL_STATE(1990)] = 107991, - [SMALL_STATE(1991)] = 108008, + [SMALL_STATE(1924)] = 106831, + [SMALL_STATE(1925)] = 106848, + [SMALL_STATE(1926)] = 106861, + [SMALL_STATE(1927)] = 106878, + [SMALL_STATE(1928)] = 106899, + [SMALL_STATE(1929)] = 106916, + [SMALL_STATE(1930)] = 106937, + [SMALL_STATE(1931)] = 106958, + [SMALL_STATE(1932)] = 106979, + [SMALL_STATE(1933)] = 106992, + [SMALL_STATE(1934)] = 107009, + [SMALL_STATE(1935)] = 107026, + [SMALL_STATE(1936)] = 107043, + [SMALL_STATE(1937)] = 107064, + [SMALL_STATE(1938)] = 107079, + [SMALL_STATE(1939)] = 107096, + [SMALL_STATE(1940)] = 107111, + [SMALL_STATE(1941)] = 107128, + [SMALL_STATE(1942)] = 107149, + [SMALL_STATE(1943)] = 107164, + [SMALL_STATE(1944)] = 107181, + [SMALL_STATE(1945)] = 107202, + [SMALL_STATE(1946)] = 107215, + [SMALL_STATE(1947)] = 107232, + [SMALL_STATE(1948)] = 107255, + [SMALL_STATE(1949)] = 107276, + [SMALL_STATE(1950)] = 107297, + [SMALL_STATE(1951)] = 107310, + [SMALL_STATE(1952)] = 107327, + [SMALL_STATE(1953)] = 107340, + [SMALL_STATE(1954)] = 107355, + [SMALL_STATE(1955)] = 107372, + [SMALL_STATE(1956)] = 107389, + [SMALL_STATE(1957)] = 107410, + [SMALL_STATE(1958)] = 107429, + [SMALL_STATE(1959)] = 107452, + [SMALL_STATE(1960)] = 107469, + [SMALL_STATE(1961)] = 107482, + [SMALL_STATE(1962)] = 107499, + [SMALL_STATE(1963)] = 107516, + [SMALL_STATE(1964)] = 107529, + [SMALL_STATE(1965)] = 107546, + [SMALL_STATE(1966)] = 107567, + [SMALL_STATE(1967)] = 107580, + [SMALL_STATE(1968)] = 107603, + [SMALL_STATE(1969)] = 107618, + [SMALL_STATE(1970)] = 107639, + [SMALL_STATE(1971)] = 107660, + [SMALL_STATE(1972)] = 107673, + [SMALL_STATE(1973)] = 107692, + [SMALL_STATE(1974)] = 107713, + [SMALL_STATE(1975)] = 107726, + [SMALL_STATE(1976)] = 107743, + [SMALL_STATE(1977)] = 107760, + [SMALL_STATE(1978)] = 107777, + [SMALL_STATE(1979)] = 107798, + [SMALL_STATE(1980)] = 107819, + [SMALL_STATE(1981)] = 107836, + [SMALL_STATE(1982)] = 107857, + [SMALL_STATE(1983)] = 107878, + [SMALL_STATE(1984)] = 107891, + [SMALL_STATE(1985)] = 107912, + [SMALL_STATE(1986)] = 107935, + [SMALL_STATE(1987)] = 107952, + [SMALL_STATE(1988)] = 107973, + [SMALL_STATE(1989)] = 107990, + [SMALL_STATE(1990)] = 108003, + [SMALL_STATE(1991)] = 108016, [SMALL_STATE(1992)] = 108029, - [SMALL_STATE(1993)] = 108041, - [SMALL_STATE(1994)] = 108053, - [SMALL_STATE(1995)] = 108073, - [SMALL_STATE(1996)] = 108087, - [SMALL_STATE(1997)] = 108103, - [SMALL_STATE(1998)] = 108115, - [SMALL_STATE(1999)] = 108127, - [SMALL_STATE(2000)] = 108145, - [SMALL_STATE(2001)] = 108161, - [SMALL_STATE(2002)] = 108173, - [SMALL_STATE(2003)] = 108185, - [SMALL_STATE(2004)] = 108203, - [SMALL_STATE(2005)] = 108221, - [SMALL_STATE(2006)] = 108241, - [SMALL_STATE(2007)] = 108255, - [SMALL_STATE(2008)] = 108267, - [SMALL_STATE(2009)] = 108283, - [SMALL_STATE(2010)] = 108303, - [SMALL_STATE(2011)] = 108323, - [SMALL_STATE(2012)] = 108335, - [SMALL_STATE(2013)] = 108351, - [SMALL_STATE(2014)] = 108363, - [SMALL_STATE(2015)] = 108375, - [SMALL_STATE(2016)] = 108395, - [SMALL_STATE(2017)] = 108407, - [SMALL_STATE(2018)] = 108419, - [SMALL_STATE(2019)] = 108431, - [SMALL_STATE(2020)] = 108443, - [SMALL_STATE(2021)] = 108459, - [SMALL_STATE(2022)] = 108479, - [SMALL_STATE(2023)] = 108495, - [SMALL_STATE(2024)] = 108507, - [SMALL_STATE(2025)] = 108519, - [SMALL_STATE(2026)] = 108539, - [SMALL_STATE(2027)] = 108553, - [SMALL_STATE(2028)] = 108565, - [SMALL_STATE(2029)] = 108577, - [SMALL_STATE(2030)] = 108597, - [SMALL_STATE(2031)] = 108613, - [SMALL_STATE(2032)] = 108625, - [SMALL_STATE(2033)] = 108637, - [SMALL_STATE(2034)] = 108649, + [SMALL_STATE(1993)] = 108049, + [SMALL_STATE(1994)] = 108065, + [SMALL_STATE(1995)] = 108083, + [SMALL_STATE(1996)] = 108095, + [SMALL_STATE(1997)] = 108107, + [SMALL_STATE(1998)] = 108127, + [SMALL_STATE(1999)] = 108139, + [SMALL_STATE(2000)] = 108159, + [SMALL_STATE(2001)] = 108179, + [SMALL_STATE(2002)] = 108191, + [SMALL_STATE(2003)] = 108203, + [SMALL_STATE(2004)] = 108215, + [SMALL_STATE(2005)] = 108231, + [SMALL_STATE(2006)] = 108249, + [SMALL_STATE(2007)] = 108261, + [SMALL_STATE(2008)] = 108273, + [SMALL_STATE(2009)] = 108285, + [SMALL_STATE(2010)] = 108305, + [SMALL_STATE(2011)] = 108317, + [SMALL_STATE(2012)] = 108337, + [SMALL_STATE(2013)] = 108355, + [SMALL_STATE(2014)] = 108375, + [SMALL_STATE(2015)] = 108395, + [SMALL_STATE(2016)] = 108411, + [SMALL_STATE(2017)] = 108423, + [SMALL_STATE(2018)] = 108435, + [SMALL_STATE(2019)] = 108447, + [SMALL_STATE(2020)] = 108467, + [SMALL_STATE(2021)] = 108479, + [SMALL_STATE(2022)] = 108491, + [SMALL_STATE(2023)] = 108505, + [SMALL_STATE(2024)] = 108517, + [SMALL_STATE(2025)] = 108533, + [SMALL_STATE(2026)] = 108545, + [SMALL_STATE(2027)] = 108557, + [SMALL_STATE(2028)] = 108569, + [SMALL_STATE(2029)] = 108581, + [SMALL_STATE(2030)] = 108593, + [SMALL_STATE(2031)] = 108605, + [SMALL_STATE(2032)] = 108617, + [SMALL_STATE(2033)] = 108629, + [SMALL_STATE(2034)] = 108641, [SMALL_STATE(2035)] = 108661, - [SMALL_STATE(2036)] = 108681, - [SMALL_STATE(2037)] = 108701, - [SMALL_STATE(2038)] = 108721, - [SMALL_STATE(2039)] = 108739, - [SMALL_STATE(2040)] = 108755, - [SMALL_STATE(2041)] = 108767, - [SMALL_STATE(2042)] = 108783, - [SMALL_STATE(2043)] = 108795, - [SMALL_STATE(2044)] = 108815, - [SMALL_STATE(2045)] = 108835, - [SMALL_STATE(2046)] = 108847, - [SMALL_STATE(2047)] = 108867, - [SMALL_STATE(2048)] = 108887, - [SMALL_STATE(2049)] = 108907, - [SMALL_STATE(2050)] = 108919, - [SMALL_STATE(2051)] = 108931, - [SMALL_STATE(2052)] = 108945, - [SMALL_STATE(2053)] = 108961, - [SMALL_STATE(2054)] = 108973, - [SMALL_STATE(2055)] = 108985, - [SMALL_STATE(2056)] = 109005, - [SMALL_STATE(2057)] = 109017, - [SMALL_STATE(2058)] = 109029, - [SMALL_STATE(2059)] = 109049, - [SMALL_STATE(2060)] = 109067, - [SMALL_STATE(2061)] = 109079, - [SMALL_STATE(2062)] = 109099, - [SMALL_STATE(2063)] = 109111, - [SMALL_STATE(2064)] = 109129, - [SMALL_STATE(2065)] = 109141, - [SMALL_STATE(2066)] = 109153, - [SMALL_STATE(2067)] = 109173, - [SMALL_STATE(2068)] = 109191, - [SMALL_STATE(2069)] = 109207, - [SMALL_STATE(2070)] = 109227, - [SMALL_STATE(2071)] = 109247, - [SMALL_STATE(2072)] = 109267, - [SMALL_STATE(2073)] = 109285, - [SMALL_STATE(2074)] = 109297, - [SMALL_STATE(2075)] = 109309, - [SMALL_STATE(2076)] = 109329, - [SMALL_STATE(2077)] = 109341, - [SMALL_STATE(2078)] = 109353, - [SMALL_STATE(2079)] = 109365, - [SMALL_STATE(2080)] = 109385, - [SMALL_STATE(2081)] = 109397, - [SMALL_STATE(2082)] = 109417, - [SMALL_STATE(2083)] = 109435, - [SMALL_STATE(2084)] = 109451, - [SMALL_STATE(2085)] = 109471, - [SMALL_STATE(2086)] = 109483, - [SMALL_STATE(2087)] = 109503, - [SMALL_STATE(2088)] = 109515, - [SMALL_STATE(2089)] = 109533, - [SMALL_STATE(2090)] = 109545, - [SMALL_STATE(2091)] = 109557, - [SMALL_STATE(2092)] = 109577, - [SMALL_STATE(2093)] = 109595, - [SMALL_STATE(2094)] = 109613, - [SMALL_STATE(2095)] = 109629, - [SMALL_STATE(2096)] = 109649, - [SMALL_STATE(2097)] = 109669, - [SMALL_STATE(2098)] = 109687, - [SMALL_STATE(2099)] = 109701, - [SMALL_STATE(2100)] = 109713, - [SMALL_STATE(2101)] = 109729, - [SMALL_STATE(2102)] = 109741, - [SMALL_STATE(2103)] = 109753, - [SMALL_STATE(2104)] = 109765, - [SMALL_STATE(2105)] = 109779, - [SMALL_STATE(2106)] = 109791, - [SMALL_STATE(2107)] = 109807, - [SMALL_STATE(2108)] = 109819, - [SMALL_STATE(2109)] = 109831, + [SMALL_STATE(2036)] = 108679, + [SMALL_STATE(2037)] = 108699, + [SMALL_STATE(2038)] = 108719, + [SMALL_STATE(2039)] = 108731, + [SMALL_STATE(2040)] = 108743, + [SMALL_STATE(2041)] = 108755, + [SMALL_STATE(2042)] = 108767, + [SMALL_STATE(2043)] = 108779, + [SMALL_STATE(2044)] = 108791, + [SMALL_STATE(2045)] = 108811, + [SMALL_STATE(2046)] = 108823, + [SMALL_STATE(2047)] = 108835, + [SMALL_STATE(2048)] = 108847, + [SMALL_STATE(2049)] = 108859, + [SMALL_STATE(2050)] = 108879, + [SMALL_STATE(2051)] = 108897, + [SMALL_STATE(2052)] = 108909, + [SMALL_STATE(2053)] = 108921, + [SMALL_STATE(2054)] = 108941, + [SMALL_STATE(2055)] = 108953, + [SMALL_STATE(2056)] = 108965, + [SMALL_STATE(2057)] = 108983, + [SMALL_STATE(2058)] = 108995, + [SMALL_STATE(2059)] = 109015, + [SMALL_STATE(2060)] = 109027, + [SMALL_STATE(2061)] = 109045, + [SMALL_STATE(2062)] = 109057, + [SMALL_STATE(2063)] = 109075, + [SMALL_STATE(2064)] = 109095, + [SMALL_STATE(2065)] = 109115, + [SMALL_STATE(2066)] = 109135, + [SMALL_STATE(2067)] = 109153, + [SMALL_STATE(2068)] = 109167, + [SMALL_STATE(2069)] = 109183, + [SMALL_STATE(2070)] = 109195, + [SMALL_STATE(2071)] = 109215, + [SMALL_STATE(2072)] = 109227, + [SMALL_STATE(2073)] = 109243, + [SMALL_STATE(2074)] = 109259, + [SMALL_STATE(2075)] = 109273, + [SMALL_STATE(2076)] = 109289, + [SMALL_STATE(2077)] = 109309, + [SMALL_STATE(2078)] = 109327, + [SMALL_STATE(2079)] = 109339, + [SMALL_STATE(2080)] = 109359, + [SMALL_STATE(2081)] = 109373, + [SMALL_STATE(2082)] = 109389, + [SMALL_STATE(2083)] = 109401, + [SMALL_STATE(2084)] = 109417, + [SMALL_STATE(2085)] = 109437, + [SMALL_STATE(2086)] = 109455, + [SMALL_STATE(2087)] = 109471, + [SMALL_STATE(2088)] = 109483, + [SMALL_STATE(2089)] = 109503, + [SMALL_STATE(2090)] = 109519, + [SMALL_STATE(2091)] = 109531, + [SMALL_STATE(2092)] = 109551, + [SMALL_STATE(2093)] = 109567, + [SMALL_STATE(2094)] = 109579, + [SMALL_STATE(2095)] = 109599, + [SMALL_STATE(2096)] = 109619, + [SMALL_STATE(2097)] = 109639, + [SMALL_STATE(2098)] = 109653, + [SMALL_STATE(2099)] = 109669, + [SMALL_STATE(2100)] = 109689, + [SMALL_STATE(2101)] = 109709, + [SMALL_STATE(2102)] = 109729, + [SMALL_STATE(2103)] = 109743, + [SMALL_STATE(2104)] = 109759, + [SMALL_STATE(2105)] = 109771, + [SMALL_STATE(2106)] = 109783, + [SMALL_STATE(2107)] = 109795, + [SMALL_STATE(2108)] = 109807, + [SMALL_STATE(2109)] = 109825, [SMALL_STATE(2110)] = 109843, [SMALL_STATE(2111)] = 109854, - [SMALL_STATE(2112)] = 109865, + [SMALL_STATE(2112)] = 109869, [SMALL_STATE(2113)] = 109880, - [SMALL_STATE(2114)] = 109895, - [SMALL_STATE(2115)] = 109912, - [SMALL_STATE(2116)] = 109929, - [SMALL_STATE(2117)] = 109944, - [SMALL_STATE(2118)] = 109961, - [SMALL_STATE(2119)] = 109976, - [SMALL_STATE(2120)] = 109991, - [SMALL_STATE(2121)] = 110008, - [SMALL_STATE(2122)] = 110025, - [SMALL_STATE(2123)] = 110040, - [SMALL_STATE(2124)] = 110055, - [SMALL_STATE(2125)] = 110070, - [SMALL_STATE(2126)] = 110085, - [SMALL_STATE(2127)] = 110100, - [SMALL_STATE(2128)] = 110115, - [SMALL_STATE(2129)] = 110130, - [SMALL_STATE(2130)] = 110147, - [SMALL_STATE(2131)] = 110162, - [SMALL_STATE(2132)] = 110173, - [SMALL_STATE(2133)] = 110190, - [SMALL_STATE(2134)] = 110203, - [SMALL_STATE(2135)] = 110220, - [SMALL_STATE(2136)] = 110235, - [SMALL_STATE(2137)] = 110252, - [SMALL_STATE(2138)] = 110269, - [SMALL_STATE(2139)] = 110284, - [SMALL_STATE(2140)] = 110299, - [SMALL_STATE(2141)] = 110314, - [SMALL_STATE(2142)] = 110331, - [SMALL_STATE(2143)] = 110348, - [SMALL_STATE(2144)] = 110365, - [SMALL_STATE(2145)] = 110382, - [SMALL_STATE(2146)] = 110397, - [SMALL_STATE(2147)] = 110408, - [SMALL_STATE(2148)] = 110425, - [SMALL_STATE(2149)] = 110442, - [SMALL_STATE(2150)] = 110459, - [SMALL_STATE(2151)] = 110476, - [SMALL_STATE(2152)] = 110493, - [SMALL_STATE(2153)] = 110506, - [SMALL_STATE(2154)] = 110517, - [SMALL_STATE(2155)] = 110532, - [SMALL_STATE(2156)] = 110545, - [SMALL_STATE(2157)] = 110562, - [SMALL_STATE(2158)] = 110579, - [SMALL_STATE(2159)] = 110594, - [SMALL_STATE(2160)] = 110611, - [SMALL_STATE(2161)] = 110628, - [SMALL_STATE(2162)] = 110645, - [SMALL_STATE(2163)] = 110662, - [SMALL_STATE(2164)] = 110679, - [SMALL_STATE(2165)] = 110690, - [SMALL_STATE(2166)] = 110701, - [SMALL_STATE(2167)] = 110712, - [SMALL_STATE(2168)] = 110723, - [SMALL_STATE(2169)] = 110734, - [SMALL_STATE(2170)] = 110745, - [SMALL_STATE(2171)] = 110756, - [SMALL_STATE(2172)] = 110767, - [SMALL_STATE(2173)] = 110778, - [SMALL_STATE(2174)] = 110789, - [SMALL_STATE(2175)] = 110800, - [SMALL_STATE(2176)] = 110811, - [SMALL_STATE(2177)] = 110828, - [SMALL_STATE(2178)] = 110845, - [SMALL_STATE(2179)] = 110856, - [SMALL_STATE(2180)] = 110867, - [SMALL_STATE(2181)] = 110878, - [SMALL_STATE(2182)] = 110889, - [SMALL_STATE(2183)] = 110906, - [SMALL_STATE(2184)] = 110917, - [SMALL_STATE(2185)] = 110928, - [SMALL_STATE(2186)] = 110939, - [SMALL_STATE(2187)] = 110950, - [SMALL_STATE(2188)] = 110961, - [SMALL_STATE(2189)] = 110972, - [SMALL_STATE(2190)] = 110983, - [SMALL_STATE(2191)] = 110994, - [SMALL_STATE(2192)] = 111005, - [SMALL_STATE(2193)] = 111016, - [SMALL_STATE(2194)] = 111027, - [SMALL_STATE(2195)] = 111038, - [SMALL_STATE(2196)] = 111049, - [SMALL_STATE(2197)] = 111060, - [SMALL_STATE(2198)] = 111071, - [SMALL_STATE(2199)] = 111088, - [SMALL_STATE(2200)] = 111099, - [SMALL_STATE(2201)] = 111116, - [SMALL_STATE(2202)] = 111133, - [SMALL_STATE(2203)] = 111144, - [SMALL_STATE(2204)] = 111155, - [SMALL_STATE(2205)] = 111166, - [SMALL_STATE(2206)] = 111177, - [SMALL_STATE(2207)] = 111188, - [SMALL_STATE(2208)] = 111199, - [SMALL_STATE(2209)] = 111210, - [SMALL_STATE(2210)] = 111221, - [SMALL_STATE(2211)] = 111232, - [SMALL_STATE(2212)] = 111243, - [SMALL_STATE(2213)] = 111254, - [SMALL_STATE(2214)] = 111265, - [SMALL_STATE(2215)] = 111276, - [SMALL_STATE(2216)] = 111287, - [SMALL_STATE(2217)] = 111298, - [SMALL_STATE(2218)] = 111309, - [SMALL_STATE(2219)] = 111320, - [SMALL_STATE(2220)] = 111331, - [SMALL_STATE(2221)] = 111342, - [SMALL_STATE(2222)] = 111353, - [SMALL_STATE(2223)] = 111364, - [SMALL_STATE(2224)] = 111375, - [SMALL_STATE(2225)] = 111386, - [SMALL_STATE(2226)] = 111397, - [SMALL_STATE(2227)] = 111408, - [SMALL_STATE(2228)] = 111419, - [SMALL_STATE(2229)] = 111430, - [SMALL_STATE(2230)] = 111441, - [SMALL_STATE(2231)] = 111452, - [SMALL_STATE(2232)] = 111463, - [SMALL_STATE(2233)] = 111474, - [SMALL_STATE(2234)] = 111485, - [SMALL_STATE(2235)] = 111496, - [SMALL_STATE(2236)] = 111507, - [SMALL_STATE(2237)] = 111518, - [SMALL_STATE(2238)] = 111529, + [SMALL_STATE(2114)] = 109893, + [SMALL_STATE(2115)] = 109908, + [SMALL_STATE(2116)] = 109919, + [SMALL_STATE(2117)] = 109930, + [SMALL_STATE(2118)] = 109947, + [SMALL_STATE(2119)] = 109964, + [SMALL_STATE(2120)] = 109981, + [SMALL_STATE(2121)] = 109992, + [SMALL_STATE(2122)] = 110003, + [SMALL_STATE(2123)] = 110018, + [SMALL_STATE(2124)] = 110035, + [SMALL_STATE(2125)] = 110046, + [SMALL_STATE(2126)] = 110063, + [SMALL_STATE(2127)] = 110074, + [SMALL_STATE(2128)] = 110091, + [SMALL_STATE(2129)] = 110106, + [SMALL_STATE(2130)] = 110117, + [SMALL_STATE(2131)] = 110134, + [SMALL_STATE(2132)] = 110145, + [SMALL_STATE(2133)] = 110156, + [SMALL_STATE(2134)] = 110167, + [SMALL_STATE(2135)] = 110182, + [SMALL_STATE(2136)] = 110195, + [SMALL_STATE(2137)] = 110210, + [SMALL_STATE(2138)] = 110221, + [SMALL_STATE(2139)] = 110232, + [SMALL_STATE(2140)] = 110243, + [SMALL_STATE(2141)] = 110260, + [SMALL_STATE(2142)] = 110271, + [SMALL_STATE(2143)] = 110282, + [SMALL_STATE(2144)] = 110293, + [SMALL_STATE(2145)] = 110304, + [SMALL_STATE(2146)] = 110315, + [SMALL_STATE(2147)] = 110332, + [SMALL_STATE(2148)] = 110343, + [SMALL_STATE(2149)] = 110354, + [SMALL_STATE(2150)] = 110369, + [SMALL_STATE(2151)] = 110384, + [SMALL_STATE(2152)] = 110395, + [SMALL_STATE(2153)] = 110406, + [SMALL_STATE(2154)] = 110417, + [SMALL_STATE(2155)] = 110428, + [SMALL_STATE(2156)] = 110439, + [SMALL_STATE(2157)] = 110450, + [SMALL_STATE(2158)] = 110461, + [SMALL_STATE(2159)] = 110472, + [SMALL_STATE(2160)] = 110483, + [SMALL_STATE(2161)] = 110494, + [SMALL_STATE(2162)] = 110505, + [SMALL_STATE(2163)] = 110516, + [SMALL_STATE(2164)] = 110527, + [SMALL_STATE(2165)] = 110544, + [SMALL_STATE(2166)] = 110555, + [SMALL_STATE(2167)] = 110566, + [SMALL_STATE(2168)] = 110583, + [SMALL_STATE(2169)] = 110594, + [SMALL_STATE(2170)] = 110605, + [SMALL_STATE(2171)] = 110616, + [SMALL_STATE(2172)] = 110627, + [SMALL_STATE(2173)] = 110638, + [SMALL_STATE(2174)] = 110649, + [SMALL_STATE(2175)] = 110660, + [SMALL_STATE(2176)] = 110671, + [SMALL_STATE(2177)] = 110682, + [SMALL_STATE(2178)] = 110693, + [SMALL_STATE(2179)] = 110704, + [SMALL_STATE(2180)] = 110719, + [SMALL_STATE(2181)] = 110730, + [SMALL_STATE(2182)] = 110741, + [SMALL_STATE(2183)] = 110758, + [SMALL_STATE(2184)] = 110775, + [SMALL_STATE(2185)] = 110792, + [SMALL_STATE(2186)] = 110807, + [SMALL_STATE(2187)] = 110822, + [SMALL_STATE(2188)] = 110833, + [SMALL_STATE(2189)] = 110850, + [SMALL_STATE(2190)] = 110865, + [SMALL_STATE(2191)] = 110880, + [SMALL_STATE(2192)] = 110897, + [SMALL_STATE(2193)] = 110914, + [SMALL_STATE(2194)] = 110931, + [SMALL_STATE(2195)] = 110948, + [SMALL_STATE(2196)] = 110965, + [SMALL_STATE(2197)] = 110976, + [SMALL_STATE(2198)] = 110991, + [SMALL_STATE(2199)] = 111008, + [SMALL_STATE(2200)] = 111019, + [SMALL_STATE(2201)] = 111030, + [SMALL_STATE(2202)] = 111041, + [SMALL_STATE(2203)] = 111052, + [SMALL_STATE(2204)] = 111069, + [SMALL_STATE(2205)] = 111080, + [SMALL_STATE(2206)] = 111095, + [SMALL_STATE(2207)] = 111110, + [SMALL_STATE(2208)] = 111121, + [SMALL_STATE(2209)] = 111138, + [SMALL_STATE(2210)] = 111149, + [SMALL_STATE(2211)] = 111160, + [SMALL_STATE(2212)] = 111177, + [SMALL_STATE(2213)] = 111194, + [SMALL_STATE(2214)] = 111209, + [SMALL_STATE(2215)] = 111224, + [SMALL_STATE(2216)] = 111235, + [SMALL_STATE(2217)] = 111246, + [SMALL_STATE(2218)] = 111263, + [SMALL_STATE(2219)] = 111278, + [SMALL_STATE(2220)] = 111289, + [SMALL_STATE(2221)] = 111300, + [SMALL_STATE(2222)] = 111311, + [SMALL_STATE(2223)] = 111322, + [SMALL_STATE(2224)] = 111339, + [SMALL_STATE(2225)] = 111350, + [SMALL_STATE(2226)] = 111365, + [SMALL_STATE(2227)] = 111376, + [SMALL_STATE(2228)] = 111387, + [SMALL_STATE(2229)] = 111398, + [SMALL_STATE(2230)] = 111409, + [SMALL_STATE(2231)] = 111420, + [SMALL_STATE(2232)] = 111431, + [SMALL_STATE(2233)] = 111448, + [SMALL_STATE(2234)] = 111465, + [SMALL_STATE(2235)] = 111482, + [SMALL_STATE(2236)] = 111493, + [SMALL_STATE(2237)] = 111510, + [SMALL_STATE(2238)] = 111527, [SMALL_STATE(2239)] = 111540, [SMALL_STATE(2240)] = 111554, - [SMALL_STATE(2241)] = 111564, - [SMALL_STATE(2242)] = 111578, - [SMALL_STATE(2243)] = 111592, - [SMALL_STATE(2244)] = 111606, - [SMALL_STATE(2245)] = 111620, - [SMALL_STATE(2246)] = 111630, - [SMALL_STATE(2247)] = 111644, - [SMALL_STATE(2248)] = 111658, - [SMALL_STATE(2249)] = 111672, - [SMALL_STATE(2250)] = 111686, - [SMALL_STATE(2251)] = 111700, - [SMALL_STATE(2252)] = 111714, - [SMALL_STATE(2253)] = 111726, - [SMALL_STATE(2254)] = 111740, - [SMALL_STATE(2255)] = 111754, - [SMALL_STATE(2256)] = 111768, - [SMALL_STATE(2257)] = 111782, - [SMALL_STATE(2258)] = 111796, - [SMALL_STATE(2259)] = 111810, - [SMALL_STATE(2260)] = 111824, - [SMALL_STATE(2261)] = 111838, - [SMALL_STATE(2262)] = 111850, - [SMALL_STATE(2263)] = 111864, + [SMALL_STATE(2241)] = 111568, + [SMALL_STATE(2242)] = 111582, + [SMALL_STATE(2243)] = 111596, + [SMALL_STATE(2244)] = 111610, + [SMALL_STATE(2245)] = 111624, + [SMALL_STATE(2246)] = 111638, + [SMALL_STATE(2247)] = 111652, + [SMALL_STATE(2248)] = 111666, + [SMALL_STATE(2249)] = 111680, + [SMALL_STATE(2250)] = 111694, + [SMALL_STATE(2251)] = 111708, + [SMALL_STATE(2252)] = 111722, + [SMALL_STATE(2253)] = 111736, + [SMALL_STATE(2254)] = 111750, + [SMALL_STATE(2255)] = 111764, + [SMALL_STATE(2256)] = 111778, + [SMALL_STATE(2257)] = 111792, + [SMALL_STATE(2258)] = 111802, + [SMALL_STATE(2259)] = 111816, + [SMALL_STATE(2260)] = 111828, + [SMALL_STATE(2261)] = 111842, + [SMALL_STATE(2262)] = 111854, + [SMALL_STATE(2263)] = 111868, [SMALL_STATE(2264)] = 111878, - [SMALL_STATE(2265)] = 111890, + [SMALL_STATE(2265)] = 111892, [SMALL_STATE(2266)] = 111904, [SMALL_STATE(2267)] = 111918, [SMALL_STATE(2268)] = 111932, [SMALL_STATE(2269)] = 111946, [SMALL_STATE(2270)] = 111960, - [SMALL_STATE(2271)] = 111972, - [SMALL_STATE(2272)] = 111986, - [SMALL_STATE(2273)] = 112000, - [SMALL_STATE(2274)] = 112014, - [SMALL_STATE(2275)] = 112028, - [SMALL_STATE(2276)] = 112042, - [SMALL_STATE(2277)] = 112056, - [SMALL_STATE(2278)] = 112070, + [SMALL_STATE(2271)] = 111974, + [SMALL_STATE(2272)] = 111988, + [SMALL_STATE(2273)] = 112002, + [SMALL_STATE(2274)] = 112016, + [SMALL_STATE(2275)] = 112030, + [SMALL_STATE(2276)] = 112044, + [SMALL_STATE(2277)] = 112058, + [SMALL_STATE(2278)] = 112072, [SMALL_STATE(2279)] = 112084, [SMALL_STATE(2280)] = 112098, - [SMALL_STATE(2281)] = 112112, - [SMALL_STATE(2282)] = 112126, - [SMALL_STATE(2283)] = 112140, - [SMALL_STATE(2284)] = 112154, - [SMALL_STATE(2285)] = 112168, - [SMALL_STATE(2286)] = 112182, - [SMALL_STATE(2287)] = 112196, - [SMALL_STATE(2288)] = 112208, + [SMALL_STATE(2281)] = 112110, + [SMALL_STATE(2282)] = 112122, + [SMALL_STATE(2283)] = 112136, + [SMALL_STATE(2284)] = 112150, + [SMALL_STATE(2285)] = 112164, + [SMALL_STATE(2286)] = 112178, + [SMALL_STATE(2287)] = 112192, + [SMALL_STATE(2288)] = 112206, [SMALL_STATE(2289)] = 112218, [SMALL_STATE(2290)] = 112232, [SMALL_STATE(2291)] = 112246, [SMALL_STATE(2292)] = 112260, [SMALL_STATE(2293)] = 112274, - [SMALL_STATE(2294)] = 112284, - [SMALL_STATE(2295)] = 112298, - [SMALL_STATE(2296)] = 112312, - [SMALL_STATE(2297)] = 112326, - [SMALL_STATE(2298)] = 112338, - [SMALL_STATE(2299)] = 112348, - [SMALL_STATE(2300)] = 112362, - [SMALL_STATE(2301)] = 112376, - [SMALL_STATE(2302)] = 112390, - [SMALL_STATE(2303)] = 112404, - [SMALL_STATE(2304)] = 112414, - [SMALL_STATE(2305)] = 112428, - [SMALL_STATE(2306)] = 112440, + [SMALL_STATE(2294)] = 112288, + [SMALL_STATE(2295)] = 112302, + [SMALL_STATE(2296)] = 112316, + [SMALL_STATE(2297)] = 112330, + [SMALL_STATE(2298)] = 112344, + [SMALL_STATE(2299)] = 112358, + [SMALL_STATE(2300)] = 112372, + [SMALL_STATE(2301)] = 112382, + [SMALL_STATE(2302)] = 112396, + [SMALL_STATE(2303)] = 112406, + [SMALL_STATE(2304)] = 112420, + [SMALL_STATE(2305)] = 112430, + [SMALL_STATE(2306)] = 112444, [SMALL_STATE(2307)] = 112454, [SMALL_STATE(2308)] = 112468, [SMALL_STATE(2309)] = 112482, [SMALL_STATE(2310)] = 112496, [SMALL_STATE(2311)] = 112510, [SMALL_STATE(2312)] = 112524, - [SMALL_STATE(2313)] = 112538, - [SMALL_STATE(2314)] = 112552, - [SMALL_STATE(2315)] = 112566, + [SMALL_STATE(2313)] = 112534, + [SMALL_STATE(2314)] = 112548, + [SMALL_STATE(2315)] = 112562, [SMALL_STATE(2316)] = 112576, [SMALL_STATE(2317)] = 112590, [SMALL_STATE(2318)] = 112604, [SMALL_STATE(2319)] = 112618, [SMALL_STATE(2320)] = 112632, [SMALL_STATE(2321)] = 112646, - [SMALL_STATE(2322)] = 112656, - [SMALL_STATE(2323)] = 112670, - [SMALL_STATE(2324)] = 112682, - [SMALL_STATE(2325)] = 112692, - [SMALL_STATE(2326)] = 112704, - [SMALL_STATE(2327)] = 112716, - [SMALL_STATE(2328)] = 112728, - [SMALL_STATE(2329)] = 112742, - [SMALL_STATE(2330)] = 112756, - [SMALL_STATE(2331)] = 112768, - [SMALL_STATE(2332)] = 112780, - [SMALL_STATE(2333)] = 112794, - [SMALL_STATE(2334)] = 112806, - [SMALL_STATE(2335)] = 112820, - [SMALL_STATE(2336)] = 112834, - [SMALL_STATE(2337)] = 112848, - [SMALL_STATE(2338)] = 112862, - [SMALL_STATE(2339)] = 112876, - [SMALL_STATE(2340)] = 112890, - [SMALL_STATE(2341)] = 112904, - [SMALL_STATE(2342)] = 112918, - [SMALL_STATE(2343)] = 112932, - [SMALL_STATE(2344)] = 112946, - [SMALL_STATE(2345)] = 112960, - [SMALL_STATE(2346)] = 112974, - [SMALL_STATE(2347)] = 112988, - [SMALL_STATE(2348)] = 113002, - [SMALL_STATE(2349)] = 113016, - [SMALL_STATE(2350)] = 113030, - [SMALL_STATE(2351)] = 113044, - [SMALL_STATE(2352)] = 113058, - [SMALL_STATE(2353)] = 113072, - [SMALL_STATE(2354)] = 113086, - [SMALL_STATE(2355)] = 113100, - [SMALL_STATE(2356)] = 113114, - [SMALL_STATE(2357)] = 113128, - [SMALL_STATE(2358)] = 113142, - [SMALL_STATE(2359)] = 113156, - [SMALL_STATE(2360)] = 113170, - [SMALL_STATE(2361)] = 113184, - [SMALL_STATE(2362)] = 113198, - [SMALL_STATE(2363)] = 113212, - [SMALL_STATE(2364)] = 113226, - [SMALL_STATE(2365)] = 113240, - [SMALL_STATE(2366)] = 113254, - [SMALL_STATE(2367)] = 113268, - [SMALL_STATE(2368)] = 113282, - [SMALL_STATE(2369)] = 113296, - [SMALL_STATE(2370)] = 113310, - [SMALL_STATE(2371)] = 113324, - [SMALL_STATE(2372)] = 113336, - [SMALL_STATE(2373)] = 113346, - [SMALL_STATE(2374)] = 113360, - [SMALL_STATE(2375)] = 113372, - [SMALL_STATE(2376)] = 113386, - [SMALL_STATE(2377)] = 113400, - [SMALL_STATE(2378)] = 113412, - [SMALL_STATE(2379)] = 113426, - [SMALL_STATE(2380)] = 113436, - [SMALL_STATE(2381)] = 113450, - [SMALL_STATE(2382)] = 113464, - [SMALL_STATE(2383)] = 113478, - [SMALL_STATE(2384)] = 113492, - [SMALL_STATE(2385)] = 113506, - [SMALL_STATE(2386)] = 113520, - [SMALL_STATE(2387)] = 113530, - [SMALL_STATE(2388)] = 113544, - [SMALL_STATE(2389)] = 113558, - [SMALL_STATE(2390)] = 113572, - [SMALL_STATE(2391)] = 113586, - [SMALL_STATE(2392)] = 113600, - [SMALL_STATE(2393)] = 113612, - [SMALL_STATE(2394)] = 113622, - [SMALL_STATE(2395)] = 113636, - [SMALL_STATE(2396)] = 113650, - [SMALL_STATE(2397)] = 113662, - [SMALL_STATE(2398)] = 113676, - [SMALL_STATE(2399)] = 113690, - [SMALL_STATE(2400)] = 113704, - [SMALL_STATE(2401)] = 113718, - [SMALL_STATE(2402)] = 113730, - [SMALL_STATE(2403)] = 113744, - [SMALL_STATE(2404)] = 113758, - [SMALL_STATE(2405)] = 113772, - [SMALL_STATE(2406)] = 113786, - [SMALL_STATE(2407)] = 113800, - [SMALL_STATE(2408)] = 113814, - [SMALL_STATE(2409)] = 113828, - [SMALL_STATE(2410)] = 113842, - [SMALL_STATE(2411)] = 113856, - [SMALL_STATE(2412)] = 113870, - [SMALL_STATE(2413)] = 113882, - [SMALL_STATE(2414)] = 113896, - [SMALL_STATE(2415)] = 113910, - [SMALL_STATE(2416)] = 113924, - [SMALL_STATE(2417)] = 113938, - [SMALL_STATE(2418)] = 113952, - [SMALL_STATE(2419)] = 113966, - [SMALL_STATE(2420)] = 113980, - [SMALL_STATE(2421)] = 113994, - [SMALL_STATE(2422)] = 114008, - [SMALL_STATE(2423)] = 114020, - [SMALL_STATE(2424)] = 114034, - [SMALL_STATE(2425)] = 114048, - [SMALL_STATE(2426)] = 114062, - [SMALL_STATE(2427)] = 114076, - [SMALL_STATE(2428)] = 114090, - [SMALL_STATE(2429)] = 114104, - [SMALL_STATE(2430)] = 114114, - [SMALL_STATE(2431)] = 114128, - [SMALL_STATE(2432)] = 114142, - [SMALL_STATE(2433)] = 114156, - [SMALL_STATE(2434)] = 114170, - [SMALL_STATE(2435)] = 114184, - [SMALL_STATE(2436)] = 114198, - [SMALL_STATE(2437)] = 114212, - [SMALL_STATE(2438)] = 114226, - [SMALL_STATE(2439)] = 114240, - [SMALL_STATE(2440)] = 114254, - [SMALL_STATE(2441)] = 114268, - [SMALL_STATE(2442)] = 114282, - [SMALL_STATE(2443)] = 114296, - [SMALL_STATE(2444)] = 114310, - [SMALL_STATE(2445)] = 114324, - [SMALL_STATE(2446)] = 114338, - [SMALL_STATE(2447)] = 114352, - [SMALL_STATE(2448)] = 114366, - [SMALL_STATE(2449)] = 114380, - [SMALL_STATE(2450)] = 114394, - [SMALL_STATE(2451)] = 114408, - [SMALL_STATE(2452)] = 114422, - [SMALL_STATE(2453)] = 114434, - [SMALL_STATE(2454)] = 114448, - [SMALL_STATE(2455)] = 114462, - [SMALL_STATE(2456)] = 114476, - [SMALL_STATE(2457)] = 114490, - [SMALL_STATE(2458)] = 114504, - [SMALL_STATE(2459)] = 114518, - [SMALL_STATE(2460)] = 114532, - [SMALL_STATE(2461)] = 114546, - [SMALL_STATE(2462)] = 114560, - [SMALL_STATE(2463)] = 114574, - [SMALL_STATE(2464)] = 114588, - [SMALL_STATE(2465)] = 114602, - [SMALL_STATE(2466)] = 114616, - [SMALL_STATE(2467)] = 114630, - [SMALL_STATE(2468)] = 114644, - [SMALL_STATE(2469)] = 114658, - [SMALL_STATE(2470)] = 114672, - [SMALL_STATE(2471)] = 114686, - [SMALL_STATE(2472)] = 114700, - [SMALL_STATE(2473)] = 114714, - [SMALL_STATE(2474)] = 114728, - [SMALL_STATE(2475)] = 114742, - [SMALL_STATE(2476)] = 114756, - [SMALL_STATE(2477)] = 114770, - [SMALL_STATE(2478)] = 114784, - [SMALL_STATE(2479)] = 114798, - [SMALL_STATE(2480)] = 114812, - [SMALL_STATE(2481)] = 114826, - [SMALL_STATE(2482)] = 114840, - [SMALL_STATE(2483)] = 114852, - [SMALL_STATE(2484)] = 114866, - [SMALL_STATE(2485)] = 114880, - [SMALL_STATE(2486)] = 114894, - [SMALL_STATE(2487)] = 114908, - [SMALL_STATE(2488)] = 114922, - [SMALL_STATE(2489)] = 114936, - [SMALL_STATE(2490)] = 114950, - [SMALL_STATE(2491)] = 114964, - [SMALL_STATE(2492)] = 114978, + [SMALL_STATE(2322)] = 112660, + [SMALL_STATE(2323)] = 112674, + [SMALL_STATE(2324)] = 112688, + [SMALL_STATE(2325)] = 112702, + [SMALL_STATE(2326)] = 112716, + [SMALL_STATE(2327)] = 112730, + [SMALL_STATE(2328)] = 112744, + [SMALL_STATE(2329)] = 112758, + [SMALL_STATE(2330)] = 112772, + [SMALL_STATE(2331)] = 112786, + [SMALL_STATE(2332)] = 112800, + [SMALL_STATE(2333)] = 112814, + [SMALL_STATE(2334)] = 112828, + [SMALL_STATE(2335)] = 112842, + [SMALL_STATE(2336)] = 112856, + [SMALL_STATE(2337)] = 112870, + [SMALL_STATE(2338)] = 112884, + [SMALL_STATE(2339)] = 112898, + [SMALL_STATE(2340)] = 112908, + [SMALL_STATE(2341)] = 112922, + [SMALL_STATE(2342)] = 112936, + [SMALL_STATE(2343)] = 112950, + [SMALL_STATE(2344)] = 112964, + [SMALL_STATE(2345)] = 112978, + [SMALL_STATE(2346)] = 112992, + [SMALL_STATE(2347)] = 113006, + [SMALL_STATE(2348)] = 113020, + [SMALL_STATE(2349)] = 113034, + [SMALL_STATE(2350)] = 113044, + [SMALL_STATE(2351)] = 113058, + [SMALL_STATE(2352)] = 113068, + [SMALL_STATE(2353)] = 113082, + [SMALL_STATE(2354)] = 113096, + [SMALL_STATE(2355)] = 113110, + [SMALL_STATE(2356)] = 113124, + [SMALL_STATE(2357)] = 113138, + [SMALL_STATE(2358)] = 113152, + [SMALL_STATE(2359)] = 113166, + [SMALL_STATE(2360)] = 113178, + [SMALL_STATE(2361)] = 113192, + [SMALL_STATE(2362)] = 113206, + [SMALL_STATE(2363)] = 113220, + [SMALL_STATE(2364)] = 113234, + [SMALL_STATE(2365)] = 113248, + [SMALL_STATE(2366)] = 113262, + [SMALL_STATE(2367)] = 113276, + [SMALL_STATE(2368)] = 113286, + [SMALL_STATE(2369)] = 113300, + [SMALL_STATE(2370)] = 113314, + [SMALL_STATE(2371)] = 113328, + [SMALL_STATE(2372)] = 113340, + [SMALL_STATE(2373)] = 113354, + [SMALL_STATE(2374)] = 113368, + [SMALL_STATE(2375)] = 113382, + [SMALL_STATE(2376)] = 113396, + [SMALL_STATE(2377)] = 113410, + [SMALL_STATE(2378)] = 113424, + [SMALL_STATE(2379)] = 113438, + [SMALL_STATE(2380)] = 113452, + [SMALL_STATE(2381)] = 113466, + [SMALL_STATE(2382)] = 113480, + [SMALL_STATE(2383)] = 113494, + [SMALL_STATE(2384)] = 113508, + [SMALL_STATE(2385)] = 113522, + [SMALL_STATE(2386)] = 113534, + [SMALL_STATE(2387)] = 113548, + [SMALL_STATE(2388)] = 113562, + [SMALL_STATE(2389)] = 113576, + [SMALL_STATE(2390)] = 113590, + [SMALL_STATE(2391)] = 113604, + [SMALL_STATE(2392)] = 113618, + [SMALL_STATE(2393)] = 113632, + [SMALL_STATE(2394)] = 113646, + [SMALL_STATE(2395)] = 113660, + [SMALL_STATE(2396)] = 113674, + [SMALL_STATE(2397)] = 113686, + [SMALL_STATE(2398)] = 113700, + [SMALL_STATE(2399)] = 113714, + [SMALL_STATE(2400)] = 113728, + [SMALL_STATE(2401)] = 113742, + [SMALL_STATE(2402)] = 113756, + [SMALL_STATE(2403)] = 113770, + [SMALL_STATE(2404)] = 113784, + [SMALL_STATE(2405)] = 113798, + [SMALL_STATE(2406)] = 113808, + [SMALL_STATE(2407)] = 113822, + [SMALL_STATE(2408)] = 113836, + [SMALL_STATE(2409)] = 113850, + [SMALL_STATE(2410)] = 113864, + [SMALL_STATE(2411)] = 113878, + [SMALL_STATE(2412)] = 113890, + [SMALL_STATE(2413)] = 113902, + [SMALL_STATE(2414)] = 113916, + [SMALL_STATE(2415)] = 113930, + [SMALL_STATE(2416)] = 113944, + [SMALL_STATE(2417)] = 113958, + [SMALL_STATE(2418)] = 113970, + [SMALL_STATE(2419)] = 113984, + [SMALL_STATE(2420)] = 113998, + [SMALL_STATE(2421)] = 114012, + [SMALL_STATE(2422)] = 114026, + [SMALL_STATE(2423)] = 114040, + [SMALL_STATE(2424)] = 114054, + [SMALL_STATE(2425)] = 114068, + [SMALL_STATE(2426)] = 114082, + [SMALL_STATE(2427)] = 114094, + [SMALL_STATE(2428)] = 114108, + [SMALL_STATE(2429)] = 114122, + [SMALL_STATE(2430)] = 114136, + [SMALL_STATE(2431)] = 114150, + [SMALL_STATE(2432)] = 114164, + [SMALL_STATE(2433)] = 114174, + [SMALL_STATE(2434)] = 114188, + [SMALL_STATE(2435)] = 114202, + [SMALL_STATE(2436)] = 114216, + [SMALL_STATE(2437)] = 114230, + [SMALL_STATE(2438)] = 114244, + [SMALL_STATE(2439)] = 114258, + [SMALL_STATE(2440)] = 114272, + [SMALL_STATE(2441)] = 114286, + [SMALL_STATE(2442)] = 114300, + [SMALL_STATE(2443)] = 114314, + [SMALL_STATE(2444)] = 114328, + [SMALL_STATE(2445)] = 114340, + [SMALL_STATE(2446)] = 114350, + [SMALL_STATE(2447)] = 114364, + [SMALL_STATE(2448)] = 114378, + [SMALL_STATE(2449)] = 114392, + [SMALL_STATE(2450)] = 114406, + [SMALL_STATE(2451)] = 114420, + [SMALL_STATE(2452)] = 114434, + [SMALL_STATE(2453)] = 114448, + [SMALL_STATE(2454)] = 114462, + [SMALL_STATE(2455)] = 114476, + [SMALL_STATE(2456)] = 114490, + [SMALL_STATE(2457)] = 114504, + [SMALL_STATE(2458)] = 114518, + [SMALL_STATE(2459)] = 114530, + [SMALL_STATE(2460)] = 114544, + [SMALL_STATE(2461)] = 114558, + [SMALL_STATE(2462)] = 114572, + [SMALL_STATE(2463)] = 114586, + [SMALL_STATE(2464)] = 114600, + [SMALL_STATE(2465)] = 114614, + [SMALL_STATE(2466)] = 114628, + [SMALL_STATE(2467)] = 114642, + [SMALL_STATE(2468)] = 114656, + [SMALL_STATE(2469)] = 114670, + [SMALL_STATE(2470)] = 114684, + [SMALL_STATE(2471)] = 114698, + [SMALL_STATE(2472)] = 114712, + [SMALL_STATE(2473)] = 114726, + [SMALL_STATE(2474)] = 114740, + [SMALL_STATE(2475)] = 114754, + [SMALL_STATE(2476)] = 114768, + [SMALL_STATE(2477)] = 114780, + [SMALL_STATE(2478)] = 114794, + [SMALL_STATE(2479)] = 114808, + [SMALL_STATE(2480)] = 114822, + [SMALL_STATE(2481)] = 114836, + [SMALL_STATE(2482)] = 114850, + [SMALL_STATE(2483)] = 114864, + [SMALL_STATE(2484)] = 114878, + [SMALL_STATE(2485)] = 114892, + [SMALL_STATE(2486)] = 114906, + [SMALL_STATE(2487)] = 114920, + [SMALL_STATE(2488)] = 114932, + [SMALL_STATE(2489)] = 114944, + [SMALL_STATE(2490)] = 114956, + [SMALL_STATE(2491)] = 114968, + [SMALL_STATE(2492)] = 114980, [SMALL_STATE(2493)] = 114992, [SMALL_STATE(2494)] = 115006, [SMALL_STATE(2495)] = 115020, @@ -126547,104 +126547,104 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2497)] = 115048, [SMALL_STATE(2498)] = 115062, [SMALL_STATE(2499)] = 115076, - [SMALL_STATE(2500)] = 115085, - [SMALL_STATE(2501)] = 115094, - [SMALL_STATE(2502)] = 115103, - [SMALL_STATE(2503)] = 115112, - [SMALL_STATE(2504)] = 115121, - [SMALL_STATE(2505)] = 115130, - [SMALL_STATE(2506)] = 115139, - [SMALL_STATE(2507)] = 115148, - [SMALL_STATE(2508)] = 115159, - [SMALL_STATE(2509)] = 115168, - [SMALL_STATE(2510)] = 115179, - [SMALL_STATE(2511)] = 115188, - [SMALL_STATE(2512)] = 115197, - [SMALL_STATE(2513)] = 115206, - [SMALL_STATE(2514)] = 115215, - [SMALL_STATE(2515)] = 115224, - [SMALL_STATE(2516)] = 115233, - [SMALL_STATE(2517)] = 115242, - [SMALL_STATE(2518)] = 115251, - [SMALL_STATE(2519)] = 115262, - [SMALL_STATE(2520)] = 115271, - [SMALL_STATE(2521)] = 115280, - [SMALL_STATE(2522)] = 115289, - [SMALL_STATE(2523)] = 115298, - [SMALL_STATE(2524)] = 115307, - [SMALL_STATE(2525)] = 115316, - [SMALL_STATE(2526)] = 115325, - [SMALL_STATE(2527)] = 115336, - [SMALL_STATE(2528)] = 115347, - [SMALL_STATE(2529)] = 115356, - [SMALL_STATE(2530)] = 115365, - [SMALL_STATE(2531)] = 115374, - [SMALL_STATE(2532)] = 115385, - [SMALL_STATE(2533)] = 115394, - [SMALL_STATE(2534)] = 115405, - [SMALL_STATE(2535)] = 115414, - [SMALL_STATE(2536)] = 115423, - [SMALL_STATE(2537)] = 115432, - [SMALL_STATE(2538)] = 115443, + [SMALL_STATE(2500)] = 115087, + [SMALL_STATE(2501)] = 115098, + [SMALL_STATE(2502)] = 115109, + [SMALL_STATE(2503)] = 115118, + [SMALL_STATE(2504)] = 115127, + [SMALL_STATE(2505)] = 115138, + [SMALL_STATE(2506)] = 115147, + [SMALL_STATE(2507)] = 115156, + [SMALL_STATE(2508)] = 115165, + [SMALL_STATE(2509)] = 115174, + [SMALL_STATE(2510)] = 115183, + [SMALL_STATE(2511)] = 115194, + [SMALL_STATE(2512)] = 115203, + [SMALL_STATE(2513)] = 115214, + [SMALL_STATE(2514)] = 115223, + [SMALL_STATE(2515)] = 115232, + [SMALL_STATE(2516)] = 115241, + [SMALL_STATE(2517)] = 115250, + [SMALL_STATE(2518)] = 115259, + [SMALL_STATE(2519)] = 115268, + [SMALL_STATE(2520)] = 115277, + [SMALL_STATE(2521)] = 115288, + [SMALL_STATE(2522)] = 115297, + [SMALL_STATE(2523)] = 115308, + [SMALL_STATE(2524)] = 115317, + [SMALL_STATE(2525)] = 115326, + [SMALL_STATE(2526)] = 115335, + [SMALL_STATE(2527)] = 115344, + [SMALL_STATE(2528)] = 115353, + [SMALL_STATE(2529)] = 115362, + [SMALL_STATE(2530)] = 115371, + [SMALL_STATE(2531)] = 115380, + [SMALL_STATE(2532)] = 115389, + [SMALL_STATE(2533)] = 115398, + [SMALL_STATE(2534)] = 115407, + [SMALL_STATE(2535)] = 115416, + [SMALL_STATE(2536)] = 115425, + [SMALL_STATE(2537)] = 115436, + [SMALL_STATE(2538)] = 115445, [SMALL_STATE(2539)] = 115454, [SMALL_STATE(2540)] = 115465, - [SMALL_STATE(2541)] = 115476, - [SMALL_STATE(2542)] = 115487, - [SMALL_STATE(2543)] = 115498, - [SMALL_STATE(2544)] = 115509, - [SMALL_STATE(2545)] = 115518, - [SMALL_STATE(2546)] = 115529, - [SMALL_STATE(2547)] = 115538, - [SMALL_STATE(2548)] = 115549, - [SMALL_STATE(2549)] = 115558, - [SMALL_STATE(2550)] = 115567, - [SMALL_STATE(2551)] = 115576, - [SMALL_STATE(2552)] = 115587, - [SMALL_STATE(2553)] = 115598, - [SMALL_STATE(2554)] = 115607, - [SMALL_STATE(2555)] = 115616, - [SMALL_STATE(2556)] = 115625, - [SMALL_STATE(2557)] = 115634, - [SMALL_STATE(2558)] = 115643, - [SMALL_STATE(2559)] = 115652, - [SMALL_STATE(2560)] = 115661, - [SMALL_STATE(2561)] = 115670, - [SMALL_STATE(2562)] = 115679, - [SMALL_STATE(2563)] = 115688, - [SMALL_STATE(2564)] = 115697, - [SMALL_STATE(2565)] = 115706, + [SMALL_STATE(2541)] = 115474, + [SMALL_STATE(2542)] = 115483, + [SMALL_STATE(2543)] = 115492, + [SMALL_STATE(2544)] = 115501, + [SMALL_STATE(2545)] = 115512, + [SMALL_STATE(2546)] = 115521, + [SMALL_STATE(2547)] = 115532, + [SMALL_STATE(2548)] = 115541, + [SMALL_STATE(2549)] = 115550, + [SMALL_STATE(2550)] = 115559, + [SMALL_STATE(2551)] = 115570, + [SMALL_STATE(2552)] = 115581, + [SMALL_STATE(2553)] = 115590, + [SMALL_STATE(2554)] = 115599, + [SMALL_STATE(2555)] = 115608, + [SMALL_STATE(2556)] = 115617, + [SMALL_STATE(2557)] = 115626, + [SMALL_STATE(2558)] = 115635, + [SMALL_STATE(2559)] = 115644, + [SMALL_STATE(2560)] = 115653, + [SMALL_STATE(2561)] = 115662, + [SMALL_STATE(2562)] = 115673, + [SMALL_STATE(2563)] = 115682, + [SMALL_STATE(2564)] = 115693, + [SMALL_STATE(2565)] = 115704, [SMALL_STATE(2566)] = 115715, [SMALL_STATE(2567)] = 115724, - [SMALL_STATE(2568)] = 115733, - [SMALL_STATE(2569)] = 115744, - [SMALL_STATE(2570)] = 115753, - [SMALL_STATE(2571)] = 115762, - [SMALL_STATE(2572)] = 115771, + [SMALL_STATE(2568)] = 115735, + [SMALL_STATE(2569)] = 115746, + [SMALL_STATE(2570)] = 115755, + [SMALL_STATE(2571)] = 115764, + [SMALL_STATE(2572)] = 115773, [SMALL_STATE(2573)] = 115782, [SMALL_STATE(2574)] = 115791, [SMALL_STATE(2575)] = 115800, [SMALL_STATE(2576)] = 115809, [SMALL_STATE(2577)] = 115818, - [SMALL_STATE(2578)] = 115829, - [SMALL_STATE(2579)] = 115838, - [SMALL_STATE(2580)] = 115847, - [SMALL_STATE(2581)] = 115856, - [SMALL_STATE(2582)] = 115867, - [SMALL_STATE(2583)] = 115876, - [SMALL_STATE(2584)] = 115885, - [SMALL_STATE(2585)] = 115894, - [SMALL_STATE(2586)] = 115903, - [SMALL_STATE(2587)] = 115912, - [SMALL_STATE(2588)] = 115921, - [SMALL_STATE(2589)] = 115930, - [SMALL_STATE(2590)] = 115941, - [SMALL_STATE(2591)] = 115950, - [SMALL_STATE(2592)] = 115961, - [SMALL_STATE(2593)] = 115972, - [SMALL_STATE(2594)] = 115981, - [SMALL_STATE(2595)] = 115990, - [SMALL_STATE(2596)] = 115999, - [SMALL_STATE(2597)] = 116008, + [SMALL_STATE(2578)] = 115827, + [SMALL_STATE(2579)] = 115836, + [SMALL_STATE(2580)] = 115845, + [SMALL_STATE(2581)] = 115854, + [SMALL_STATE(2582)] = 115863, + [SMALL_STATE(2583)] = 115872, + [SMALL_STATE(2584)] = 115881, + [SMALL_STATE(2585)] = 115890, + [SMALL_STATE(2586)] = 115899, + [SMALL_STATE(2587)] = 115908, + [SMALL_STATE(2588)] = 115917, + [SMALL_STATE(2589)] = 115928, + [SMALL_STATE(2590)] = 115937, + [SMALL_STATE(2591)] = 115948, + [SMALL_STATE(2592)] = 115959, + [SMALL_STATE(2593)] = 115968, + [SMALL_STATE(2594)] = 115977, + [SMALL_STATE(2595)] = 115988, + [SMALL_STATE(2596)] = 115997, + [SMALL_STATE(2597)] = 116006, [SMALL_STATE(2598)] = 116017, [SMALL_STATE(2599)] = 116026, [SMALL_STATE(2600)] = 116035, @@ -126850,2431 +126850,2431 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(624), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2121), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(496), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(392), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2500), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2708), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(947), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(943), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2743), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(297), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(888), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(592), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2630), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(910), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(550), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(290), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(887), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(291), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(606), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(321), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(908), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(936), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(528), [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(949), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(920), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 77), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 108), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 61), [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 61), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(593), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(598), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(492), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(600), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(557), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(608), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 48), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 48), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 70), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 70), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 48), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 48), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 70), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 70), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 104), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 127), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 127), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 127), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 52), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 61), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 61), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 55), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 55), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 61), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 61), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 61), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 61), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 113), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 113), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 124), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 124), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 125), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 125), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 126), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 126), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 133), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 133), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 58), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 58), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 61), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 61), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 105), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 105), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 107), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 107), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 63), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 63), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 53), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 53), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 44), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 44), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 56), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 56), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 59), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 59), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 64), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 64), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(948), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2719), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(948), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(955), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(955), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(877), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(877), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(905), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(921), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2651), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(901), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(928), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(860), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(941), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(940), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(921), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(898), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(961), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(861), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(961), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(873), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(861), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(889), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(513), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(347), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 47), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(569), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(346), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(539), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(548), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(509), - [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(487), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(559), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(504), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2455), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(491), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1527), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2329), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(505), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1548), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(426), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(509), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(500), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(492), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(517), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 45), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(482), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(578), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 69), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 108), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 77), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 68), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 72), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 72), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 50), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 50), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 46), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 109), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 47), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 109), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 118), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 118), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(556), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2290), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1527), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(554), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 45), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), SHIFT_REPEAT(410), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 71), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2493), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), SHIFT_REPEAT(1548), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 49), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(369), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 129), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 130), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 131), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 75), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 76), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 134), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 135), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 110), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 136), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 137), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 109), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 121), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 122), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 67), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 52), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4967] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/a.txt b/test/corpus/a.txt new file mode 100644 index 00000000..ff43ee5b --- /dev/null +++ b/test/corpus/a.txt @@ -0,0 +1,10 @@ +========== +foo +:error +========== + +print("hello") + +--- + + diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt index f357c276..d0bf103c 100644 --- a/test/corpus/errors.txt +++ b/test/corpus/errors.txt @@ -1,5 +1,6 @@ ==================================== An error before a string literal +:error ==================================== def a(b): diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index ce5f7208..452233b3 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -986,6 +986,7 @@ Simple Tuples ================================================================================ Generator expression +:error ================================================================================ (a[b][c] for a, b, c in items) diff --git a/types/dsl.d.ts b/types/dsl.d.ts deleted file mode 100644 index 63f9ed49..00000000 --- a/types/dsl.d.ts +++ /dev/null @@ -1,379 +0,0 @@ -type AliasRule = { type: 'ALIAS'; named: boolean; content: Rule; value: string }; -type BlankRule = { type: 'BLANK' }; -type ChoiceRule = { type: 'CHOICE'; members: Rule[] }; -type FieldRule = { type: 'FIELD'; name: string; content: Rule }; -type ImmediateTokenRule = { type: 'IMMEDIATE_TOKEN'; content: Rule }; -type PatternRule = { type: 'PATTERN'; value: string }; -type PrecDynamicRule = { type: 'PREC_DYNAMIC'; content: Rule; value: number }; -type PrecLeftRule = { type: 'PREC_LEFT'; content: Rule; value: number }; -type PrecRightRule = { type: 'PREC_RIGHT'; content: Rule; value: number }; -type PrecRule = { type: 'PREC'; content: Rule; value: number }; -type Repeat1Rule = { type: 'REPEAT1'; content: Rule }; -type RepeatRule = { type: 'REPEAT'; content: Rule }; -type SeqRule = { type: 'SEQ'; members: Rule[] }; -type StringRule = { type: 'STRING'; value: string }; -type SymbolRule = { type: 'SYMBOL'; name: Name }; -type TokenRule = { type: 'TOKEN'; content: Rule }; - -type Rule = - | AliasRule - | BlankRule - | ChoiceRule - | FieldRule - | ImmediateTokenRule - | PatternRule - | PrecDynamicRule - | PrecLeftRule - | PrecRightRule - | PrecRule - | Repeat1Rule - | RepeatRule - | SeqRule - | StringRule - | SymbolRule - | TokenRule; - -type RuleOrLiteral = Rule | RegExp | string; - -type GrammarSymbols = { - [name in RuleName]: SymbolRule; -} & - Record>; - -type RuleBuilder = ( - $: GrammarSymbols, - previous: Rule, -) => RuleOrLiteral; - -type RuleBuilders< - RuleName extends string, - BaseGrammarRuleName extends string -> = { - [name in RuleName]: RuleBuilder; - }; - -interface Grammar< - RuleName extends string, - BaseGrammarRuleName extends string = never, - Rules extends RuleBuilders = RuleBuilders< - RuleName, - BaseGrammarRuleName - > -> { - /** - * Name of the grammar language. - */ - name: string; - - /** Mapping of grammar rule names to rule builder functions. */ - rules: Rules; - - /** - * An array of arrays of precedence names or rules. Each inner array represents - * a *descending* ordering. Names/rules listed earlier in one of these arrays - * have higher precedence than any names/rules listed later in the same array. - * - * Using rules is just a shorthand way for using a name then calling prec() - * with that name. It is just a convenience. - */ - precedences?: ( - $: GrammarSymbols, - previous: Rule[][], - ) => RuleOrLiteral[][], - - /** - * An array of arrays of rule names. Each inner array represents a set of - * rules that's involved in an _LR(1) conflict_ that is _intended to exist_ - * in the grammar. When these conflicts occur at runtime, Tree-sitter will - * use the GLR algorithm to explore all of the possible interpretations. If - * _multiple_ parses end up succeeding, Tree-sitter will pick the subtree - * whose corresponding rule has the highest total _dynamic precedence_. - * - * @param $ grammar rules - */ - conflicts?: ( - $: GrammarSymbols, - previous: Rule[][], - ) => RuleOrLiteral[][]; - - /** - * An array of token names which can be returned by an _external scanner_. - * External scanners allow you to write custom C code which runs during the - * lexing process in order to handle lexical rules (e.g. Python's indentation - * tokens) that cannot be described by regular expressions. - * - * @param $ grammar rules - * @param previous array of externals from the base schema, if any - * - * @see https://tree-sitter.github.io/tree-sitter/creating-parsers#external-scanners - */ - externals?: ( - $: Record>, - previous: Rule[], - ) => RuleOrLiteral[]; - - /** - * An array of tokens that may appear anywhere in the language. This - * is often used for whitespace and comments. The default value of - * extras is to accept whitespace. To control whitespace explicitly, - * specify extras: `$ => []` in your grammar. - * - * @param $ grammar rules - */ - extras?: ( - $: GrammarSymbols, - ) => RuleOrLiteral[]; - - /** - * An array of rules that should be automatically removed from the - * grammar by replacing all of their usages with a copy of their definition. - * This is useful for rules that are used in multiple places but for which - * you don't want to create syntax tree nodes at runtime. - * - * @param $ grammar rules - */ - inline?: ( - $: GrammarSymbols, - previous: Rule[], - ) => RuleOrLiteral[]; - - /** - * A list of hidden rule names that should be considered supertypes in the - * generated node types file. - * - * @param $ grammar rules - * - * @see https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types - */ - supertypes?: ( - $: GrammarSymbols, - previous: Rule[], - ) => RuleOrLiteral[]; - - /** - * The name of a token that will match keywords for the purpose of the - * keyword extraction optimization. - * - * @param $ grammar rules - * - * @see https://tree-sitter.github.io/tree-sitter/creating-parsers#keyword-extraction - */ - word?: ($: GrammarSymbols) => RuleOrLiteral; -} - -type GrammarSchema = { - [K in keyof Grammar]: K extends 'rules' - ? Record - : Grammar[K]; -}; - -/** - * Causes the given rule to appear with an alternative name in the syntax tree. - * For instance with `alias($.foo, 'bar')`, the aliased rule will appear as an - * anonymous node, as if the rule had been written as the simple string. - * - * @param rule rule that will be aliased - * @param name target name for the alias - */ -declare function alias(rule: RuleOrLiteral, name: string): AliasRule; - -/** - * Causes the given rule to appear as an alternative named node, for instance - * with `alias($.foo, $.bar)`, the aliased rule `foo` will appear as a named - * node called `bar`. - * - * @param rule rule that will be aliased - * @param symbol target symbol for the alias - */ -declare function alias( - rule: RuleOrLiteral, - symbol: SymbolRule, -): AliasRule; - -/** - * Creates a blank rule, matching nothing. - */ -declare function blank(): BlankRule; - -/** - * Assigns a field name to the child node(s) matched by the given rule. - * In the resulting syntax tree, you can then use that field name to - * access specific children. - * - * @param name name of the field - * @param rule rule the field should match - */ -declare function field(name: string, rule: RuleOrLiteral): FieldRule; - -/** - * Creates a rule that matches one of a set of possible rules. The order - * of the arguments does not matter. This is analogous to the `|` (pipe) - * operator in EBNF notation. - * - * @param options possible rule choices - */ -declare function choice(...options: RuleOrLiteral[]): ChoiceRule; - -/** - * Creates a rule that matches zero or one occurrence of a given rule. - * It is analogous to the `[x]` (square bracket) syntax in EBNF notation. - * - * @param value rule to be made optional - */ -declare function optional(rule: RuleOrLiteral): ChoiceRule; - -/** - * Marks the given rule with a precedence which will be used to resolve LR(1) - * conflicts at parser-generation time. When two rules overlap in a way that - * represents either a true ambiguity or a _local_ ambiguity given one token - * of lookahead, Tree-sitter will try to resolve the conflict by matching the - * rule with the higher precedence. - * - * Precedence values can either be strings or numbers. When comparing rules - * with numerical precedence, higher numbers indicate higher precedences. To - * compare rules with string precedence, Tree-sitter uses the grammar's `precedences` - * field. - * - * rules is zero. This works similarly to the precedence directives in Yacc grammars. - * - * @param value precedence weight - * @param rule rule being weighted - * - * @see https://en.wikipedia.org/wiki/LR_parser#Conflicts_in_the_constructed_tables - * @see https://docs.oracle.com/cd/E19504-01/802-5880/6i9k05dh3/index.html - */ -declare const prec: { - (value: String | number, rule: RuleOrLiteral): PrecRule; - - /** - * Marks the given rule as left-associative (and optionally applies a - * numerical precedence). When an LR(1) conflict arises in which all of the - * rules have the same numerical precedence, Tree-sitter will consult the - * rules' associativity. If there is a left-associative rule, Tree-sitter - * will prefer matching a rule that ends _earlier_. This works similarly to - * associativity directives in Yacc grammars. - * - * @param value (optional) precedence weight - * @param rule rule to mark as left-associative - * - * @see https://docs.oracle.com/cd/E19504-01/802-5880/6i9k05dh3/index.html - */ - left(rule: RuleOrLiteral): PrecLeftRule; - left(value: String | number, rule: RuleOrLiteral): PrecLeftRule; - - /** - * Marks the given rule as right-associative (and optionally applies a - * numerical precedence). When an LR(1) conflict arises in which all of the - * rules have the same numerical precedence, Tree-sitter will consult the - * rules' associativity. If there is a right-associative rule, Tree-sitter - * will prefer matching a rule that ends _later_. This works similarly to - * associativity directives in Yacc grammars. - * - * @param value (optional) precedence weight - * @param rule rule to mark as right-associative - * - * @see https://docs.oracle.com/cd/E19504-01/802-5880/6i9k05dh3/index.html - */ - right(rule: RuleOrLiteral): PrecRightRule; - right(value: String | number, rule: RuleOrLiteral): PrecRightRule; - - /** - * Marks the given rule with a numerical precedence which will be used to - * resolve LR(1) conflicts at _runtime_ instead of parser-generation time. - * This is only necessary when handling a conflict dynamically using the - * `conflicts` field in the grammar, and when there is a genuine _ambiguity_: - * multiple rules correctly match a given piece of code. In that event, - * Tree-sitter compares the total dynamic precedence associated with each - * rule, and selects the one with the highest total. This is similar to - * dynamic precedence directives in Bison grammars. - * - * @param value precedence weight - * @param rule rule being weighted - * - * @see https://www.gnu.org/software/bison/manual/html_node/Generalized-LR-Parsing.html - */ - dynamic(value: String | number, rule: RuleOrLiteral): PrecDynamicRule; -}; - -/** - * Creates a rule that matches _zero-or-more_ occurrences of a given rule. - * It is analogous to the `{x}` (curly brace) syntax in EBNF notation. This - * rule is implemented in terms of `repeat1` but is included because it - * is very commonly used. - * - * @param rule rule to repeat, zero or more times - */ -declare function repeat(rule: RuleOrLiteral): RepeatRule; - -/** - * Creates a rule that matches one-or-more occurrences of a given rule. - * - * @param rule rule to repeat, one or more times - */ -declare function repeat1(rule: RuleOrLiteral): Repeat1Rule; - -/** - * Creates a rule that matches any number of other rules, one after another. - * It is analogous to simply writing multiple symbols next to each other - * in EBNF notation. - * - * @param rules ordered rules that comprise the sequence - */ -declare function seq(...rules: RuleOrLiteral[]): SeqRule; - -/** - * Creates a symbol rule, representing another rule in the grammar by name. - * - * @param name name of the target rule - */ -declare function sym(name: Name): SymbolRule; - -/** - * Marks the given rule as producing only a single token. Tree-sitter's - * default is to treat each String or RegExp literal in the grammar as a - * separate token. Each token is matched separately by the lexer and - * returned as its own leaf node in the tree. The token function allows - * you to express a complex rule using the DSL functions (rather - * than as a single regular expression) but still have Tree-sitter treat - * it as a single token. - * - * @param rule rule to represent as a single token - */ -declare const token: { - (rule: RuleOrLiteral): TokenRule; - - /** - * Marks the given rule as producing an immediate token. This allows - * the parser to produce a different token based on whether or not - * there are `extras` preceding the token's main content. When there - * are _no_ leading `extras`, an immediate token is preferred over a - * normal token which would otherwise match. - * - * @param rule rule to represent as an immediate token - */ - immediate(rule: RuleOrLiteral): ImmediateTokenRule; -}; - -/** - * Creates a new language grammar with the provided schema. - * - * @param options grammar options - */ -declare function grammar( - options: Grammar, -): GrammarSchema; - -/** - * Extends an existing language grammar with the provided options, - * creating a new language. - * - * @param baseGrammar base grammar schema to extend from - * @param options grammar options for the new extended language - */ -declare function grammar< - BaseGrammarRuleName extends string, - RuleName extends string ->( - baseGrammar: GrammarSchema, - options: Grammar, -): GrammarSchema;